I have an error when using Trickster's Bag of Battle Commands script when combining it with Minkoff's animated battlers. When in battle I randomly see this error: Script ' Animated Battlers Battle' line 287: No method error occured undefined method '[]=' for nil:NilClass
The scripts I have are: Active time battle, Minkoff's animated battlers, Trickster's ABC script, and a limit break script. Everything was working fine, I edited my commands with Trickster's ABC script, but once I add the bag of skills, specifically the Blitz command, the battle system goes haywire. Is it a compatability issue?
It points to this line in the script:# Trickster's AT Detection
if $t_abs_detect
for actor in $game_party.actors
actor.at_multiplier= 1.0
end
for enemy in $game_troop.enemies
enemy.at_multiplier= 1.0
end
end
# Cogwheel RTAB Detection
if $rtab_detected
@rtab_wait_flag = false
end
end
# Done
@moved[battler] = false #this line
@rtab ? mnk_update_phase4_step3(battler) : mnk_update_phase4_step3
The scripts I have are: Active time battle, Minkoff's animated battlers, Trickster's ABC script, and a limit break script. Everything was working fine, I edited my commands with Trickster's ABC script, but once I add the bag of skills, specifically the Blitz command, the battle system goes haywire. Is it a compatability issue?