ID:270355
 
Is there a way to keep a verb like /mob/blah/verb/Blahblah saved after logging out? Because I log out and then my verb dissapears. I know that if you did it for every time you ran the load proc you could make it re-add the verb. But there are like 50+ verbs so it would take forever. There must be a faster way. Anyone know?
[link]

It is helpful to search the forums sometimes.
lol this is how I do it
mob/var/savedverbs

mob/proc/Save()
src.savedverbs=src.verbs
var/savefile/F=new("your save directory")
F[("savedverbs")]>>(savedverbs)
mob/proc/Load()
var/savefile/F=new("your save directory")
F[("savedverbs")]<<(savedverbs)
src.verbs += src.savedverbs
In response to VcentG
I did it capt's way and it worked fine. Thanks anyways.