-
Posts
9 -
Joined
-
Last visited
-
Days Won
2
Community Answers
-
jasonch35's post in Pointer function question was marked as the answer
In the default npc script commands, no, you cannot. global temporary variables ($@ prefix) are used for this exact purpose.
NPC 1:
$@variable = 100; NPC 2:
mes "" + $@variable + ""; // this will output 100