Something like this should work
Code:
sub EVENT_SAY {
if ($text=~/hail/i || $text=~/leave/i) {
if($level < 15) {
quest::say("Ok $name back to the Tutorial you go!");
quest::movepc(189,-105,-127,16);
}
else {
quest::say("Sorry $name but you are too experienced to venture here.");
}
}
}