"My"
"Cubid - helping to make the script"
Helping
he made this script ! and it's Gubid not Cubid .
Well ok , it wasn't on this forum . i have downloaded it , it's the 1.4 version , so the last one .
It has many known bugs . For exemple the "TEAM" option doesn't work well . Use only the ATB "active base mode" .
One more thing : after you have finished a battle , you are unable to save (a big error) .
Here is the fix for that :
in "Game_system" of the GTBS part , add this method :
# dricc : new method to reset tables at the end
def end_battle
@tactics_actors = []
@tactics_enemies = []
@tactics_neutral = []
@tactics_dead = []
@battle_events = {}
@acted = []
end
in "Scene_Battle_TBS" , search this :
def tbs_phase_8
case @result_phase
when 0..10
@result_phase += 1
when 11
show_congrat
@result_phase += 1
# add Dricc : reset tables
$game_system.end_battle
when 12
show_gold_gain
@result_phase += 1
when 13
show_item_gain
@result_phase += 1
when 14
exit_battle
end
end
and add the lines in bold .
It is very important to know that this script can generate a lot of incompatibility problems .