ID:268170
 
How would you allow people to play there characters on all servers?

Thank you,
Non-PC
Use client.Export() and client.Import().
In response to Garthor
Garthor wrote:
Use client.Export() and client.Import()

Would this work?(not tested)

mob/verb/save()
var/savefile/S = new()
S << usr
usr.client.Export(S)

client/New()
var/client_file = Import()
if(client_file)
var/savefile/S = new(client_file)
S >> usr
return ..()
In response to Non-PC
No, because you usr won't work in client/New().