cerere reconditionare plugin amx_who

Modificari necesare ale pluginurilor

Moderators: Moderatori ajutatori, Moderatori, Echipa eXtreamCS.com

Post Reply
vyrutz987
Membru, skill 0
Membru, skill 0
Posts: 7
Joined: 07 Jan 2019, 17:24
Detinator Steam: Nu
CS Status: Citesc forumul eXtreamCS.com...!
Fond eXtream: 0
Contact:

19 Feb 2019, 01:23

Nume plugin: amx_who
Descriere: incerc sa il compilez si imi tot apare o eroare ma poate ajuta cineva
Autor: vyrutz
Versiune:
Link oficial: https://www39.zippyshare.com/v/trP1iTzv/file.html

aici este pluginul sper sa fi postat unde trebuie .. va multumesc pentru ajutor daca se rezolva :smiley:
RoyalServer
User avatar
VLD00
Membru, skill +4
Membru, skill +4
Posts: 1941
Joined: 04 Aug 2013, 17:22
Detinator Steam: Nu
CS Status: Kboom !
Detinator server CS: Da
Reputatie: Fost moderator
Fost manager DR
Has thanked: 5 times
Been thanked: 1 time

19 Feb 2019, 07:32

Mutat in categoria corespunzatoare.
Inactiv o perioada nedeterminata
User avatar
Laurentiu P.
Fost moderator
Fost moderator
Posts: 2549
Joined: 10 Jul 2013, 21:26
Detinator Steam: Da
Reputatie: Fost super moderator
Fond eXtream: 100
Has thanked: 26 times
Been thanked: 62 times
Contact:

19 Feb 2019, 08:23

Posteaza sursa pe pastebin
no...
e931ff07
Membru, skill 0
Membru, skill 0
Posts: 34
Joined: 13 Jan 2019, 02:01
Detinator Steam: Nu
CS Status: Citesc forumul eXtreamCS.com...!
Fond eXtream: 0
Contact:

19 Feb 2019, 19:32

vyrutz987 wrote:Nume plugin: amx_who
Descriere: incerc sa il compilez si imi tot apare o eroare ma poate ajuta cineva
Autor: vyrutz
Versiune:
Link oficial: https://www39.zippyshare.com/v/trP1iTzv/file.html

aici este pluginul sper sa fi postat unde trebuie .. va multumesc pentru ajutor daca se rezolva :smiley:
| Afiseaza codul
.  #include <amxmodx>
#include <amxmisc>
#define MAX_GROUPS 11
new g_groupNames[MAX_GROUPS][] = {
".::###-[Detinator ACCES TOTAL]-###::.",
".::###-[Fondator]-###::.",
".::###-[Fondator FARA FTP]-###::.",
".::###-[Diamond + ADMIN]-###::.",
".::###-[Platinum + ADMIN]-###::.",
".::###-[Gold + ADMIN]-###::.",
".::###-[Adiministrator]-###::.",
".::###--###::.",
".::###-[Moderator]-###::.",
".::###-[Helper]-###::.",
".::###-[Slot]-###::."
 
}
new g_groupFlags[MAX_GROUPS][] = {
"abcdefghijklmnopqrstux",
"abcdefghijklmnopqrstu",
"abcdefghijkmnopqrstu",
"abcdefimnjpt",
"abcdefimnjprt",
"abcdefimnjpot",
"bcdefimnjp",
"bcdefimnj",
"bcdefimj",
"bceij",
"b"
 
}
new g_groupFlagsValue[MAX_GROUPS]
public plugin_init() {
register_plugin("Amx Who", "2.0", "iFenomenal")
register_concmd("amx_who", "cmdWho", 0)
for(new i = 0; i < MAX_GROUPS; i++) {
g_groupFlagsValue = read_flags(g_groupFlags)
}
}
public cmdWho(id) {
new players[32], inum, player, name[32], i, a
get_players(players, inum)
console_print(id, "Admini Online")
for(i = 0; i < MAX_GROUPS; i++) {
console_print(id, "=>>[%d]%s<<=", i+1, g_groupNames)
for(a = 0; a < inum; ++a) {
player = players[a]
get_user_name(player, name, 31)
if(get_user_flags(player) == g_groupFlagsValue) {
console_print(id, "%s", name)
}
}
}
console_print(id, "Admini Online")
return PLUGIN_HANDLED
}
poftim o poți modifica pe asta s-au zi accesele
User avatar
WHOAMI?
eXtream Mod
eXtream Mod
Posts: 999
Joined: 17 Dec 2013, 19:51
Detinator Steam: Da
Reputatie: eXtream Mod
Fost Membru Club eXtreamCS (o luna)
Location: US
Has thanked: 30 times
Been thanked: 20 times

