SKILL CHAINING

Another way to make a "Limit Break" (but of course not as interesting)!

  • Shuryou
  • 09/21/2009 09:05 AM
  • 1398 views
i'll share what i've made (rm2k3). i call it Skill Chaining. basically, when you Attack, the S.C. (Skill Chaining) Count goes up. when it reaches a certain number, a message appears saying that a Skill Chain is possible in the next turn. Skill Chains are just another name for when you use a Skill when the "Enable combo" command is set to higher than 1. but, you have to use the skill chain the turn after the message appeared, or else it'll be disabled (not sure about this though, i'll check into it later). here's the code i kept on testing for two hours straight:

(in the battle events btw)

{Page 1 Trigger: Lucian uses the Attack command}
<> Variable Oper: + 1
<> Branch if Var is "X" or more
<> Change Face Graphics: Erase
<> Message: Notice:
Skill Chaining Enabled!
<> Enable Combo: Lucian Skill Repeats "Y" Times

{Page 2 Trigger: Variable 0014 is above 4 ; Lucian uses the Skill Battle Command}
<> Variable Oper: Set 0

{Page 3 Trigger: Variable 0014 is above 0 ; Lucian has taken "X+2" turns}
<> Enable Combo: Lucian Skill Repeats 1 Times
<> Change Face Graphics: Erase
<> Message: Notice:
Skill Chaining disabled!


phew. now, let me explain.

in page 1, whenever Lucian attacks, the S.C. count goes up by 1 (thats Var 0014). the "X" in the branch on page 1 is how many times you want Lucian to attack so that S.C. will activate. then the message appears, and the enable combo for skills is changed to "Y" (thats how many times you want it to repeat).

in page 2, after Lucian uses the Skill, the S.C. count is reset to 0, this sets the path for S.C. to be disabled.

in page 3, you may be asking why "X+2". it's because the turn when you'd use the S.C. would be the turn after it was activated (because the turn when it was activated was when u attacked and then activated it). if it was "X+1", you would only end up doing the Skill once only.

and then that's it. although, I'm not sure if many people will use this. in any case, please give it a try and see if you like it! :D