RMRK is retiring.
Registration is disabled. The site will remain online, but eventually become a read-only archive. More information.

RMRK.net has nothing to do with Blockchains, Cryptocurrency or NFTs. We have been around since the early 2000s, but there is a new group using the RMRK name that deals with those things. We have nothing to do with them.
NFTs are a scam, and if somebody is trying to persuade you to buy or invest in crypto/blockchain/NFT content, please turn them down and save your money. See this video for more information.
Eventing Help Please Help

0 Members and 1 Guest are viewing this topic.

****
Rep:
Level 89
I is my hero!
In each map I put a parallel process that has a conditional branch so if you equip something it changes your chara graphic. The problem is if you have nothing equipped then I don't know how to change that.
« Last Edit: March 02, 2007, 01:54:04 AM by bulls84 »

*
Rep:
Level 97
2014 Most Unsung Member2014 Best RPG Maker User - Engine2013 Best RPG Maker User (Scripting)2012 Most Mature Member2012 Favorite Staff Member2012 Best RPG Maker User (Scripting)2012 Best MemberSecret Santa 2012 ParticipantProject of the Month winner for July 20092011 Best Use of Avatar and Signature Space2011 Best RPG Maker User (Scripting)2011 Most Mature Member2011 Favourite Staff Member2011 Best Veteran2010 Most Mature Member2010 Favourite Staff Member
I don't have RMXP on this comp. so I can't test, but first, use a common event instead of ind. events in each map. It'll save you the copy paste. What I'd do is use a Change Graphic (Normal) and put that as the last event command in the event. Then make a Label at the very top of the Map, and put in a Jump to Label command in each conditional branch after the change graphic. That should work, but post if it doesn't. There might be a more efficient way, but this was my first idea.

****
Rep:
Level 89
I is my hero!
For some reason it doesn't work.

« Last Edit: March 02, 2007, 01:54:14 AM by bulls84 »

******
Rep:
Level 92
Welcome Poster of Year 2006 Award
You using RMXP? How can you assume so well?
Do you want to be part of a growing Gaming Community, with many galleries, comics, active community, and gfx artists? Also known to be friendly. Also want some free anime music just for signing up? Play in the arcade?



Click Community Forums to join!

< Zelda Fan Club

*
Rep:
Level 97
2014 Most Unsung Member2014 Best RPG Maker User - Engine2013 Best RPG Maker User (Scripting)2012 Most Mature Member2012 Favorite Staff Member2012 Best RPG Maker User (Scripting)2012 Best MemberSecret Santa 2012 ParticipantProject of the Month winner for July 20092011 Best Use of Avatar and Signature Space2011 Best RPG Maker User (Scripting)2011 Most Mature Member2011 Favourite Staff Member2011 Best Veteran2010 Most Mature Member2010 Favourite Staff Member
It's done the same way in 2k3 as it is in XP, so no assumptions are really necessary. In any case, forget the labels and try making an else if system, so like this:

Code: [Select]
Conditional Branch: [Zack] has [Bronze Armour] equipped
    Change Hero Graphic [Zack with Bronze Armour]
Else
   Conditional Branch: [Zack] has [Iron Armour] equipped
          Change Hero Graphic [Zack with Iron Armour]
...
   Else
       Conditional Branch: [Zack] has [Mithril Armour] equipped
          Change Hero Graphic [Zack with Mithril Armour]
       Else
           Change Hero Graphic [Regular Zack]     

I think that should work.

**
Rep: +0/-0Level 87
Yes, that's how its done.  I created this where changing your armor will change the sprite.  This is the code I use:

Code: [Select]
Conditional Branch: [J] is [Crimson Heart] equipped
    Change Actor Graphic: [J], CrimsonKnight
Else
   Conditional Branch: [J] is [Cerulean Scales] equipped
          Change Actor Graphic: [J], CeruleanArmor
...
   Else
       Conditional Branch: [J] is [Jade Stronghold] equipped
          Change Actor Graphic: [J], JadeArmor
       Else
           Change Actor Graphic: [J], 046-Grappler01

If you need I can upload my project with this common event.
}:-)>