Back to 'guild_member_withdraw' Return to characters Go to 'instance'
This table holds the information on all of the ranks available in a guild along with their names and what rights a person with that rank has.
Field | Type | Attributes | Key | Null | Default | Extra | Comment |
---|---|---|---|---|---|---|---|
guildid | int | unsigned | PRI | NO | 0 | ||
rid | tinyint | unsigned | PRI | NO | |||
rname | varchar(20) | NO | '' | ||||
rights | mediumint | unsigned | NO | 0 | |||
BankMoneyPerDay | int | unsigned | NO | 0 |
references guild.guildid.
The particular rank ID. This number must be unique to each rank in a guild.
A guild must have at least 5 and can have at most 10 ranks.
The name of the rank that is displayed in-game.
The rights a player of this rank has in the guild.
Value | Flag | Name | Comment |
---|---|---|---|
64 | 0x00000040 | GR_RIGHT_EMPTY | Having just this flag by itself is equivalent to having no rights at all. |
65 | 0x00000041 | GR_RIGHT_GCHATLISTEN | Player can read messages in the guild general chat channel. |
66 | 0x00000042 | GR_RIGHT_GCHATSPEAK | Player can type messages in the guild general chat channel. |
68 | 0x00000044 | GR_RIGHT_OFFCHATLISTEN | Player can read messages in the guild officers channel. |
72 | 0x00000048 | GR_RIGHT_OFFCHATSPEAK | Player can type messages in the guild officers channel. |
80 | 0x00000050 | GR_RIGHT_INVITE | Can invite other players to guild. |
96 | 0x00000060 | GR_RIGHT_REMOVE | Can kick other players out of guild. |
192 | 0x000000C0 | GR_RIGHT_PROMOTE | Can promote other players. |
320 | 0x00000140 | GR_RIGHT_DEMOTE | Can demote other players. |
4160 | 0x00001040 | GR_RIGHT_SETMOTD | Can change the guild message of the day. |
8256 | 0x00002040 | GR_RIGHT_EPNOTE | Can edit other players' personal notes. |
16448 | 0x00004040 | GR_RIGHT_VIEWOFFNOTE | Can view the officer notes of other players. |
32832 | 0x00008040 | GR_RIGHT_EOFFNOTE | Can edit officer notes of other players. |
65600 | 0x00010040 | GR_RIGHT_MODIFY_GUILD_INFO | Can edit guild info. |
131072 | 0x00020000 | GR_RIGHT_WITHDRAW_GOLD_LOCK | Can remove money withdraw capacity. |
262144 | 0x00040000 | GR_RIGHT_WITHDRAW_REPAIR | Can withdraw gold for repair. |
524288 | 0x00080000 | GR_RIGHT_WITHDRAW_GOLD | Can withdraw gold. |
1048576 | 0x00100000 | GR_RIGHT_CREATE_GUILD_EVENT | Can create a guild event. |
1962495 | 0x001DF1FF | GR_RIGHT_ALL | Has all of the rights. |
The total money per day, in copper, that a person with this rank can withdraw. Use the maximum value of an unsigned int (4294967295) to specify unlimited amount.
Back to 'guild_member_withdraw' Return to characters Go to 'instance'