Indie Dev

Hello Guest!. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, sell your games, upload content, as well as connect with other members through your own private inbox!

Do I need a script for Party change?

Squarkz

Villager
Xy$
0.00
The question is in the title.
My game is about a lot of team members and you will have to be able to change your party members of course.
So I'm asking do I need a script to be able to do this?
If yes then how? :p

Thanks in advance!
 

eivl

Local Hero
Xy$
0.00
You can run these script calls.

$gameParty.addActor(n);
$gameParty.removeActor(n);

To initialize: $gameActors.actor(actorId).setup(actorId);
 

Squarkz

Villager
Xy$
0.00
Thanks but it has to be like a menu.
So you can chose wich one from your team will be swapped with the one in the storage
 

LTN Games

Master Mind
Resource Team
Xy$
0.01
In that case you will need a script to swap party members this way. If I'm feeling up to it, when I'm complete my current plugin projects I will work on something like this.
 

cav_dan

Towns Guard
You don't NEED a script, if you want you can make an area where you talk to each party members you have and change them accordingly.

Also keep in mind each party member is in the database, so you can make a part member leave the party and come back later still with his equipment and level.
 

Squarkz

Villager
Xy$
0.00
In that case you will need a script to swap party members this way. If I'm feeling up to it, when I'm complete my current plugin projects I will work on something like this.
Let me know something here or through pm when you start/finished it!

You don't NEED a script, if you want you can make an area where you talk to each party members you have and change them accordingly.

Also keep in mind each party member is in the database, so you can make a part member leave the party and come back later still with his equipment and level.
Yeah I know that but I want to make it easy for the player. I want to make a good game :p
 
Top