View Single Post
  #4  
Old 01-28-2010, 10:18 PM
trevius's Avatar
trevius
Developer
 
Join Date: Aug 2006
Location: USA
Posts: 5,946
Default

Sorry, try this format instead:

Code:
($class eq "Ranger" || $class eq "Beastlord")
When comparing strings using "eq", they need to have double quotes, not single quotes.

You should also be able to do it this way:

Code:
($class == 'Ranger' || $class == 'Beastlord')
The single quotes should allow "==" to work.
__________________
Trevazar/Trevius Owner of: Storm Haven
Everquest Emulator FAQ (Frequently Asked Questions) - Read It!
Reply With Quote