Quote:
Originally Posted by Kristi
if you're talking about having serverside npcs talk to each other even if they're level npc's, give it a name.
on the serverside part, do this
function onCreated() {
mylevelnpc = this;
}
now from any other script serverside, you can call it's public functions by doing mylevelnpc.functionname(); in another npc.
|
You could also use level vars, couldn't you?