View Single Post
  #2  
Old 01-07-2008, 11:13 AM
Inverness Inverness is offline
Incubator
Inverness's Avatar
Join Date: Aug 2004
Location: Houston, Texas
Posts: 3,613
Inverness is a jewel in the roughInverness is a jewel in the rough
Don't use the action name "serverside" or "clientside" for normal triggers. Those two action names are for special functionality having to do with weapons.

For normal action behavior just use an action name that isn't "serverside" or "clientside" or starts with "server" as those go to the Control-NPC.
PHP Code:
function onCreated() {
  
setshape(13232);
}
function 
onActionWarp(newlevelnewxnewy) {
  
setlevel2(newlevelnewxnewy);
}
//#CLIENTSIDE
function onCreated() {
  
setshape(13232);
}
function 
onPlayerTouchsMe() {
  
triggeraction(this.xthis.y"Warp""lol.nw"3030);

The shape needs to be set on serverside for the NPC to acknowledge the action.
__________________
Reply With Quote