Difference between revisions of "Role"

From King Arthur's Gold Wiki
Jump to: navigation, search
 
Line 7: Line 7:
 
'''3:''' Unsure, only test accounts seem to have this.  Probably should be treated as KAG staff (subject to change)<br>
 
'''3:''' Unsure, only test accounts seem to have this.  Probably should be treated as KAG staff (subject to change)<br>
 
'''4:''' KAG team member ("admin" level, more or less the same as type 1)<br>
 
'''4:''' KAG team member ("admin" level, more or less the same as type 1)<br>
'''5:''' Possibly a tester, but most testers are not currently flagged<br>
+
'''5:''' KAG tester <br>
  
 
As described above, roles 3 and 5 are not really used but may be used in the future.  If that happens, this page will be updated appropriately.
 
As described above, roles 3 and 5 are not really used but may be used in the future.  If that happens, this page will be updated appropriately.

Latest revision as of 19:58, 29 August 2012

Players have a 'role' associated with them. This role is used to differentiate between regular players, guards and administrators/KAG team members.

There are a few extra roles which aren't used very often, here are the major ones:
0: Normal player account
1: KAG dev/team member
2: KAG Guard
3: Unsure, only test accounts seem to have this. Probably should be treated as KAG staff (subject to change)
4: KAG team member ("admin" level, more or less the same as type 1)
5: KAG tester

As described above, roles 3 and 5 are not really used but may be used in the future. If that happens, this page will be updated appropriately.

Here is the enum used in the C++ APIClient::APIPlayer struct

	enum{
		role_user = 0,
		role_super = 1,
		role_police = 2,
		role_mod = 3,
		role_admin = 4,
		role_tester = 5
	};