mob
proc
Load()
switch(alert("Which Savefile do you wish to load?","Load?","SaveSlot 1","SaveSlot 2","SaveSlot 3"))
if("SaveSlot 1")
if(fexists("savefiles/[src.ckey]1.sav"))
var/savefile/F = new("savefiles/[src.ckey]1.sav")
var/newX
var/newY
var/newZ
src<<"TEST1"
F["lastx"] >> newX
src<<"TEST2"
F["lasty"] >> newY
src<<"TEST3"
F["lastz"] >> newZ
src<<"TEST4"
F["usr"]>>src
src<<"TEST5"
src.loc=locate(newX,newY,newZ)
src<<"TEST6"
else
alert("No savefile found in the directory","ERROR")
return
Problem description:ok some reason the proc quits at test 4 what can i do to make go past that?
F["usr"]>>src
?