Quest Question
As you may have noticed, I am not a quest person, so forgive me if this is a simple mistake :P
I've been having trouble getting this quest to work: Code:
sub EVENT_SAY Code:
elsif (($text=~/hail/i)&&(ulevel >=35)) |
I have noticed you used $ulevel in one palce and ulevel in others.
this could be the issue but otherwise you havent said anything about what excatly is wrong with it when try to hail |
As a start, two of your "ulevel"s have no $ before them.
You may want to try reordering your "ulevel" statements to reflect a descending order, as follows: Code:
sub EVENT_SAY if (($text=~/hail/i) && ($ulevel >= 35)) Try . . . if ($text=~/hail/i && $ulevel >= 35) |
I think this is what you are looking for... This is what I use for travel to these two zones (Abysmal Sea and Natimbi). But this can be used for what I assume you want to do.
Code:
sub EVENT_SAY { |
Oh wow, thanks! I can't believe I missed something so simple! :-D
|
All times are GMT -4. The time now is 10:02 PM. |
Powered by vBulletin®, Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.