19 Feb 2019, 20:39

:ok_hand_tone2:
| Afiseaza codul
#include <amxmodx>
#include <amxmisc>
#define MAX_GROUPS 11
new g_groupNames[MAX_GROUPS][] = {
".::###-[Detinator ACCES TOTAL]-###::.",
".::###-[Fondator]-###::.",
".::###-[Fondator FARA FTP]-###::.",
".::###-[Diamond + ADMIN]-###::.",
".::###-[Platinum + ADMIN]-###::.",
".::###-[Gold + ADMIN]-###::.",
".::###-[Adiministrator]-###::.",
".::###--###::.",
".::###-[Moderator]-###::.",
".::###-[Helper]-###::.",
".::###-[Slot]-###::."
 
}
new g_groupFlags[MAX_GROUPS][] = {
"abcdefghijklmnopqrstux",
"abcdefghijklmnopqrstu",
"abcdefghijkmnopqrstu",
"abcdefimnjpt",
"abcdefimnjprt",
"abcdefimnjpot",
"bcdefimnjp",
"bcdefimnj",
"bcdefimj",
"bceij",
"b"
 
}
new g_groupFlagsValue[MAX_GROUPS]
public plugin_init() {
register_plugin("Amx Who", "2.0", "iFenomenal")
register_concmd("amx_who", "cmdWho", 0)
for(new i = 0; i < MAX_GROUPS; i++) {
g_groupFlagsValue = read_flags(g_groupFlags)
}
}
public cmdWho(id) {
new players[32], inum, player, name[32], i, a
get_players(players, inum)
console_print(id, "Admini Online")
for(i = 0; i < MAX_GROUPS; i++) {
console_print(id, "=>>[%d]%s<<=", i+1, g_groupNames)
for(a = 0; a < inum; ++a) {
player = players[a]
get_user_name(player, name, 31)
if(get_user_flags(player) == g_groupFlagsValue) {
console_print(id, "%s", name)
}
}
}
console_print(id, "Admini Online")
return PLUGIN_HANDLED
}
vyrutz987
Membru, skill 0
Membru, skill 0
Posts: 7
Joined: 07 Jan 2019, 17:24
Detinator Steam: Nu
CS Status: Citesc forumul eXtreamCS.com...!
Fond eXtream: 0
Contact:

21 Feb 2019, 23:11

eu vroiam sa fie gradele care le-am pus eu :D ....
User avatar
Laurentiu P.
Fost moderator
Fost moderator
Posts: 2549
Joined: 10 Jul 2013, 21:26
Detinator Steam: Da
Reputatie: Fost super moderator
Fond eXtream: 100
Has thanked: 26 times
Been thanked: 62 times
Contact:

22 Feb 2019, 07:36

| Afiseaza codul
[code]#include <amxmodx>
#include <amxmisc>
#define MAX_GROUPS 9
new g_groupNames[MAX_GROUPS][] = {
"Detinatori",
"Fondator",
"Manager",
"Owner",
"Domnisoara",
"Administrator",
"Moderator",
"SLOT",
"V.I.P"
}
new g_groupFlags[MAX_GROUPS][] = {
"abcdefghijklmnopqrstu",
"abcdefghijklmnopqrst",
"abcdefghijklmnopqrs",
"abcdefhijklmnopqr",
"abcdefhijklmnopq",
"abcdefhijlmnop",
"abcdefhijmnop",
"ab",
"abt"
}
new g_groupFlagsValue[MAX_GROUPS]
public plugin_init() {
register_plugin("Amx Who", "2.0", "iFenomenal")
register_concmd("amx_who", "cmdWho", 0)
for(new i = 0; i < MAX_GROUPS; i++) {
g_groupFlagsValue = read_flags(g_groupFlags)
}
}
public cmdWho(id) {
new players[32], inum, player, name[32], i, a
get_players(players, inum)
console_print(id, "-------- STAFF ONLINE --------")
for(i = 0; i < MAX_GROUPS; i++) {
console_print(id, "#%d - Acces: %s", i+1, g_groupNames)
for(a = 0; a < inum; ++a) {
player = players[a]
get_user_name(player, name, 31)
if(get_user_flags(player) == g_groupFlagsValue) {
console_print(id, "%s", name)
}
}
}
console_print(id, "-------- STAFF ONLINE --------")
return PLUGIN_HANDLED
}[/code]
no...
Post Reply

Return to “Modificari pluginuri”

  • Information
  • Who is online

    Users browsing this forum: No registered users and 14 guests