Chaos Project

RPG Maker => RPG Maker Scripts => Script Troubleshooting => Topic started by: Sin86 on January 30, 2013, 07:37:00 pm

Title: [RESOLVED] Any script calls for Blizz ABS caterpillar max size?
Post by: Sin86 on January 30, 2013, 07:37:00 pm
I'm looking for a script call to see if you can make events change the maximum caterpillar size for party members. Does Blizz ABS have that?
Title: Re: Any script calls for Blizz ABS caterpillar max size?
Post by: KK20 on February 04, 2013, 01:37:31 am
Like have 4 members in the party but only 2 of them out at a time? I don't see the point. :???:

Anyways, the variable MAX_PARTY is used to create caterpillar sizes, I think. Don't quote me on that :P
BlizzABS::Config::MAX_PARTY = number


Edit: Doing this worked for me.

BlizzABS::Config::MAX_PARTY = new_size
$BlizzABS.init_caterpillar
$scene.spriteset = Spriteset_Map.new
Title: Re: Any script calls for Blizz ABS caterpillar max size?
Post by: Sin86 on February 10, 2013, 05:45:07 pm
Hey thanks man.