Put this in the scripts database!
-------------------------------------------
1) Open up the script editor
2) Click on the script called "Scene_Map"
3) Find this section of code:
# B ??????????
if Input.trigger?(Input::B)
# ????????????????????
unless $game_system.map_interpreter.running? or
$game_system.menu_disabled
# ???????????? SE ?????????
$game_temp.menu_calling = true
$game_temp.menu_beep = true
end
end
4) Just below that code insert THIS code:
if Input.trigger?(Input::R)
actor = []
actor.push($game_party.actors[0])
actor.push($game_party.actors[1])
actor.push($game_party.actors[2])
actor.push($game_party.actors[3])
temp = 0
temp2 = 0
loop do
temp2 = temp2 + 1
if temp2 == 4
temp2 = 0
end
if actor[temp2] != nil
$game_party.actors[temp] = actor[temp2]
temp = temp + 1
if temp == 4
break
end
end
if temp2 == 0
break
end
end
$game_player.refresh
$game_party.refresh
end
------------------------------------------
Now when you press the "w" key on the keyboard, it would let you walk around as the next hero in line.
That may not make sense, but try the script to see what I mean.
Credit goes to Plystire.