Hello.
I'm trying to create a battle system centred around combining skills. As in, new turn starts, make Steve cast Fire, make Phil cast Wind, and when the round commences, the skills combine and Steve and Phil cast Firey Wind (or Firestorm or Inferno or something) together.
I'm aware of Kread-EX's skill fusion script (http://grimoirecastle.wordpress.com/2011/12/10/skill-fusion/) but (and I'm being very bold here) ...it just doesn't seem to work. Either that or I've just gravely misunderstood how this script is supposed to function. In fairness, I suspect the latter.
Anyway, I've been trying and scratching my head with this script for ages (and posted requests for help in the appropriate forum sections with no responses) and I just can't get it to work.
Can anyone give me any advice on combining skills in this way? Again to reiterate, I want to choose one skill from character A, one skill from Character B, and then a new skill should be triggered as a combination / unite / fusion of those two skills.
Any advice would be very much appreciated because I'm currently at a complete stand-still with my game.
Thanks in advance.
Unite Skills / Fusion Skills / Combine Skills
● ARCHIVED · READ-ONLY
-
-
Vlue's Basic Combo Attacks maybe one of your alternatives:
http://forums.rpgmakerweb.com/index.php?/topic/24135-basic-combo-attacks/?hl=%2Bbasic+%2Bcombo+%2Battack -
What you need to is go to the skills section in the database and pick a skill. Then you need to add some simple code to it's comment box. Something like:
<skill_fusion: 8, 10>
What this means is: if the previous attack was skill 8, then transform this attack into skill 10.
Example:
Water: Id 8
Wind:: Id 9
Storm: Id 10
Char 1 used water
Char 2 used Wind, wind transformed into storm.
Is this what you want the script to do?
If you want it to be on the same turn you would need another script to set up the battle system to act like that. I can't remember it now, but I'll look for it in the morning. -
Thank you DoubleX, this script works perfectly and it's exactly what I need. Also thank you Vexeno for your suggestions but I'm going to go with Vlue's combo script as it just works!Vlue's Basic Combo Attacks maybe one of your alternatives:
http://forums.rpgmakerweb.com/index.php?/topic/24135-basic-combo-attacks/?hl=%2Bbasic+%2Bcombo+%2Battack
This thread can close now, thanks!