ID:174214
 
mob/verb/TestSave()
usr << ftp('World.sav')

I have the save part down supposedly... But how would I be able to upload the file?
mob/verb/TestUpload(thefile as file)
if(!isfile(thefile))
return 0 //Error, something messed up
if(!fcopy(thefile, "world.sav"))
return 0 //Couldn't create the file on the server

This should work. I'm not sure if it's what you want, though.
In response to Jon88
It doesn't seem to work..
F["NPCs"] >> NPCs
F["browser"] >> browser
F["sheet"] >> sheet
F["org"] >> org
Those are the vars that savefile saves.
The savefile works out as lists and when someone uploads the save file I want the vars saved on the lists added onto the present list..
In response to Texter
Well, once the file's been uploaded, you'll need to access it like a regular savefile.
In response to Jon88
I never thought about saving to a server. You can't just...

var/savefile/F=new("ftp://id:pass@host/document")?

That's just a guess.