Thread: Quest help plz!
View Single Post
  #6  
Old 03-02-2007, 07:49 AM
Wizardanim
Sarnak
 
Join Date: Jul 2005
Location: Super Top Secret
Posts: 64
Default

Perhaps that command is broken then...

ive had trouble with some commands in the past, that dont work... you could try this tho:

see if the server 'thinks' your in a guild..

Quote:
$uguildid - Returns the ID of the guild of the user that triggered the Event.
$uguildrank - Returns the guild rank of the user that triggered the Event.
so...
Code:
sub EVENT_SAY {
     if ($text=~/guild status/i) {
          quest::say("You are in $uguildid.");
   }
}

or...

sub EVENT_SAY {
     if ($text=~/guild rank/i) {
          quest::say("In the guild you are a(n) $uguildrank");
   }
}
stick it on some npc...?

Other than this, since im not a huge coder, i wouldent have any other ideas
Reply With Quote