i might be a bit off topic here and i can see the problem was already solved however just incase if there are any problems with any of the solutions above, i have found and use this bit of script to make a cutscene
all you need to do is make a normal map or maps with an autostart event to start the prosses of the scene, like if you would make a scene in your game, however you would have a "return to title" command at the end of the scene, then you add this script above main and bwllow everything else
class Scene_Cutscene
def main
$data_actors = load_data("Data/Actors.rxdata")
$data_tilesets = load_data("Data/Tilesets.rxdata")
$data_common_events = load_data("Data/CommonEvents.rxdata")
$data_system = load_data("Data/System.rxdata")
$data_mapInfos = load_data("Data/MapInfos.rxdata")
$game_temp = Game_Temp.new
$game_system = Game_System.new
$game_switches = Game_Switches.new
$game_variables = Game_Variables.new
$game_self_switches = Game_SelfSwitches.new
$game_screen = Game_Screen.new
$game_actors = Game_Actors.new
$game_party = Game_Party.new
$game_map = Game_Map.new
$game_player = Game_Player.new
@save_max = 3
for i in 0..@save_max
if FileTest.exist?("Save#{i+1}.rxdata") : $scene = Scene_Title.new end
end
$game_map.setup(MMMMMMM)
$game_player.moveto(XXXXX, YYYYYY)
$game_player.refresh
$game_map.update
$scene = Scene_Map.new
end
end
the MMMMMMMM is the Mpa ID and the XXXXXX and the YYYYYY is the location on the map for the player (best have the player to ahve no sprite set then) then go to Main in the scritps and change
to
$scene = Scene_Cutscene.new
, with this you can also fix up any script that redirects you to the Title and chnage the Scene_Title part to Scene_Cutscene, i found this on
http://rmrk.net/, can't remember who made it (couln't find the post) but one note, best to sue the current version of tons, when i first used this script i worked fine, when i used version 6.somethings (before the script was broken into 3) i was getting an error then when i got the current version of tons it worked again, just a little warning