Chaos Project

RPG Maker => Event Systems => Event System Troubleshooting => Topic started by: Siffers on August 14, 2012, 05:02:33 am

Title: [SOLVED] [XP] How to check Actors current party slot.
Post by: Siffers on August 14, 2012, 05:02:33 am
I want to make some events accessible only if a certain party member is in the first slot of the party. Problem is, I don't know how to make the game check the ID of the Actor in the first slot of the party.
Title: Re: [XP] How to check Actors current party slot.
Post by: KK20 on August 14, 2012, 05:39:16 am
Conditional Branch -> Script:
$game_party.actors[0] == $game_actors[ID_of_actor_in_database_goes_here]
Title: Re: [XP] How to check Actors current party slot.
Post by: Siffers on August 14, 2012, 05:52:20 am
Thank you!  :haha: