Thread: $race related
View Single Post
  #1  
Old 09-21-2004, 07:10 AM
Magoth78
Discordant
 
Join Date: Jun 2003
Posts: 345
Default

Neither, but i've just got it to work. (tried eq as smogo said)

Here's my modified code:

Code:
sub EVENT_SAY
{
if($text=~/hail/i)
  {
  if($race eq Human)
    {
    quest::say("You are a human.");
    }
   else
    {
    quest::say("FOOL! You are a $race not a human!");
    }
  }
}
Now i'm gonna try whit composed name, like Dark Elf, Half Elf etc..
Reply With Quote