ID:167529
 
If you do not specify where savefiles go, where do they end up? And how do you specify where?
If no location is given, the savefile is temporary. That means it doesn't go anywhere, and it only lasts until you stop using it.
In response to Loduwijk
ahhh. and how do i specify its location?
In response to CYN
client
proc/Save()
var/savefile/F=new("player/[src.mob.ckey].sav")//thats how
F["mob"]<<src.mob
F["x"] << src.mob.x
F["y"] << src.mob.y
F["z"] << src.mob.z
In response to National Guardsmen
Do you need the .sav at the end?
In response to Mechanios
alot of people dont use them but i was thought to do save systems with thoose on the end.
In response to National Guardsmen
Probly a bit safer than using a 'naked' filetype.