PDA

View Full Version : Guild Permissions..


Cans
10-16-2004, 01:22 PM
I was just browsing through some code and realized somethat that the 6.0 source had that was not matching up with live standards - the Guild Officer Permissions.

If you have guilds on your server that want to have officers able to do the normal things they can do on live:

in guilds.h replace the entire section from line 31 to line 41 with:
#define GUILD_MAX_RANK 2 // 0-2 - some places in the code assume a single digit, dont go above 9 (2 is leader)
#define GUILD_MEMBER 0

#define GUILD_HEAR 0
#define GUILD_SPEAK 1
#define GUILD_INVITE 1
#define GUILD_REMOVE 1
#define GUILD_PROMOTE 1
#define GUILD_DEMOTE 1
#define GUILD_MOTD 1
#define GUILD_WARPEACE 2

This will allow all officers (status 1) to be able to invite, remove, promote, demote, and set the MOTD in your guild (all things they can do on live).

Hope this fix helps some people :)

Alyuvsia
10-16-2004, 01:41 PM
Thanks Rythan, I wondered why I couldnt invite, etc...