client
proc
Save()
var/savefile/F = new("[ckey].sav")
F["mob"] << mob
// Do not add anything more to be saved here
Load()
if(fexists("[ckey].sav"))
var/savefile/F = new("[ckey].sav")
F["mob"] >> mob
// Do not add anything more to be loaded here
mob
Write(var/savefile/F)
..()
// Add any special processing for saving here
F["x"] << src.x
F["y"] << src.y
F["z"] << src.z
Read(var/savefile/F)
..()
F["x"] >> src.x
F["y"] >> src.y
F["z"] >> src.z
// Add any special processing for loading here
Problem description: My question is: How do I make it so that it works in the first place, and it saves your loc, verbs, and vars?
2) Read on saving and use the forum search if necessary.