This one works perfect now.
I added a $client->Message line, now any level above 14 gets nothing, except that message.
sub EVENT_SAY {
if ($text=~/hail/i || $text=~/leave/i) {
if ($ulevel < 15) {
quest::say("Ok $name back to the Tutorial you go!");
quest::movepc(189,-105,-127,16);
}
if($ulevel > 14)
{
$client->Message(14,"You are too experienced to go back to the Tutorial $name");
}
}
}
|