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?
Reason:
client/Del() is called when the client already left
mob/Logout() is called from client/Del(), meaning no client there.