ID:154770
 
If I have something that looks like this...
 new/savefile("Savefiles/[ckey(src.key)].sav")

And I want save variables such as mob location, would there be a way to condense the value of this savefile into a variable like a letter? Something like this..
 var/S = "Savefiles/[ckey(src.key)].sav"

This doesn't work.
var/savefile/s = new(path)
In response to Kaiochao
Many thanks... I've seen that function before, but I didn't think of using it in this situation.