User
Pass
2FA
 
 

[rezolvat]amx_who

 
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) -> Counter-Strike: Help zone
Author Message785
pavelescu98

[dead.Andrei]



Status: Offline
(since 22-01-2018 21:28)
Joined: 18 Jan 2015
Posts: 848, Topics: 132
Location: Nicaieri...Dar acasa.

Reputation: 6.2
Votes: 47

 
Post Posted: 07-04-2015, 13:47:01 | Translate post to: ... (Click for more languages)

Am o problema la amx_who gand scriu imi apare asa:
Code:

Clients on server:
 #  nick             authid               userid   imm  res  access
 1  dead.Andrei      STEAM_0:0:1865314129 1088     Yes    Yes    abcdefghijklmnopqrstu
 2  bLacK[xH]        STEAM_0:0:1278148950 1087     No     Yes    bceij
 3  <Ms> Player      STEAM_0:0:2097921665 1089     No     No     z
 4  Razvy            STEAM_0:0:1237147826 1093     No     No     z


Nu inteleg de ce nu apare gradele asa
Code:
"Manager"
dead.Andrei
"Owner"
"co-Owner"
"God"
"Semi-God"
"Moderator"
"Adminstrator"
"Helper"
"V.I.P."
"Slot"




"Fotbalul nu iti place. Il iubesti, il traiesti, il respiri, e parte din tine." Gabi Balint

0 0
  
Back to top
View user's profile Send private message
-P!C@-

[Simply Normal]



Status: Offline
(since 21-04-2022 19:07)
Joined: 28 May 2012
Posts: 21086, Topics: 1601
Location: Constanta

Reputation: 1870.3
Votes: 781

Post Posted: 07-04-2015, 13:58:44 | Translate post to: ... (Click for more languages)

Pune pluginul asta: http://www.girlshare.ro/34642997.4



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

[dead.Andrei]



Status: Offline
(since 22-01-2018 21:28)
Joined: 18 Jan 2015
Posts: 848, Topics: 132
Location: Nicaieri...Dar acasa.

Reputation: 6.2
Votes: 47

 
Post Posted: 07-04-2015, 14:08:53 | Translate post to: ... (Click for more languages)

L-am pus, dar nu merge...



"Fotbalul nu iti place. Il iubesti, il traiesti, il respiri, e parte din tine." Gabi Balint

0 0
  
Back to top
View user's profile Send private message
-P!C@-

[Simply Normal]



Status: Offline
(since 21-04-2022 19:07)
Joined: 28 May 2012
Posts: 21086, Topics: 1601
Location: Constanta

Reputation: 1870.3
Votes: 781

Post Posted: 07-04-2015, 14:10:47 | Translate post to: ... (Click for more languages)

Lasa-mi ce grade vrei sa ai pe server + flags si iti fac amx_Who.



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

[dead.Andrei]



Status: Offline
(since 22-01-2018 21:28)
Joined: 18 Jan 2015
Posts: 848, Topics: 132
Location: Nicaieri...Dar acasa.

Reputation: 6.2
Votes: 47

 
Post Posted: 07-04-2015, 14:15:20 | Translate post to: ... (Click for more languages)

Code:
#include <amxmodx>
#include <amxmisc>
#define MAX_GROUPS 10
new g_groupNames[MAX_GROUPS][] = {
"Manager",
"Owner",
"co-Owner",
"God",
"Semi-God",
"Moderator",
"Adminstrator",
"Helper",
"V.I.P.",
"Slot"
}
new g_groupFlags[MAX_GROUPS][] = {
"abcdefghijklmnopqrstu",
"abcdefghijmnopqrst",
"bcdefghijmnopqs",
"bcdefghijmnop",
"bcdefhijmno",
"bcdefijm",
"bcdefij",
"bceij",
"abr",
"b"
}
new g_groupFlagsValue[MAX_GROUPS]
public plugin_init() {
register_plugin("Amx Who", "1.0", "autor necunoscut")
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) {
new players[32], inum, player, name[32], i, a
get_players(players, inum)
console_print(id, "Comunitatea Freakz")
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, "Comunitatea Freakz")
return PLUGIN_HANDLED
}


Uite .sma de la plugin.... Acelea sunt gradele.




"Fotbalul nu iti place. Il iubesti, il traiesti, il respiri, e parte din tine." Gabi Balint

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

[DEV]



Status: Offline
(since 12-03-2020 22:13)
Joined: 24 May 2014
Posts: 4042, Topics: 119
Location: ---------

Reputation: 515.9
Votes: 118

   
Post Posted: 07-04-2015, 14:36:40 | Translate post to: ... (Click for more languages)

Poftim modifica in asta al tau arata doar in consola.
Spoiler:

Daca nu te descurci iti pun eu gradele.



Retired from Amxmodx

0 0
  
Back to top
View user's profile Send private message
-P!C@-

[Simply Normal]



Status: Offline
(since 21-04-2022 19:07)
Joined: 28 May 2012
Posts: 21086, Topics: 1601
Location: Constanta

Reputation: 1870.3
Votes: 781

Post Posted: 07-04-2015, 14:42:28 | Translate post to: ... (Click for more languages)

Poftim amx_who: http://www.girlshare.ro/34643112.9



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

[Pred.FreakZ.Ro]



Status: Offline
(since 21-10-2022 22:41)
Joined: 31 Mar 2015
Posts: 1297, Topics: 53
Location: Arad

Reputation: 365.1
Votes: 24

      Battletag: postrow.ID_BATTLE_NET} 
Post Posted: 07-04-2015, 15:05:38 | Translate post to: ... (Click for more languages)

Pune pluginul primul in lista din plugins.ini (deasupra de toate).
0 0
  
Back to top
View user's profile Send private message
pavelescu98

[dead.Andrei]



Status: Offline
(since 22-01-2018 21:28)
Joined: 18 Jan 2015
Posts: 848, Topics: 132
Location: Nicaieri...Dar acasa.

Reputation: 6.2
Votes: 47

 
Post Posted: 07-04-2015, 15:17:12 | Translate post to: ... (Click for more languages)

O sa le incerc, va anunt daca apare vreo problema sau daca merge.



"Fotbalul nu iti place. Il iubesti, il traiesti, il respiri, e parte din tine." Gabi Balint

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

[dead.Andrei]



Status: Offline
(since 22-01-2018 21:28)
Joined: 18 Jan 2015
Posts: 848, Topics: 132
Location: Nicaieri...Dar acasa.

Reputation: 6.2
Votes: 47

 
Post Posted: 07-04-2015, 17:11:32 | Translate post to: ... (Click for more languages)

Rezolvat T/C.



"Fotbalul nu iti place. Il iubesti, il traiesti, il respiri, e parte din tine." Gabi Balint

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 -P!C@-, 07 April 2015 15:18



 
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) -> Counter-Strike: Help zone  


The time now is 11-01-2025, 05:35:20
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