View Single Post
  #2  
Old 10-28-2012, 08:10 AM
wolfwalkereci
Discordant
 
Join Date: Dec 2005
Posts: 435
Default

Using a event say this works for me.
Code:
sub EVENT_SAY {
    if($text=~/hail/i) {
        if ($faction ==7) {
            quest::say("blah blah");
        }
    }
}
In your example I see you have the following:
Quote:
if $faction ($client) >= 6)) ;
Missing a "(" in there. Not sure what else might be an issue.
Reply With Quote