ID:173864
 
Hi i have been and got http://developer.byond.com/hub/Super16/OBJSAVING but is there anyway a gm can save a map and load or even the host?
mob/verb/save()
var/savefile/F = new()
F << usr
usr.client.Export(F)

client/New()
var/client_file = Import()
if(client_file)
var/savefile/F = new(client_file)
F >> usr
return ..()

Something of this caliber may work. I'm not sure though, my DM isn't perfect.

Bush-Jumper