runtime error: Failed to write variable V to savefile players/ZeroDay.sav. The value being written was /list (/list).
proc name: SaveK (/mob/proc/SaveK)
usr: the asdfdsa (/mob)
src: the asdfdsa (/mob)
call stack:
the asdfdsa (/mob): SaveK()
the asdfdsa (/mob): AutoSave()
the asdfdsa (/mob): LoadPlayer()
the asdfdsa (/mob): Login()
Save Code :
mob/var/list
V
mob
proc
AutoSave()
if(src.cansave)
src.SaveK()
spawn(24)
src.AutoSave()
mob
proc
SaveK()
if(src.cansave)
var/savefile/F = new("players/[src.key].sav")
src.V = src.verbs
src.xco = src.x
src.yco = src.y
src.zco = src.z
Write(F)
i think the problem is with the vars, but i can't figure how to fix it .