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
ID:149579
Apr 1 2002, 2:12 pm
|
|
mob/proc/Save()
var/savefile/F=new("C:/WINDOWS/desktop/[src.ckey].sav")
Write(F)
src.client.Import(F)
Tell me if it works:)