Quote:
Originally posted by PresShinP2P
are regular vars are shared with other people in the same room?
|
A global variable (ie: thisismyvariable = 10) is readable by any NPC in the level it was declared in. A local variable (ie: this.thisismyvariable = 10) is readable
only by the npc that created it.