ID:173864
![]() Nov 6 2003, 2:28 pm
|
|
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?
|
Copyright © 2025 BYOND Software.
All rights reserved.
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