Thread: Help
View Single Post
  #3  
Old 04-21-2006, 03:21 AM
Omini Omini is offline
Millenium Owner
Join Date: Feb 2006
Location: N.Ireland
Posts: 293
Omini is on a distinguished road
Send a message via AIM to Omini Send a message via MSN to Omini Send a message via Yahoo to Omini
So in the system NPC -

NPC Code:
if (playerchats) {
if (strequals(#c,/help)) {
triggeraction 0,0,serverside,"NPC-Control",help;
}
}



And System NPC -

NPC Code:
if (actionserverside) {
if (strequals(#p(0),help)) {
sendpm Pre-defined PM;
}
}



EDIT: Replacing "NPC-Control" with the correct NPC name
Reply With Quote