[RESOLVED]Need help with Easy Party Switcher

Started by Airemix, January 13, 2008, 06:52:00 pm

Previous topic - Next topic

Airemix

January 13, 2008, 06:52:00 pm Last Edit: January 13, 2008, 07:22:22 pm by Airemix
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?

Blizzard

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.
Check out Daygames and our games:

King of Booze 2      King of Booze: Never Ever
Drinking Game for Android      Never have I ever for Android
Drinking Game for iOS      Never have I ever for iOS


Quote from: winkioI do not speak to bricks, either as individuals or in wall form.

Quote from: Barney StinsonWhen I get sad, I stop being sad and be awesome instead. True story.

Airemix