Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
 Equipment Upgrade System by Charlie Fleed, Version 1.2
#64
Elements and State characteristics of the enhancements in the slots get added to the ones of the equipment. If that doesn't happen, there is something not working, or the tag-elements are causing it.
Use the following snippet of code to avoid that elements used as tags are included in the elemental damage correction.

Code:
class Game_Battler
  ELEMENTS_TO_IGNORE=[]
  #----------------------------------------------------------------------------
  # * Calculating Element Correction
  #     element_set : element
  #----------------------------------------------------------------------------
  alias ee_elements_correct elements_correct
  def elements_correct(element_set)
    return ee_elements_correct(element_set-ELEMENTS_TO_IGNORE)
  end
end

where ELEMENTS_TO_IGNORE contains the ids of all the elements used as tags. In the demo they would be all those from 17 to 29.
Reply }


Messages In This Thread
Customizable (Enhanced) Equipment by Charlie Fleed, Version 1.0 - by Charlie Fleed - 11-26-2009, 01:41 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
   Super Simple Vehicle System - Enhanced DerVVulfman 65 83,004 06-02-2023, 06:16 PM
Last Post: Sujabes467
   Equipment TP Reset ACE kyonides 0 935 11-01-2022, 10:47 PM
Last Post: kyonides
   Zenith Tactical Battle System Plus (ZTBS+) DerVVulfman 0 2,024 05-10-2022, 10:42 PM
Last Post: DerVVulfman
   The Charlie Mini-Map / Dynamic Maps Patch DerVVulfman 2 4,030 03-29-2022, 11:55 PM
Last Post: DerVVulfman
   Charlie's Mini-Map Extended DerVVulfman 16 12,709 09-02-2020, 03:49 AM
Last Post: DerVVulfman
   Commercial System Package DerVVulfman 11 12,062 01-04-2020, 12:37 AM
Last Post: Pelip
   KItemDesc XP & VX Zilsel Version kyonides 4 6,533 12-01-2019, 06:11 AM
Last Post: kyonides
   ACBS - Atoa Custom Battle System 3.2 Victor Sant 150 224,538 03-02-2019, 04:47 AM
Last Post: dragonprincess44
   DerVV's Simple Popup System DerVVulfman 4 10,949 10-08-2017, 04:53 PM
Last Post: DerVVulfman
   H-Mode7 Visual Equipment Chaotech Games 8 34,789 03-30-2017, 01:58 AM
Last Post: wrathx



Users browsing this thread: