var/savefile/SaveFile = new("players.sav")
mob/Write(savefile/F)
F["key"] << key
F["score"] << score
mob/Read(savefile/F)
F["key"] >> key
F["score"] >> score
mob/proc/savescore()
Write()
..()
mob/proc/readscore()
Read()
..()
</dm
</b>
<dm>
Problem description:
I am trying to very simply record a score, and then spit it back out by calling the proc later. Yes, I realize this is an ultra pathetic attempt. Please help!