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();
}
}