Hello Again. I have a Little Question again.
In the MACL 2.1. I see in the Game_BattleAction Class, a method called: "WAIT_USING".
Can somebody explainme: ?wich is the use of this method?
Thanks.:thumb:
In the MACL 2.1. I see in the Game_BattleAction Class, a method called: "WAIT_USING".
Code:
class Game_BattleAction
#-------------------------------------------------------------------------
# * Attack Using
# - Set this to the basic ids that perform an attack effect
#-------------------------------------------------------------------------
ATTACK_USING = [0]
#-------------------------------------------------------------------------
# * Skill Using
# - Set this to the kinds that perform an skill effect
#-------------------------------------------------------------------------
SKILL_USING = [1]
#-------------------------------------------------------------------------
# * Defend Using
# - Set this to the basic ids that perform an defend effect
#-------------------------------------------------------------------------
DEFEND_USING = [1]
#-------------------------------------------------------------------------
# * Item Using
# - Set this to the kinds that perform a item using effect
#-------------------------------------------------------------------------
ITEM_USING = [2]
#-------------------------------------------------------------------------
# * Escape Using
# - Set this to the basic ids that perform an escape effect
#-------------------------------------------------------------------------
ESCAPE_USING = [2]
#-------------------------------------------------------------------------
# * Wait Using
# - Set this to the basic ids that perform a wait effect
#-------------------------------------------------------------------------
[COLOR=Red]WAIT_USING = [3][/COLOR]
end
Can somebody explainme: ?wich is the use of this method?
Thanks.:thumb: