Well...I still haven't been able to get triggeractions in level npcs working. I've tried just about everything, including what you guys have mentioned.
Last thing I tried was this:
NPC Code:
function onActionTrigger() {
switch(params[0]) {
case "init":
message("Active...");
break;
}
}
//#CLIENTSIDE
function onCreated() {
triggeraction(x,y,"Trigger","init");
}