ID:166483
 
Well I've learned quite alot more about save file systems.I have one worry though,how can I give a save file that's about to be saved to the client's computer a name,without it saving in the host's folder!!

This is what I tried first:
mob
proc
Save()
var/savefile/F=new("Test.sav")
F["Stuff"]<<usr.Stuff
F["OtherStuff"]<<usr.otherstuff
client.Export(F)

But that didn't save it on the client's computer.It saved it on the host's computer.

So what am I gonna do????
Metamorphman wrote:
Well I've learned quite alot more about save file systems.I have one worry though,how can I give a save file that's about to be saved to the client's computer a name,without it saving in the host's folder!!

This is what I tried first:
> mob
> proc
> Save()
> var/savefile/F=new("Test.sav")
> F["Stuff"]<<usr.Stuff
> F["OtherStuff"]<<usr.otherstuff
> client.Export(F)
>

But that didn't save it on the client's computer.It saved it on the host's computer.

So what am I gonna do????

Lose the filename. var/savefile/F = new

Hiead
In response to Hiead
If I take the filename away,then how would I give the file a name?
In response to Metamorphman
Metamorphman wrote:
If I take the filename away,then how would I give the file a name?

You don't; you use client.Import(). Look it up though, because I really don't care to explain any more than that. :/

Hiead