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(); }