Thread: NPC Triggers
View Single Post
  #1  
Old 07-28-2012, 11:51 PM
Fysez Fysez is offline
Banned
Join Date: Apr 2012
Posts: 89
Fysez has a little shameless behaviour in the past
NPC Triggers

Is it possible to Trigger ServerSide to ClientSide on NPC's?
I know it's possible for ClientSide to ServerSide:
PHP Code:
function onActionTest() {
this.chat params[0];
}
//#CLIENTSIDE
function onCreated() {
triggeraction(this.xthis.y"Test""TestChat!");

But it their a way to convert this where it is something like:
PHP Code:
function onCreated() {
triggeraction(this.xthis.y"Test""TestChat!");
}
//#CLIENTSIDE
function onActionTest() {
this.chat params[0];

this?
I know this does not work, But how would I make it work???

-Thanks!
Reply With Quote