like this Lets say i'm not wanting it to save cirtain things like overlays and that cirtain things.
like
client
proc
Load()
var/savefile/load
load = new ("saves/[src.mob.ckey].sav")
load["Icon"] >> src.icon
load["Name"] >> src.name
load["Status"] >> src.status
load["Contents"] >> src.contents
load["Magic"] >> src.Magic
//etc...
Save()
var/savefile/save
save = new ("saves/[src.mob.ckey].sav")
save["Icon"] << src.icon
save["Name"] << src.name
save["Status"] << src.status
save["Contents"] << src.contents
save["Magic"] << src.Magic
//etc...
but every time i try something like that, it never saves. i would have to do a " load["mob"] >> src.mob " In it or something like that. but when i do that, it saves the overlays. please can some1 help.
If you are you can do something like: