IS THERE A PLUGIN THAT WILL ALLOW YOU TO COMBINE ITEMS IN BATTLE TO USE A SKILL?

Posts

Pages: 1
I'll give a bit of an example to help find the plugin I'm looking for.

So I want to a create a character that can use magic/skills by combining items. Like say the character wants to use fire tornado. When they click on the skill in the battle menu. It would then prompt the player to select items, the player would have to pick FIRE ORB and WIND ORB to cast the skill.
So something like Rikku's "mix" skill in FFX, except the player knows what they want to achieve?

If you wanted to event it, you could do something like this by having the skill run a common event and forcing a different action depending if the items chosen are good or not:

◆Select Item:alchemy A, Regular Item
◆Select Item:alchemy B, Regular Item
◆If:alchemy A < alchemy B
◆Comment:swap so A is always lower item id
◆Control Variables:#0001 scratch = alchemy A
◆Control Variables:#0015 alchemy B = alchemy A
◆Control Variables:#0014 alchemy A = scratch

:End
◆If:alchemy A = 7
◆If:alchemy B = 7
◆Comment:Two potions: all potion
◆Force Action:Reid, All-Potion, Last Target
◆Exit Event Processing

:End

:End
◆Comment:No recipe matches, do a weak effect
◆Force Action:Reid, Fizzle, Last Target
[code]
That's a brilliant idea that I never thought of! I'm using MV by the way. I'll play around with that idea.
Pages: 1