The RPG Maker Resource Kit

Other Game Creation => Program Troubleshooting => Topic started by: Caesis on May 06, 2008, 07:04:53 PM

Title: "If" item equiped - change spriteset? [RESOLVED]
Post by: Caesis on May 06, 2008, 07:04:53 PM
I'm making differant armours for Aeluxus or whatever. The Fighter noob.

And I want to know how to make it so, when said armour is equiped, it will change the spriteset so his armour is differant.

1. Equiped "iron armour"
2. Spriteset changed to "iron armour Aeluxus"


How would I do this? And make it equiped every map and not just one?
Also, can I do the same thing with battlers?
Thanks.
- Caesis
Title: Re: "If" item equiped - change spriteset?
Post by: ceegamus on May 13, 2008, 09:56:00 PM
Do a common event, and make it a parallel process.  Use a switch to turn it on, and have a parallel process on the first map that turns the switch on.

For the actual event, make a conditional branch.

Have the conditional Branch state that if Actor Aluxes has Iron Armor equipped.

Conditional Branch is on the 1st page.  Actor has ____ Equipped is on the 2nd page of the conditional branch.

For the event satisfied part, have it change actor graphic.

Change Actor Graphic is on the 3rd page.  You can change both the Sprite and Battler from here.
Title: Re: "If" item equiped - change spriteset?
Post by: Caesis on May 14, 2008, 06:05:51 PM
Thanks  :)