ID:145180
 
Code:
mob
proc
LOADCHAR()
if(usr.clickload == 0)
usr.Load()
usr.clickload = 1
world<<"<html><font size = 1><font color = brown><B>Event:<font color = black>[usr.name] has logged in</font></html>"
return ..()

mob
proc
Save()
var/savefile/F = new("Save/[src.ckey]")
F["last_x"] << src.x
F["last_y"] << src.y
F["last_z"] << src.z
Write(F) // This Writes the file
Load()
if(fexists("Save/[src.ckey]"))
var/savefile/F = new("Save/[src.ckey]")
Read(F)
F["last_x"] >> src.x
F["last_y"] >> src.y
F["last_z"] >> src.z


Problem description:

wont bring mob to saved loc
That's because you can't load coordinates like that...
Search the forums, it has been on here multiple times.