ID:266336
 
How do i make a Save File that works?plz tell me
Nandrew the Save FIle you gave me doesnt work
In response to SSJ4_Gohan_Majin
It's a perfectly functional savefile system. But I'll give you one that maybe even you can understand;

mob/verb/Save()
var/savefile/F = new("[usr.ckey].sav")
Write(F)
mob/verb/Load()
var/savefile/F = new("[usr.ckey].sav")
Read(F)
Look in the guide, there are some very basic and understandable examples of saving in there.

http://www.byond.com/docs/guide/info.html#2.6.1

If you don't understand the information there, don't come back here asking how to do it because no one can explain it better than that.

If you need help with certain parts of it, that's another issue.
:) Thanks Nandrew