T.T why this dont work??!!!
mob
proc
SaveZ()
var/savefile/save
save = new ("players/[usr.key].sav")
save["mob"] << usr
save["x"] << usr.x
save["y"] << usr.y
save["z"] << usr.z
usr << "<font color=red><b>Your game has been saved!"
Load()
if(fexists("players/[usr.key].sav"))
var/savefile/load = new ("players/[usr.key].sav")
load["mob"] >> usr
load["x"] >> usr.x
load["y"] >> usr.y
load["z"] >> usr.z
world<<"<font color=green>[usr] has logged in!"
Problem description:
this stuff when i use the load anything i log in with no base icon >.<
try that.