Chaos Project

RPG Maker => RPG Maker Scripts => Script Troubleshooting => Topic started by: Airemix on January 13, 2008, 06:52:00 pm

Title: [RESOLVED]Need help with Easy Party Switcher
Post by: Airemix on January 13, 2008, 06:52:00 pm
Hi all,

I recently added Blizzard's Easy Party Switcher script, and was really impressed with how easy it is to use - but I keep running into one small problem.  Whenever I disable someone, and later enable them, the game freezes the next time a message window opens.  At first, I thought it was clashing with some other script I was using, but then I tried it in the demo itself and got the same result.  I'm using RMXP version 1.01, and here are the events I'm using:

Event 1:
$game_actors[3].disabled_for_party = true

Event 2:
$game_actors[3].disabled_for_party = false

Message: Hi

Other options in the event menu still seem to work - Move Event at least still functions, after re-enabling a character, but everything completely freezes once it gets to a message.  Am I using the script incorrectly?
Title: Re: Need help with Easy Party Switcher
Post by: Blizzard on January 13, 2008, 07:12:34 pm
There's a slight problem with some RMXP versions. Instead of using
$game_actors[3].disabled_for_party = true

simply use
$game_actors[3].disabled_for_party =
true

Yes, the true goes into a new line and you should be fine.
Title: Re: Need help with Easy Party Switcher
Post by: Airemix on January 13, 2008, 07:22:05 pm
Works perfectly, thanks!