try to help you with characters or something
reply please
buy have a super day
here is the script
CODE
#======================================================================
========
# RPG Tankentai + KGC_EnemyGuide Patch
# Author: RisingPhoenix
#==============================================================================
# Modifies the perform_collpase method so that KGC's modified function
# works properly
#==============================================================================
# Place it above KGC_EnemyGuide but below the RPG Tankentai Battle system
#==============================================================================
# ■ Game_Enemy
#------------------------------------------------------------------------------
# 敵キャラを扱うクラスです。このクラスは Game_Troop クラス ($game_troop) の
# 内部で使用されます。
#==============================================================================
class Game_Enemy < Game_Battler
#--------------------------------------------------------------------------
# ● コラプスの実行
#--------------------------------------------------------------------------
alias rfenix_rpg_battle_fix_perform_collapse perform_collapse
def perform_collapse
rfenix_rpg_battle_fix_perform_collapse
@collapse = true if $game_temp.in_battle and dead?
end
end
========
# RPG Tankentai + KGC_EnemyGuide Patch
# Author: RisingPhoenix
#==============================================================================
# Modifies the perform_collpase method so that KGC's modified function
# works properly
#==============================================================================
# Place it above KGC_EnemyGuide but below the RPG Tankentai Battle system
#==============================================================================
# ■ Game_Enemy
#------------------------------------------------------------------------------
# 敵キャラを扱うクラスです。このクラスは Game_Troop クラス ($game_troop) の
# 内部で使用されます。
#==============================================================================
class Game_Enemy < Game_Battler
#--------------------------------------------------------------------------
# ● コラプスの実行
#--------------------------------------------------------------------------
alias rfenix_rpg_battle_fix_perform_collapse perform_collapse
def perform_collapse
rfenix_rpg_battle_fix_perform_collapse
@collapse = true if $game_temp.in_battle and dead?
end
end
