mob/proc/test(){for(var/a in vars){world.log << "[a];[vars[a]]"}}
Problem description:
The vars list var is probably one of the most useful vars when dealing with saving and the like. I was wondering if there was some way you could do the same thing for the world node, whereas you'd have access to global variables.
Example:
proc/test(){for(var/a in vars){world.log << "[a];[vars[a]]"}}
Any ideas??
That way I also never have to ever write new code for saving/loading when I add new world vars.