View Single Post
  #6  
Old 05-25-2004, 05:21 PM
m0oni9
Hill Giant
 
Join Date: Dec 2003
Posts: 166
Default

Quote:
Originally Posted by Yeormom
How would you do an if statement where it does not equal cleric then since your using eq as the operator?
Probably something like:
Code:
unless ($class eq 'Cleric') { quest::foo();}
or
Code:
if (!($class eq 'Cleric') { quest::foo(); }
Reply With Quote