ID:270222
 
is it possible to make a world variable?
yes
i think its considered a worl var when you do like
proc/Test()
src<<"Test"


blah and so on
In response to National Guardsmen
Variables that belong to the "world" object cannot be created. There exist Global variables and just plain variables, though.
*sigh* Please delete that post that National Guardsman made from your brain, it was completely far from what you asked.

Well the answer is kinda no, but yes. You create variables that can be used globaly like this.

var
Version = 1

And are accesed without anything in front of them like..
mob
verb/Test()
world << Version // This would output 1
In response to Sniper Joe
i know that, aah i do not know how to explain this XD
In response to Fire Dynasty
Well that is kinda what you asked for...
In response to Sniper Joe
Its ok i figured it out :D
In response to Fire Dynasty
Of course you did. It's simple enough, so all you had to do was to see it in use by Sniper Joe.

As for Joe's suggestion concerning the first reply to this thread - I only wish it were that simple to erase something from memory. I'd be willing too many things out of my head.
In response to Loduwijk
Ah yes...maybe someday it will be possible to erase memories.
In response to National Guardsmen
National Guardsmen wrote:
yes
i think its considered a worl var when you do like
proc/Test()
src<<"Test"


Uh, you didn't create a var there. You did create a global proc. Mind you that's not the same as a world proc.

Lummox JR