Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
I even tried removing ch1, then adding ch1 and then adding ch2, but that makes the lead character no one, and ch1 is in formation at #3 and ch2 is in formation at #4.
I should also mention I'm not super good at this, not even sorta good I'd say. I just bought this on sale once and I'm making a funny game for a friend. All I use are events and they seem to have worked for me this far
I'll try installing Yanfly's party system and see how that goes
This is really annoying at this point and I don't know why they are placed in the back of the party
Also on the System tab is a set of options labelled "Menu Commands" that lets you show/hide various pause menu commands, including Formation. =)
Alright thanks for your help everyone, but I figured it out. Yes I did get rid of the formation from the menu.
Also for the starting party I added ch2 to it, even though I don't want to start with them, then as soon as the game starts there's already an event that autoruns so I just had that event remove ch2. Later when ch2 is added back they get added to the right spot.
Also thanks for the advice on starting a new game, I was starting from a save so I could skip the beginning
If you want to add a new character to a specific position, you can either:
- Remove all characters from that position onwards, add the new character, then re-add any characters you just removed (generally awkward to implement); or
- Add them as normal, then use a script call to swap the party order, e.g.
$gameParty.swapOrder(0, $gameParty.size() - 1); I think this will swap the party leader (index 0) with the last follower. Change the 0 as you like~
Remember that the player can manually change the party order from the pause menu, unless you have disabled the Formation command (System tab in the database).