- Joined
- Jan 23, 2015
- Messages
- 710
- Reaction score
- 228
- First Language
- English
- Primarily Uses
This is a basic script that allows you to change the number of party members on screen, in menus and in the battle without change the default scripts. The terms of use are detailed in the script. There are no known bugs or compatibility issues. However I recommend staying clear of party member scripts and the like, just in case.
#===============================================================================
# Zarsla's Simple Party Member Script
# Realease Date 6/28/2015
# Author: Zarsla
# Contact: zzarsla@gmail.com
#===============================================================================
# Plug-n-play script. A simple script that changes the number of party members
# you see on screen, in menu and in battle. Known bugs there's no way to change the
# of members in battle and on screen.
# Terms of Use: Credit me (Zarsla), if used in commercial or free games. As well as
# give me (Zarsla) a free game if you make it commerical. You can release modified
# versions of this script/use it as a base of this script, as long as you credit the
# the basic script/base to me.
#-------------------------------------------------------------------------------
# Editable Region
#-------------------------------------------------------------------------------
module ZC
MF = 4 # Changes the number of party memebers on the map and in battle.
end
#-------------------------------------------------------------------------------
# Do not edit after this region!
#-------------------------------------------------------------------------------
class Game_Party < Game_Unit
def max_battle_members
return ZC::MF
end
end
# Zarsla's Simple Party Member Script
# Realease Date 6/28/2015
# Author: Zarsla
# Contact: zzarsla@gmail.com
#===============================================================================
# Plug-n-play script. A simple script that changes the number of party members
# you see on screen, in menu and in battle. Known bugs there's no way to change the
# of members in battle and on screen.
# Terms of Use: Credit me (Zarsla), if used in commercial or free games. As well as
# give me (Zarsla) a free game if you make it commerical. You can release modified
# versions of this script/use it as a base of this script, as long as you credit the
# the basic script/base to me.
#-------------------------------------------------------------------------------
# Editable Region
#-------------------------------------------------------------------------------
module ZC
MF = 4 # Changes the number of party memebers on the map and in battle.
end
#-------------------------------------------------------------------------------
# Do not edit after this region!
#-------------------------------------------------------------------------------
class Game_Party < Game_Unit
def max_battle_members
return ZC::MF
end
end
