Quote:
Originally Posted by Magoth78
Hello Cisyouc and thanks for your answer. I've tried your script but it always returns me 'Your are a human' even if I m an other race (just tested whit a dark elf)
|
Code:
sub EVENT_SAY
{
if($text~/hail/i)
{
$xrace = ($race);
if($xrace == "Human")
{
quest::say("You are a human.");
}
else
{
quest::say("FOOL! You are a $xrace not a human!");
}
}
}
Dont know if this will improve anything but try this?