View Single Post
  #1  
Old 05-19-2002, 11:23 PM
GrowlZ1010 GrowlZ1010 is offline
defunct
Join Date: May 2002
Posts: 187
GrowlZ1010 is on a distinguished road
Calling NPCServer commands

If you have a normal non-weapon NPC, how does IT trigger p2p events? I know that weapons use "triggeraction serverside,0,0,#w", but I have no idea how to make non-weapon NPCs use serverside features. Could I use a function, as in:

NPC Code:

//#SERVERSIDE
function addmeaweapon(){
addweapon Trading Item;
}
//#CLIENTSIDE
if (playertouchsme){
addmeaweapon();
}



... or would something else be necessary? I tried using triggeraction serverside, but it didn't do anything, so I tried removing the addweapon command and used setplayerprop #c,Trading Item!; as a test, but that didn't work either.. what would I need to do?