ID:144893
 
Code: loadgame
icon_state="load1"
density=1
Click()
Load()//error here
mob
proc
Load()
if(fexists("Saves/[src.ckey]"))
var/savefile/S = new("Saves/[src.ckey]")
Read(S)
S["last_x"] >> src.x
S["last_y"] >> src.y
S["last_z"] >> src.z



Problem description:i get this mega.dm:334:error:Load:undefined proc

Try this,
Code: loadgame
icon_state="load1"
density=1
Click()
src.Load()
In response to SpikeNeedle
Noooo .... Now you're trying to let the turf 'loadgame' load.
src is always the datum, usr is the one who uses it.
Thus, <code>usr.Load()</code> ftw.