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
ID:144893
Jul 28 2006, 10:10 am
|
|
Jul 28 2006, 12:14 pm
|
|
Try this,
|
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. |