quest::setguild
quest::setguild
Explaination: Adds a player to a certain guild and also sets their rank in that guild.
Full Command: quest::setguild(guildid,rank)
Guildid = The guild you want the player to be a member of, can be found in the database.
Rank = The rank you want the player to be. You can find or create this in your database.
Example:
# After hailing the NPC the players is now the leader of the guild number 3
sub EVENT_SAY
{
if($text=~/hail/i)
{
quest::setguild(3,0);
}
}
|