I've added a new command on the title screen "Battle Arena".
I it so when you click the button, it goes to a map I made. So, far, I have this.
So, far I have done this.
# -------------------------------------------------------------------------
#* Command: BattleArena
#--------------------------------------------------------------------------
def command_battlearena
# Play decision SE
$game_system.se_play($data_system.decision_se)
# Stop BGM
Audio.bgm_stop
# Make title graphic
@sprite = Sprite.new
@sprite.bitmap = RPG::Cache.title($data_system.title_name)
# Make command window
s1= "Monster Squad"
s2= "Boss Squad"
end
I know it is not finished, don't worry about it. What do I need to add or take away to make it take the player to the map I made, like starting a new game, just taking me to that map, instead of the Players Starting Position.
I know this kind of topic was made somewhere before, but the author gave up.