ID:264053
 
Code:
mob

Write(savefile/F)

..()

F["last_x"] << x
F["last_y"] << y
F["last_z"] << z

Read(savefile/F)

..()

var/last_x
var/last_y
var/last_z

F["last_x"] >> last_x
F["last_y"] >> last_y
F["last_z"] >> last_z

loc = locate(last_x, last_y, last_z)

mob/player
verb
save()
var/savefile/F = new()
F["mob"] << usr//write the player's mob
usr.client.Export(F)




client/proc/LOAD()
var/client_file = Import()
if(client_file)
var/savefile/F = new(client_file) //open it as a savefile
F["mob"] >>src //read the player's mob
return ..()


Problem description:

Well, it loads and saves the problem is the problem is i want it to auto-save i tried using a client/Del() and doing a proc for saving the file(did not work) then i looked for some help at Help(F1) in the dream maker there i tried doing somethings that i saw there like world/Topic() (did not work either) also i tried to do a del proc for it and did not work either o.o the delete proc was this:

client
proc
DelF()
var/client_file = Import()
if(client_file)
var/savefile/F = new(client_file)
fdel(client_file)


it did not work so i tried this:
client
proc
DelF()
var/client_file = Import()
if(client_file)
var/savefile/F = new(client_file)
fdel(F)


Anyone can help me?
Unfortunately, you cannot Export() anything when the client decides to leave, unless they save manually themselves (unless you have auto-save or force-save when the game reboots/shutdowns).

Reason:
client/Del() is called when the client already left
mob/Logout() is called from client/Del(), meaning no client there.
In response to GhostAnime
How about the delete proc? i mean so people can delete their save file
In response to Danny Kenobi
To delete a client-save file is simple, even mentioned in the DM Reference entry for Export.

"To delete the client-side savefile completely, call client.Export() with no argument at all."
In response to GhostAnime
can you explain it to me a bit better? i am pretty new at programming so i dont get what that exaclty means
In response to Danny Kenobi
If you don't understand what "call" and "argument" means in regards to the programming, you should read the DM Guide.