Raised This Month: $51 Target: $400
 12% 

[Help] admin flags


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
Mikaeel123
Senior Member
Join Date: Oct 2018
Old 02-14-2019 , 05:21   [Help] admin flags
Reply With Quote #1

Hi all . i need a codes for admins flags

a = ??
b = ??
c = ADMIN_KICK _ ADMIN_SLAY
d = ???
.
.
.
.
Mikaeel123 is offline
eat1k
Senior Member
Join Date: Apr 2018
Old 02-14-2019 , 05:29   Re: [Help] admin flags
Reply With Quote #2

Open amxconst.inc.
__________________
eat1k is offline
Mikaeel123
Senior Member
Join Date: Oct 2018
Old 02-14-2019 , 06:00   Re: [Help] admin flags
Reply With Quote #3

Ty very much :X
Mikaeel123 is offline
iceeedr
Veteran Member
Join Date: Apr 2017
Location: Brazil
Old 02-14-2019 , 07:01   Re: [Help] admin flags
Reply With Quote #4

Code:
Access Flag 	Purpose
a 	immunity (can't be kicked/baned/slayed/slaped and affected by other commmands)
b 	reservation (can join on reserved slots)
c 	amx_kick command
d 	amx_ban and amx_unban commands
e 	amx_slay and amx_slap commands
f 	amx_map command
g 	amx_cvar command (not all cvars will be available)
h 	amx_cfg command
i 	amx_chat and other chat commands
j 	amx_vote and other vote commands
k 	access to sv_password cvar (by amx_cvar command)
l 	access to amx_rcon command and rcon_password cvar (by amx_cvar command)
m 	custom level A (for additional plugins)
n 	custom level B
o 	custom level C
p 	custom level D
q 	custom level E
r 	custom level F
s 	custom level G
t 	custom level H
u 	menu access
z 	user (no admin)
https://wiki.alliedmods.net/Adding_Admins_(AMX_Mod_X)
__________________


Quote:
Originally Posted by fysiks View Post
Please stop trying to help. You appear to just be posting random stuff. Wait until you actually understand more about AMX Mod X and how the game works.
https://iceeedr.com.br/
iceeedr is offline
Send a message via Skype™ to iceeedr
Vaim
Member
Join Date: Feb 2019
Old 02-15-2019 , 08:03   Re: [Help] admin flags
Reply With Quote #5

Quote:
Originally Posted by Mikaeel123 View Post
Hi all . i need a codes for admins flags

a = ??
b = ??
c = ADMIN_KICK _ ADMIN_SLAY
d = ???
.
.
.
.
Code:
#define ADMIN_ALL      0   /* everyone */
#define ADMIN_IMMUNITY      (1<<0)   /* flag "a" */
#define ADMIN_RESERVATION   (1<<1)   /* flag "b" */
#define ADMIN_KICK      (1<<2)   /* flag "c" */
#define ADMIN_BAN      (1<<3)   /* flag "d" */
#define ADMIN_SLAY      (1<<4)   /* flag "e" */
#define ADMIN_MAP      (1<<5)   /* flag "f" */
#define ADMIN_CVAR      (1<<6)   /* flag "g" */
#define ADMIN_CFG      (1<<7)   /* flag "h" */
#define ADMIN_CHAT      (1<<8)   /* flag "i" */
#define ADMIN_VOTE      (1<<9)   /* flag "j" */
#define ADMIN_PASSWORD      (1<<10)   /* flag "k" */
#define ADMIN_RCON      (1<<11)   /* flag "l" */
#define ADMIN_LEVEL_A      (1<<12)   /* flag "m" */
#define ADMIN_LEVEL_B      (1<<13)   /* flag "n" */
#define ADMIN_LEVEL_C      (1<<14)   /* flag "o" */
#define ADMIN_LEVEL_D      (1<<15)   /* flag "p" */
#define ADMIN_LEVEL_E      (1<<16)   /* flag "q" */
#define ADMIN_LEVEL_F      (1<<17)   /* flag "r" */
#define ADMIN_LEVEL_G      (1<<18)   /* flag "s" */
#define ADMIN_LEVEL_H      (1<<19)   /* flag "t" */
#define ADMIN_MENU      (1<<20)   /* flag "u" */
#define ADMIN_BAN_TEMP   (1<<21) /* flag "v" */
#define ADMIN_ADMIN      (1<<24)   /* flag "y" */
#define ADMIN_USER      (1<<25)   /* flag "z" */
Vaim is offline
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 09:09.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode