Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
 Equipment Upgrade System by Charlie Fleed, Version 1.2
#31
ARRRRRG!!!
I passed all the day changing things and testing and finally... only got errors XD
for that a try other thing, i add a new array to the anim battlers:

XL_STATIONARY_HEROES = []
this array contains the ID of the character in the database, not weapons, because in my game an 'archer' always be an 'archer' for that i don't need the weapons ID.

after that i add this line on anim battlers:
Code:
XL_STATIONARY_HEROES.include?(@battler.id)
after the line 503
Code:
MNK_STATIONARY_ITEMS.include?(@item_used) or
of sprite system.

finally i change some lines in your CTB:

CTB by Charlie - Scene_Battle line 1337:
Code:
unless MNK_STATIONARY_WEAPONS.include?(@active_battler.weapon_id)
for this
Code:
unless XL_STATIONARY_HEROES.include?(@active_battler.id)

CTB by Charlie - Game_Battler line 68:
Code:
if MNK_STATIONARY_WEAPONS.include?(attacker.weapon_id)
for this
Code:
if XL_STATIONARY_HEROES.include?(attacker.id)

CTB by Charlie - Reaction, Altruismo,etc line 16:
Code:
unless MNK_STATIONARY_WEAPONS.include?(self.weapon_id)
for this
Code:
unless XL_STATIONARY_HEROES.include?(self.id)

for now in tests it works fine, but i want to know your opinion as scripter, Have I done all things well? or I forgot something? Is it possible that this changes give me an error in the future?
What do you think as scripter and as CTB creator? :D
Reply }


Messages In This Thread
Customizable (Enhanced) Equipment by Charlie Fleed, Version 1.0 - by ElMaligno - 05-14-2009, 04:13 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
   Super Simple Vehicle System - Enhanced DerVVulfman 65 83,009 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,025 05-10-2022, 10:42 PM
Last Post: DerVVulfman
   The Charlie Mini-Map / Dynamic Maps Patch DerVVulfman 2 4,031 03-29-2022, 11:55 PM
Last Post: DerVVulfman
   Charlie's Mini-Map Extended DerVVulfman 16 12,710 09-02-2020, 03:49 AM
Last Post: DerVVulfman
   Commercial System Package DerVVulfman 11 12,063 01-04-2020, 12:37 AM
Last Post: Pelip
   KItemDesc XP & VX Zilsel Version kyonides 4 6,535 12-01-2019, 06:11 AM
Last Post: kyonides
   ACBS - Atoa Custom Battle System 3.2 Victor Sant 150 224,548 03-02-2019, 04:47 AM
Last Post: dragonprincess44
   DerVV's Simple Popup System DerVVulfman 4 10,952 10-08-2017, 04:53 PM
Last Post: DerVVulfman
   H-Mode7 Visual Equipment Chaotech Games 8 34,791 03-30-2017, 01:58 AM
Last Post: wrathx



Users browsing this thread: