I'm stuck with two quests, I've tried like 10 different things and can't seem to get multiple "if" conditions to work. Im a perl noob so pardon me if what I am doing makes little sense. Tried to copy the format we used above to get two if conditions to trigger a result...
1st:
sub EVENT_SAY{
if(($class ==

&&
($text=~/hail/i))
{quest::say("xxx"); }
elsif(($class !=

&&
($text=~/hail/i))
{quest::say("xxx");}
}
**** and this one
sub EVENT_ITEM{
if(($item1 == 5) &&
($ulevel < 4))
{
quest::say("xxx");
quest::summonitem(6);
quest::say("xxx");
}
if($item1 == 6)
{
quest::setallskill(0);
quest::permaclass(

;
}
}
In the first one it triggers the second (elsif) condition regardless of my class. In the second it seems to be broken period, so I guess something is tripping it up in the format. Any have an idea?