User
Pass
2FA
 
 

Ajutor urgent!!!

 
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.    Freakz Forum Index -> Trash Bin -> CS 2006-2019 (Archived) -> Fixed issues
Author Message745
danutz98
[Banned user]


Banned


Status: Offline
(since 21-04-2015 10:40)
Joined: 31 Dec 2012
Posts: 138, Topics: 24
Location: Europe

Reputation: 355.1
Votes: 22

Post Posted: 18-01-2014, 11:38:43 | Translate post to: ... (Click for more languages)

Am si eu o problema... am facut gradele pt admin in amx generator etc... le-am copilat si salvat.. dar cand intru pe sv apar alte grade.
Uitati gradele facute de mine:
; Users configuration file
; File location: $moddir/addons/amxmodx/configs/users.ini

; Line starting with ; is a comment

; Access flags:
; 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)

; Account flags:
; a - disconnect player on invalid password
; b - clan tag
; c - this is steamid/wonid
; d - this is ip
; e - password is not checked (only name/ip/steamid needed)
; k - name or tag is case sensitive. eg: if you set it so the name "Ham"
; is protected and case sensitive (flags "k" only), then anybody
; can use the names "haM", "HAM", "ham", etc, but not "Ham"

; Password:
; Add to your autoexec.cfg: setinfo _pw "<password>"
; Change _pw to the value of amx_password_field

; Format of admin account:
; <name|ip|steamid> <password> <access flags> <account flags>

; Examples of admin accounts:
; "STEAM_0:0:123456" "" "abcdefghijklmnopqrstu" "ce"
; "123.45.67.89" "" "abcdefghijklmnopqrstu" "de"
; "My Name" "my_password" "abcdefghijklmnopqrstu" "a"

=============Lista admini=====================
==============================
OWNER - abcdefghijklmnopqrstu
==============================


==============================
CO-OWNER "abcdefghijklmnopqrst"
==============================

==============================
AMIRAL "bcdefghijklmnopqrt"
==============================

==============================
MARESAL "bcdefgijklmnopqrs"
==============================

==============================
GENERAL "bcdefgijlmnopqrt"
==============================

==============================
COLONEL "bcdefgijmnopqr"
==============================

==============================
MAIOR "bcdefgijmnop"
==============================

==============================
SERGENT "bcefijmn"
==============================

==============================
SOLDAT "bcefi"
==============================

==============================
SLOT "b"
==============================

==============================

Gradele care mi le arata pe sv sunt altele:
Detinator
Owner
God
Semi-God
Angel
Administrator
Moderator
Admin
Helper
V.I.P



Asa arata amx_who.sma facut pt gradele care le vreau eu: Owner Co-Owner Amiral Maresal General Colonel Maior Sergent Soldat si Slot


#include <amxmodx>
#include <amxmisc>
#define MAX_GROUPS 10
new g_groupNames[MAX_GROUPS][] = {
"Owner",
"Co-Owner",
"Amiral",
"Maresal",
"General",
"Colonel",
"Maior",
"Sergent",
"Soldat",
"Slot"
}
new g_groupFlags[MAX_GROUPS][] = {
"abcdefghijklmnopqrstu",
"abcdefghijklmnopqrst",
"bcdefghijklmnopqrt",
"bcdefgijklmnopqrs",
"bcdefgijlmnopqrt",
"bcdefgijmnopqr",
"bcdefgijmnop",
"bcefijmn",
"bcefi",
"b"
}
new g_groupFlagsValue[MAX_GROUPS];
public plugin_init() {
register_plugin("Lista admini (amx_who)", "1.0", "Krond Solutions SRL")
register_concmd("amx_who", "cmdWho", 0);
register_concmd("admin_who", "cmdWho", 0);
for(new i = 0; i < MAX_GROUPS; i++) {
g_groupFlagsValue[i] = read_flags(g_groupFlags[i])
}
}
public cmdWho(id) {
// Verificam daca userul este online, daca nu... ne oprim din executie
if(!is_user_connected(id)) { return PLUGIN_HANDLED; }
new players[32], inum, player, name[32], i, a;
get_players(players, inum);
console_print(id, "==============================");
for(i = 0; i < MAX_GROUPS; i++) {
console_print(id, "---------- [%d] %s ----------", i+1, g_groupNames[i])
for(a = 0; a < inum; ++a) {
player = players[a]
get_user_name(player, name, 31);
if(get_user_flags(player) == g_groupFlagsValue[i]) {
console_print(id, ">>> %s", name);
}
}
}
console_print(id, "==============================")
return PLUGIN_HANDLED
}



Ma puteti ajuta cumva... deoarece vreau sa apara gradele cum trb la /who si /admin -

0 0
  
Back to top
View user's profile Send private message
Cosm1n1996

[Mentally Stable]



Status: Offline
(since 27-02-2014 21:12)
Joined: 26 Dec 2013
Posts: 121, Topics: 32
Location: Romania

Reputation: 49.4
Votes: 2

Post Posted: 18-01-2014, 13:18:55 | Translate post to: ... (Click for more languages)

revin cu edit cu un plugin /admin cu gradele dorite

EDIT: http://www.girlshare.ro/33177874.4


_____________________________________________
Fac scripturi html dupa preferinte.Lasati PM cu datele
0 0
  
Back to top
View user's profile Send private message
danutz98
[Banned user]


Banned


Status: Offline
(since 21-04-2015 10:40)
Joined: 31 Dec 2012
Posts: 138, Topics: 24
Location: Europe

Reputation: 355.1
Votes: 22

Post Posted: 18-01-2014, 16:03:13 | Translate post to: ... (Click for more languages)

Multumesc foarte multe . Puteti da T/C
0 0
  
Back to top
View user's profile Send private message

  Topic locked


Topic is closed, you cannot post any messages in it anymore

Locked by Happy =]], 18 January 2014 16:13



 
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.    Freakz Forum Index -> Trash Bin -> CS 2006-2019 (Archived) -> Fixed issues  


The time now is 14-12-2024, 12:50:13
Copyright info

Based on phpBB ro/com
B

 
 
 







I forgot my password


This message appears only once, so
like us now until it's too late ! :D
x