lockLocked

[AMXX] Flags & admin_level

person Yanderewolf12
schedule May 13, 2024
forum 0
visibility 277
May 13, 2024 at 11:29 AM
Original Post
#1
Member
View stats
32
Posts
15
Topics
0
Achievements
May 2024
Joined
Deoarece nu toata lumea cunoaste acest lucru am decis sa fac un topic pe aceasta tema.



Flagurile de baza se pot gasi si in users.ini default. Flagurile sunt urmatoarele:

abcdefghijklmnopqrstu si z   fiecare avand o functie:



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)

ADMIN_LEVEL le putem vedea mai usor cu programul de editare a sma-urilor Amx mod X studio sau in include file-ul amxconst , iar acestea sunt urmatoarele:

#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" */

 

 



nota: daca gasiti ceva scris gresit astept un mesaj si voi rezolva.

 

Join the Discussion

You need to be logged in to post a reply.

loginLogin to Reply