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
   Face Sync System Core DerVVulfman 0 237 04-11-2026, 12:20 AM
Last Post: DerVVulfman
   Zeriab's Anti Lag System Zeriab 3 11,007 02-14-2026, 05:57 AM
Last Post: DerVVulfman
   ATOA CBS Equipment Set Variables Patch kyonides 0 2,634 10-14-2024, 12:47 AM
Last Post: kyonides
   The Wanderers: The Customizable Encounters System DerVVulfman 0 3,463 08-24-2024, 07:12 PM
Last Post: DerVVulfman
   Angie's Equipment Sets DerVVulfman 3 14,050 08-04-2024, 01:44 AM
Last Post: DerVVulfman
   Super Simple Vehicle System - Enhanced DerVVulfman 65 147,558 06-02-2023, 06:16 PM
Last Post: Sujabes467
   Zenith Tactical Battle System Plus (ZTBS+) DerVVulfman 0 6,519 05-10-2022, 10:42 PM
Last Post: DerVVulfman
   The Charlie Mini-Map / Dynamic Maps Patch DerVVulfman 2 9,620 03-29-2022, 11:55 PM
Last Post: DerVVulfman
   Charlie's Mini-Map Extended DerVVulfman 16 30,686 09-02-2020, 03:49 AM
Last Post: DerVVulfman
   Commercial System Package DerVVulfman 11 25,981 01-04-2020, 12:37 AM
Last Post: Pelip



Users browsing this thread: 1 Guest(s)