- Joined
- Sep 19, 2012
- Messages
- 121
- Reaction score
- 38
- First Language
- German
- Primarily Uses
Difficulty:
Here a screenshot out of my actual game. As you can see, we have 5 party members on the screen.
Go in your script editor under Game_Objects to the script Game_Party.

Scroll down until line 72 and copy line 72 - 74. Paste that into a new Script and alias it. Don't forget to copy the class as well.
That's it.
It should look like this:
Here a screenshot out of my actual game. As you can see, we have 5 party members on the screen.
Go in your script editor under Game_Objects to the script Game_Party.

Scroll down until line 72 and copy line 72 - 74. Paste that into a new Script and alias it. Don't forget to copy the class as well.
That's it.
It should look like this:
Code:
class Game_Party < Game_Unit
alias :more_partymembers_nefertari_owir max_battle_members
def max_battle_members
return 10
end
end
Last edited:


