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