Ok, after playing with it for a few minutes, I got him to respond to hail accordingly, (telling me to look for my race if anything but barbarian), but if I just say "warrior", he still changes me, regardless of race..
Code:
sub EVENT_SAY
{
if($text=~/hail/i)
{
if($race ne 'Iksar' && $race ne 'Troll' && $race ne 'Ogre' && $race ne 'Dark Elf' && $race ne 'Froklok' && $race ne 'Gnome' && $race ne 'Vah Shir' && $race ne 'Human' && $race ne 'Erudite' && $race ne 'Wood Elf' && $race ne 'High Elf' && $race ne 'Half Elf' && $race ne 'Dwarf' && $race ne 'Halfling' && $race ne 'Drakkin')
#Allows the following: ($race == 'Barbarian')
{
quest::say("Hello $name, I am Renth McLanis. I was sent here from our home to make sure our fellow barbarians are training where they should. We support the following classes: Ranger, Rogue, Shaman and Warrior. If you are not one of these, you will have to change classes before you are allowed to advance.");
}
else
{
quest::say("Greetings $race. I'm sorry to be blunt, but I can do nothing for you. Perhaps you should seek out your proper race.");
}
}
if($text=~/warrior/i)
{
quest::permaclass(1);
}
if($text=~/ranger/i)
{
quest::permaclass(4);
}
if($text=~/rogue/i)
{
quest::permaclass(9);
}
if($text=~/shaman/i)
{
quest::permaclass(10);
}
}