View Single Post
  #6  
Old 12-30-2005, 06:26 AM
Kronan Kronan is offline
yo
Kronan's Avatar
Join Date: May 2001
Location: Florida, USA
Posts: 682
Kronan is on a distinguished road
Send a message via ICQ to Kronan Send a message via AIM to Kronan Send a message via Yahoo to Kronan
Quote:
Originally Posted by Matt
I'm not exactly good with scripting, but you can try this.

NPC Code:
function onPlayerChats()
if (player.chat == "texthere")
hide;

Event blockers is your best friend.

If you use GS2, this is what to do:
NPC Code:
function onPlayerChats() {
if (player.chat == "yourpassword") {
// do stuff here such as:
hide();
}
}

__________________
Reply With Quote