savechar()
src.client.Export()
var/savefile/F = new()
F["last_x"] << src.x
F["last_y"] << src.y
F["last_z"] << src.z
F["usr"] << src
src.client.Export(F)
loadchar()
var/savefile/F = new(client.Import())
if(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
F["usr"] >> src
src.loc=locate(last_x,last_y,last_z)
Problem description:
The problem is that instead of going to the saved location it takes me to the center of the start screen and announces that I logged out.Also there is no error message.and I have the same problem with server side saving.