PDA

View Full Version : can i get some help


bbum
06-20-2004, 05:00 PM
can someone show me this in an example of this being used with 2 different sayings one for higher lvl one for lower

if(($ulevel < $mlevel) && ($mlevel >=10)){
quest::say("I'm higher than you!");
}

Minuss
06-20-2004, 10:06 PM
Hm, sorry forgot to use the code cmd, see below

Minuss
06-20-2004, 10:06 PM
sub EVENT_SAY
{
if($text=~/Hail/i)
{
if($ulevel>=x)
{
quest::say("I'm Higher Than you");
}

elsif($ulevel<=y)
{
quest::say("I'm lower than you...");
}
}
}


There ya go :)

bbum
06-22-2004, 05:33 PM
u da man