View Single Post
  #6  
Old 04-04-2011, 09:26 PM
cbk1994 cbk1994 is offline
the fake one
cbk1994's Avatar
Join Date: Mar 2003
Location: San Francisco
Posts: 10,718
cbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond repute
Send a message via AIM to cbk1994
In that case, in Control-NPC:

PHP Code:
function onCreated() {
  
this.setPM(""); // reset the reply PM
}

function 
onInitialized() {
  
this.trigger("created"); // if the server restarts
}

// the parameters are lines
function onPM(p0p1p2p3) { // first parameter isn't used
  
if (p1 == "eventsapp") {
    
player.sendPM("Events Application:\nStuff here!");
  }

__________________

Last edited by cbk1994; 04-04-2011 at 10:00 PM.. Reason: fixed, thanks jer
Reply With Quote