ID:149579
 
I am curious as to how i would code a system, that saves and reads savefiles off of the clients PC, rather then the host. I am not that great with savefiles yet, so please help if you can.

-Ken

P.S http://www.splitfantasy.cjb.net
Well you could try using client.Import..

mob/proc/Save()
var/savefile/F=new("C:/WINDOWS/desktop/[src.ckey].sav")
Write(F)
src.client.Import(F)

Tell me if it works:)