You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some of the formula are not evaluated in the correct context or some of the example TP modes are not doing what they are supposed to do.
For example I want to use the TP Charge Rate "tcr" to scale the TP gains but using "tcr" in the formula does not work as one might think.
:take_hp_dmg : works correctly. "tcr" is the tcr of the character being hit. :deal_hp_dmg : bugged, "tcr" refers to the tcr value of the battler receiving the damage. Use "user.tcr" to use the tcr value of your character doing the damage. :heal_hp_dmg : bugged, "tcr" refers to the tcr value of the battler receiving the healing. Use "user.tcr" to use the tcr value of your character. :ally_hp_dmg : bugged, "tcr" refers to the tcr value of the battler receiving the damage. Use "member.tcr" to use the tcr value of your character. :take_mp_dmg : works correctly. "tcr" is the tcr of the character being hit. :deal_mp_dmg : bugged, "tcr" refers to the tcr value of the battler receiving the damage. Use "user.tcr" to use the tcr value of your character. :heal_mp_dmg : bugged, "tcr" refers to the tcr value of the battler receiving the healing. Use "user.tcr" to use the tcr value of your character. :ally_mp_dmg : bugged, "tcr" refers to the tcr value of the battler receiving the damage. Use "member.tcr" to use the tcr value of your character. :deal_state : bugged, "tcr" refers to the tcr value of the battler receiving the state. Use "user.tcr" to use the tcr value of your character. :gain_state : works correctly. "tcr" is the tcr of the character receiving the state. :kill_ally : bugged, "tcr" refers to the tcr value of the battler being killed. Use "member.tcr" to use the tcr value of your character. :kill_enemy : bugged, "tcr" refers to the tcr value of the battler being killed. Use "user.tcr" to use the tcr value of your character doing the kill. :win_battle : bugged, "tcr" will not be evaluated (crash). Use "member.tcr" to use the tcr value of your character. :flee_battle : bugged, "tcr" will not be evaluated (crash). Use "member.tcr" to use the tcr value of your character. :lose_battle : bugged, not working. Is it implemented? :low_hp_turn : works correctly. "tcr" is the tcr of the character being low hp. :low_mp_turn : works correctly. "tcr" is the tcr of the character being low mp. :only_alive : works correctly. "tcr" is the tcr of the character being alone. :evasion : works correctly. "tcr" is the tcr of the character evading attack.
The text was updated successfully, but these errors were encountered:
In the TP Manager Script v1.04
Some of the formula are not evaluated in the correct context or some of the example TP modes are not doing what they are supposed to do.
For example I want to use the TP Charge Rate "tcr" to scale the TP gains but using "tcr" in the formula does not work as one might think.
:take_hp_dmg : works correctly. "tcr" is the tcr of the character being hit.
:deal_hp_dmg : bugged, "tcr" refers to the tcr value of the battler receiving the damage. Use "user.tcr" to use the tcr value of your character doing the damage.
:heal_hp_dmg : bugged, "tcr" refers to the tcr value of the battler receiving the healing. Use "user.tcr" to use the tcr value of your character.
:ally_hp_dmg : bugged, "tcr" refers to the tcr value of the battler receiving the damage. Use "member.tcr" to use the tcr value of your character.
:take_mp_dmg : works correctly. "tcr" is the tcr of the character being hit.
:deal_mp_dmg : bugged, "tcr" refers to the tcr value of the battler receiving the damage. Use "user.tcr" to use the tcr value of your character.
:heal_mp_dmg : bugged, "tcr" refers to the tcr value of the battler receiving the healing. Use "user.tcr" to use the tcr value of your character.
:ally_mp_dmg : bugged, "tcr" refers to the tcr value of the battler receiving the damage. Use "member.tcr" to use the tcr value of your character.
:deal_state : bugged, "tcr" refers to the tcr value of the battler receiving the state. Use "user.tcr" to use the tcr value of your character.
:gain_state : works correctly. "tcr" is the tcr of the character receiving the state.
:kill_ally : bugged, "tcr" refers to the tcr value of the battler being killed. Use "member.tcr" to use the tcr value of your character.
:kill_enemy : bugged, "tcr" refers to the tcr value of the battler being killed. Use "user.tcr" to use the tcr value of your character doing the kill.
:win_battle : bugged, "tcr" will not be evaluated (crash). Use "member.tcr" to use the tcr value of your character.
:flee_battle : bugged, "tcr" will not be evaluated (crash). Use "member.tcr" to use the tcr value of your character.
:lose_battle : bugged, not working. Is it implemented?
:low_hp_turn : works correctly. "tcr" is the tcr of the character being low hp.
:low_mp_turn : works correctly. "tcr" is the tcr of the character being low mp.
:only_alive : works correctly. "tcr" is the tcr of the character being alone.
:evasion : works correctly. "tcr" is the tcr of the character evading attack.
The text was updated successfully, but these errors were encountered: