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

Admin Tag+Chat Colors !


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
WTF109
Junior Member
Join Date: Apr 2020
Old 04-04-2020 , 14:42   Admin Tag+Chat Colors !
Reply With Quote #1

Hi, I also need a plugin for the graders on the colored server. This plugin I want to be like this one https://prnt.sc/rt1ixa.

I want to contain the following :

Founder - ADMFLAG_ROOT
Owener - ADMFLAG_UNBAN
Mod+Vip - ADMFLAG_CUSTOM4
Mod - ADMFLAG_CUSTOM3
Admin+Vip - ADMFLAG_CUSTOM2
Admin - ADMFLAG_BAN
Helper+Vip - ADMFLAG_CUSTOM1
Helper - ADMFLAG_GENERIC
Vip - ADMFLAG_CUSTOM6


In chat there should be something like this: \x01★ \x06[\x04Helper+VIP\x06]\x02 WTF109 : ex... [Helper+VIP] WTF109 : alliedmods
and in the tab there should be something like this: CS_SetClientClanTag(client, "★ Helper+VIP ★ ")

and with the help of orders !namecolors & !chatcolors have only VIP access only (ADMFLAG_CUSTOM6 )

and when connecting a VIP to the server it will appear in chat like this: https://forums.alliedmods.net/attach...9&d=1478087903

Last edited by Sillium; 04-23-2020 at 01:04. Reason: Restore to previous version.
WTF109 is offline
Notifications
AlliedModders Donor
Join Date: Oct 2015
Old 04-04-2020 , 17:10   Re: Admin Tag+Chat Colors !
Reply With Quote #2

https://forums.alliedmods.net/showthread.php?t=303671
Just use this.
Notifications is offline
WTF109
Junior Member
Join Date: Apr 2020
Old 04-04-2020 , 17:17   Re: Admin Tag+Chat Colors !
Reply With Quote #3

Quote:
Originally Posted by Notifications View Post
That's not what I wanted ... I found a post on this forum with a similar plugin just because it doesn't work, the tags don't work ...

Last edited by WTF109; 04-04-2020 at 17:18.
WTF109 is offline
Sajmooooon
Senior Member
Join Date: Nov 2018
Location: Slovakia
Old 04-04-2020 , 18:37   Re: Admin Tag+Chat Colors !
Reply With Quote #4

Use zephyrus store, you could easily add tags and it inlcudes chat and name color.
Sajmooooon is offline
WTF109
Junior Member
Join Date: Apr 2020
Old 04-05-2020 , 08:19   Re: Admin Tag+Chat Colors !
Reply With Quote #5

Quote:
Originally Posted by Sajmooooon View Post
Use zephyrus store, you could easily add tags and it inlcudes chat and name color.
I don't want to use those plugins. I want to be what I asked for if you can in one! thank you in advance
WTF109 is offline
Zexd
New Member
Join Date: Apr 2020
Old 04-05-2020 , 16:01   Re: Admin Tag+Chat Colors !
Reply With Quote #6

I made a plugin like that, also my plugin add the tag to scoreboard!
PM me for more info.
Zexd is offline
WTF109
Junior Member
Join Date: Apr 2020
Old 04-07-2020 , 09:45   Re: Admin Tag+Chat Colors !
Reply With Quote #7

I found this but don t work the tag on scoreboard . .... can anyone help me solve this?


PHP Code:
#include <chat-processor>
#include <cstrike>

#pragma newdecls required

#define MAX_MESSAGE_LENGTH 250

Database g_hDatabase;

Menu g_mColorsMenug_mNameMenu;

char g_szSteamID[MAXPLAYERS+1][32];

public 
Plugin myinfo = { 
  
name "[CSGO] Chat/Scoreboard Tags with change colors"
  
author "R3TROATTACK"
  
description ""
  
version "1.2",
  
url "" 
};

char g_sColorNames[][] =  {
    
"Default"
    
"Darkred"
    
"Green"
    
"Team Color"
    
"Olive"
    
"Lime"
    
"Red"
    
"Grey"
    
"Yellow"
    
"Gold"
    
"Silver"
    
"Blue"
    
"Darkblue"
    
"Bluegrey"
    
"Magenta"
    
"Lightred"
};
char g_sColorCodes[][] =  {
    
"\x01"
    
"\x02"
    
"\x04"
    
"\x03"
    
"\x05"
    
"\x06"
    
"\x07"
    
"\x08"
    
"\x09"
    
"\x10"
    
"\x0A"
    
"\x0B"
    
"\x0C"
    
"\x0D"
    
"\x0E"
    
"\x0F"
};

enum ChatData {
    
Chat
    
Name,
    
String:ChatHex[16],
    
String:NameHex[128],
    
String:Tag[128]
};

int g_iPlayerInfo[MAXPLAYERS 1][ChatData];
bool g_bLate false;

public 
APLRes AskPluginLoad2(Handle myselfbool latechar[] errint len)
{
    
g_bLate late;
}

public 
void OnPluginStart()
{    
    
DB_Load();
    
RegAdminCmd("sm_chatcolors"Command_ColorsADMFLAG_CUSTOM6);
    
RegAdminCmd("sm_namecolors"Command_NameColorsADMFLAG_CUSTOM6);
    
    if (
g_bLate)
    {
        for (
int i 1<= MaxClientsi++)
        if (
IsClientInGame(i))
            
OnClientPostAdminCheck(i);
    }
}

public 
Action Command_Colors(int clientint args)
{
    if (
>= client MaxClients)
        return 
Plugin_Handled;
    
    if (!
IsClientInGame(client))
        return 
Plugin_Handled;
    
    
g_mColorsMenu.Display(clientMENU_TIME_FOREVER);
    return 
Plugin_Handled;
}

public 
Action Command_NameColors(int clientint args)
{
    if (
>= client MaxClients)
        return 
Plugin_Handled;
    
    if (!
IsClientInGame(client))
        return 
Plugin_Handled;
    
    
g_mNameMenu.Display(clientMENU_TIME_FOREVER);
    return 
Plugin_Handled;
}

public 
void OnClientPostAdminCheck(int client)
{
    
g_iPlayerInfo[client][Chat] = 0;
    
g_iPlayerInfo[client][Name] = 3;
    
CreateTimer(1.5Timer_LoadDelayGetClientUserId(client), TIMER_FLAG_NO_MAPCHANGE);
    
GetClientAuthId(clientAuthId_Steam2g_szSteamID[client], sizeof(g_szSteamID[]))
}

public 
Action Timer_LoadDelay(Handle timerany userid)
{
    
int client GetClientOfUserId(userid);
    if (
client MaxClients && !IsClientInGame(client))
        return 
Plugin_Handled;
    
    
bool n CheckCommandAccess(client"sm_namecolors"ADMFLAG_CUSTOM6);
    
bool chat CheckCommandAccess(client"sm_chatcolors"ADMFLAG_CUSTOM6);
    if (!
&& !chat )
        return 
Plugin_Handled;
    
char sQuery[256], steamid[64];
    if (!
GetClientAuthId(clientAuthId_Steam2steamidsizeof(steamid)))
        return 
Plugin_Handled;
    
int count 0;
    if (
n) { count++; }
    if (
chat) { count++; }
    if (
count 1)
        
Format(sQuerysizeof(sQuery), "SELECT %s%s%s FROM customchat WHERE steamid='%s';""namecolor, " ""chat "chatcolor, " ""steamid);
    else
        
Format(sQuerysizeof(sQuery), "SELECT %s%s%s FROM customchat WHERE steamid='%s';""namecolor" ""chat "chatcolor" ""steamid);
    
g_hDatabase.Query(DB_LoadColorssQueryuserid);
    return 
Plugin_Handled;
}

public 
void DB_LoadColors(Database dbDBResultSet results, const char[] errorany data)
{
    if (
db == null || results == null)
    {
        
LogError("DB_LoadColors returned error: %s"error);
        return;
    }
    
    
int client GetClientOfUserId(data);
    if (
client MaxClients && !IsClientInGame(client))
        return;
    if(
results.RowCount <= 0)
        return;
    
int chatcolnamecol;
    
bool chat results.FieldNameToNum("chatcolor"chatcol);
    
bool name results.FieldNameToNum("namecolor"namecol);
    
results.FetchRow();
    
    if(
chat)
        
g_iPlayerInfo[client][Chat] = results.FetchInt(chatcol);
    if(
name)
        
g_iPlayerInfo[client][Name] = results.FetchInt(namecol);
}

void DB_Load()
{
    
Database.Connect(DB_Connect"chatcolors");
}

public 
void DB_Connect(Database db, const char[] errorany data)
{
    if (
db == null)
    {
        
LogError("DB_Connect returned invalid Database Handle");
        return;
    }
    
    
g_hDatabase db;
    
db.Query(DB_Generic"CREATE TABLE customchat (steamid varchar(64) NOT NULL, chatcolor INT DEFAULT 0, namecolor INT DEFAULT 4, tag varchar(64) DEFAULT NULL, PRIMARY KEY(steamid));");
}

public 
void DB_UpdateColors(int client)
{
    if (
g_hDatabase == null)
        return;
    
    
char sQuery[256], steamid[64];
    if (!
GetClientAuthId(clientAuthId_Steam2steamidsizeof(steamid)))
        return;
    
Format(sQuerysizeof(sQuery), "INSERT INTO customchat (steamid, chatcolor, namecolor, tag) VALUES ('%s', %d, %d, '%s') ON DUPLICATE KEY UPDATE chatcolor=VALUES(chatcolor), namecolor=VALUES(namecolor), tag=VALUES(tag);"steamidg_iPlayerInfo[client][Chat], g_iPlayerInfo[client][Name], g_iPlayerInfo[client][Tag]);
    
g_hDatabase.Query(DB_GenericsQuery);
}

public 
void DB_Generic(Database dbDBResultSet results, const char[] errorany data)
{
    if (
db == null || results == null)
    {
        
LogError("DB_Generic returned error: %s"error);
        return;
    }
}

public 
void OnMapStart()
{
    
Menu menu = new Menu(MenuHandler_ChatColor);
    
menu.SetTitle("Select your chat color!");
    for (
int i 0sizeof(g_sColorNames); i++)
    {
        
char info[16];
        
IntToString(iinfosizeof(info));
        
menu.AddItem(infog_sColorNames[i]);
    }
    
menu.ExitButton true;
    
g_mColorsMenu menu;
    
    
Menu menu2 = new Menu(MenuHandler_NameColor);
    
menu2.SetTitle("Select your name color!");
    for (
int i 0sizeof(g_sColorNames); i++)
    {
        
char info[16];
        
IntToString(iinfosizeof(info));
        
menu2.AddItem(infog_sColorNames[i]);
    }
    
menu2.ExitButton true;
    
g_mNameMenu menu2;
}

public 
void OnMapEnd()
{
    
CloseMenu(g_mColorsMenu);
    
CloseMenu(g_mNameMenu);
}

stock void CloseMenu(Menumenu)
{
    if(
menu != null)
    {
        
CloseHandle(menu);
    }
    
menu null;
}

public 
int MenuHandler_ChatColor(Menu menuMenuAction actionint clientint choice)
{
    if (
action != MenuAction_Select)
        return;
    
PrintToChat(client"\x01★ \x04[EVICT] \x01Ti-ai setat culoarea la Chat in %s%s\x01."g_sColorCodes[choice], g_sColorNames[choice]);
    
g_iPlayerInfo[client][Chat] = choice;
    
DB_UpdateColors(client);
}

public 
int MenuHandler_NameColor(Menu menuMenuAction actionint clientint choice)
{
    if (
action != MenuAction_Select)
        return;
    
PrintToChat(client"\x01★ \x04[EVICT] \x01Ti-ai setat culoarea la Nume in %s%s\x01."g_sColorCodes[choice], g_sColorNames[choice]);
    
g_iPlayerInfo[client][Name] = choice;
    
DB_UpdateColors(client);
}

public 
Action OnChatMessage(int authorHandle recipientschar[] namechar[] message)
{
    
bool n CheckCommandAccess(author"sm_namecolors"ADMFLAG_CUSTOM6);
    
bool chat CheckCommandAccess(author"sm_chatcolors"ADMFLAG_CUSTOM6);
    if (!
&& !chat )
        return 
Plugin_Continue;
    
    
char ctag[32];
    
bool changed;
    
bool needspace false;
    if (
chat)
    {
        if (
g_iPlayerInfo[author][Chat] != 0)
        {
            
Format(messageMAX_MESSAGE_LENGTH"%s%s"g_sColorCodes[g_iPlayerInfo[author][Chat]], message);
            
changed true;
        }
        if (
CheckCommandAccess(author"sm_colors_parse"ADMFLAG_CUSTOM6))
            
ProcessColors(messageMAX_MESSAGE_LENGTH);
    }
    
    if (
n)
    {
        if (
g_iPlayerInfo[author][Name] != 3)
        {
            
Format(nameMAX_NAME_LENGTH" %s%s"g_sColorCodes[g_iPlayerInfo[author][Name]], name);
            
changed true;
            
needspace true;
        }
    }


    
Format(nameMAX_NAME_LENGTH"%s%s%s"needspace " " ""ctagname);
    
    if (
changed)
        return 
Plugin_Changed;
    return 
Plugin_Continue;
}

void ProcessColors(char[] bufferint maxlen)
{
    for (
int i 1sizeof(g_sColorNames); i++)
    {
        
char tmp[32];
        
Format(tmpsizeof(tmp), "{%s}"g_sColorNames[i]);
        
ReplaceString(buffermaxlentmpg_sColorCodes[i]);
    }


public 
Action GiveTag(Handle timerany userid

    
int client GetClientOfUserId(userid
     
    if(
client && IsClientInGame(client)) 
    { 
        
char szSteamID[32
        
GetClientAuthId(clientAuthId_Steam2szSteamIDsizeof(szSteamID)) 
         
        if(
GetUserFlagBits(client) & ADMFLAG_ROOT
        { 
            
CS_SetClientClanTag(client"★ Founder ★ "
        } 
        else if(
GetUserFlagBits(client) & ADMFLAG_UNBAN)  
        { 
            
CS_SetClientClanTag(client"★ Owner ★ "
        } 
        else if(
GetUserFlagBits(client) & ADMFLAG_CUSTOM4
        { 
            
CS_SetClientClanTag(client"★ Mod+VIP ★ "
        } 
        else if(
GetUserFlagBits(client) & ADMFLAG_CUSTOM3
        { 
            
CS_SetClientClanTag(client"★ Mod ★ "
        } 
        else if(
GetUserFlagBits(client) & ADMFLAG_CUSTOM2
        { 
            
CS_SetClientClanTag(client"★ Admin+VIP ★ "
        } 
        else if(
GetUserFlagBits(client) & ADMFLAG_BAN
        { 
            
CS_SetClientClanTag(client"★ Admin ★ "
        } 
        else if(
GetUserFlagBits(client) & ADMFLAG_CUSTOM1
        { 
            
CS_SetClientClanTag(client"★ Helper+VIP ★ "
        } 
        else if(
GetUserFlagBits(client) & ADMFLAG_GENERIC
        { 
            
CS_SetClientClanTag(client"★ Helper ★ "
        } 
        else if(
GetUserFlagBits(client) & ADMFLAG_CUSTOM6
        { 
            
CS_SetClientClanTag(client"★ VIP ★ "
        } 
         
        if(
StrEqual(szSteamID"STEAM_1:0:1234")) 
        { 
            
CS_SetClientClanTag(client"CLAN TAG"
        } 
    } 
}  

public 
void OnClientDisconnect(int iClient) {
  
g_szSteamID[iClient][0] = '\0';
}

public 
Action CP_OnChatMessage(intiAuthorArrayList hRecipientschar[] szFlagStringchar[] szNamechar[] szMessageboolbProcessColorsboolbRemoveColors) {
    if (
StrEqual(g_szSteamID[iAuthor], "STEAM_1:0:102123053")) {
        
Format(szNameMAXLENGTH_NAME"\x01★ \x06[\x10The Beast\x06] %s%s"g_sColorCodes[g_iPlayerInfo[iAuthor][Name]], szName);
        
Format(szMessageMAX_MESSAGE_LENGTH"%s%s"g_sColorCodes[g_iPlayerInfo[iAuthor][Chat]], szMessage);
        return 
Plugin_Changed;
    }

    if (
StrEqual(g_szSteamID[iAuthor], "STEAM_1:0:186515754")) {
        
Format(szNameMAXLENGTH_NAME"\x01★ \x06[\x0BThe Pimp\x06] %s%s"g_sColorCodes[g_iPlayerInfo[iAuthor][Name]], szName);
        
Format(szMessageMAX_MESSAGE_LENGTH"%s%s"g_sColorCodes[g_iPlayerInfo[iAuthor][Chat]], szMessage);
        return 
Plugin_Changed;
    }

    if (
StrEqual(g_szSteamID[iAuthor], "STEAM_1:1:448538146")) {
        
Format(szNameMAXLENGTH_NAME"\x01★ \x06[\x05Nasu Mare\x06] %s%s"g_sColorCodes[g_iPlayerInfo[iAuthor][Name]], szName);
        
Format(szMessageMAX_MESSAGE_LENGTH"%s%s"g_sColorCodes[g_iPlayerInfo[iAuthor][Chat]], szMessage);
        return 
Plugin_Changed;
    }

    
int iFlagBits GetUserFlagBits(iAuthor);

    if (
iFlagBits ADMFLAG_ROOT) {
        
Format(szNameMAXLENGTH_NAME"\x01★ \x06[\x04Founder\x06] %s%s"g_sColorCodes[g_iPlayerInfo[iAuthor][Name]], szName);
        
Format(szMessageMAX_MESSAGE_LENGTH"%s%s"g_sColorCodes[g_iPlayerInfo[iAuthor][Chat]], szMessage);
    }    
    else if (
iFlagBits ADMFLAG_CUSTOM5) {
        
Format(szNameMAXLENGTH_NAME"\x01★ \x06[\x02You\x01Tuber\x06] %s%s"g_sColorCodes[g_iPlayerInfo[iAuthor][Name]], szName);
        
Format(szMessageMAX_MESSAGE_LENGTH"%s%s"g_sColorCodes[g_iPlayerInfo[iAuthor][Chat]], szMessage);
    }    
    else if (
iFlagBits ADMFLAG_UNBAN) {
        
Format(szNameMAXLENGTH_NAME"\x01★ \x06[\x04Owner\x06] %s%s"g_sColorCodes[g_iPlayerInfo[iAuthor][Name]], szName);
        
Format(szMessageMAX_MESSAGE_LENGTH"%s%s"g_sColorCodes[g_iPlayerInfo[iAuthor][Chat]], szMessage);
    }    
    else if (
iFlagBits ADMFLAG_CUSTOM4) {
        
Format(szNameMAXLENGTH_NAME"\x01★ \x06[\x04Mod+VIP\x06] %s%s"g_sColorCodes[g_iPlayerInfo[iAuthor][Name]], szName);
        
Format(szMessageMAX_MESSAGE_LENGTH"%s%s"g_sColorCodes[g_iPlayerInfo[iAuthor][Chat]], szMessage);
    }    
    else if (
iFlagBits ADMFLAG_CUSTOM3) {
        
Format(szNameMAXLENGTH_NAME"\x01★ \x06[\x04Mod\x06] %s%s"g_sColorCodes[g_iPlayerInfo[iAuthor][Name]], szName);
        
Format(szMessageMAX_MESSAGE_LENGTH"%s%s"g_sColorCodes[g_iPlayerInfo[iAuthor][Chat]], szMessage);
    }    
    else if (
iFlagBits ADMFLAG_CUSTOM2) {
        
Format(szNameMAXLENGTH_NAME"\x01★ \x06[\x04Admin+VIP\x06] %s%s"g_sColorCodes[g_iPlayerInfo[iAuthor][Name]], szName);
        
Format(szMessageMAX_MESSAGE_LENGTH"%s%s"g_sColorCodes[g_iPlayerInfo[iAuthor][Chat]], szMessage);
    }    
    else if (
iFlagBits ADMFLAG_BAN) {
        
Format(szNameMAXLENGTH_NAME"\x01★ \x06[\x04Admin\x06] %s%s"g_sColorCodes[g_iPlayerInfo[iAuthor][Name]], szName);
        
Format(szMessageMAX_MESSAGE_LENGTH"%s%s"g_sColorCodes[g_iPlayerInfo[iAuthor][Chat]], szMessage);
    }    
    else if (
iFlagBits ADMFLAG_CUSTOM1) {
        
Format(szNameMAXLENGTH_NAME"\x01★ \x06[\x04Helper+VIP\x06] %s%s"g_sColorCodes[g_iPlayerInfo[iAuthor][Name]], szName);
        
Format(szMessageMAX_MESSAGE_LENGTH"%s%s"g_sColorCodes[g_iPlayerInfo[iAuthor][Chat]], szMessage);
    }    
    else if (
iFlagBits ADMFLAG_GENERIC) {
        
Format(szNameMAXLENGTH_NAME"\x01★ \x06[\x04Helper\x06] %s%s"g_sColorCodes[g_iPlayerInfo[iAuthor][Name]], szName);
        
Format(szMessageMAX_MESSAGE_LENGTH"%s%s"g_sColorCodes[g_iPlayerInfo[iAuthor][Chat]], szMessage);
    }    
    else if (
iFlagBits ADMFLAG_CUSTOM6) {
        
Format(szNameMAXLENGTH_NAME"\x01★ \x06[\x02V\x03I\x04P\x06] %s%s"g_sColorCodes[g_iPlayerInfo[iAuthor][Name]], szName);
        
Format(szMessageMAX_MESSAGE_LENGTH"%s%s"g_sColorCodes[g_iPlayerInfo[iAuthor][Chat]], szMessage);
    }

    return 
Plugin_Changed

I found this but don t work the tag on scoreboard . .... can anyone help me solve this?

Last edited by WTF109; 04-07-2020 at 09:48.
WTF109 is offline
DragosVI
Junior Member
Join Date: May 2019
Location: Romania
Old 04-09-2020 , 08:32   Re: Admin Tag+Chat Colors !
Reply With Quote #8

Code:
#include <sourcemod>
#include <sdktools>
#include <cstrike>
 
#pragma newdecls required
 
public Plugin myinfo =
{
    name = "Show admins online",
    author = "DragosVI",
    description = "Show admins online",
    version = "1.0",
    url = ""
};
 
public void OnPluginStart()
{
    RegConsoleCmd("sm_admins", Command_Admins);
}
 
public Action Command_Admins(int client, int args)
{
    char founders[512] = "★\x04Fondatori:\x01";
    char owners[512] = "★\x04Owneri:\x01";
    char mods[512] = "★\x04Moderatori:\x01";
    char admins[512] = "★\x04Adminstratori:\x01";
    char helpers[512] = "★\x04Helperi:\x01";
 
    bool founderFound = false, ownerFound = false, modFound = false, adminFound = false, helperFound = false;
   
    for (int i = 1; i <= MaxClients; i++)
    {
        if (IsClientInGame(i))
        {
            if (CheckCommandAccess(i, "", ADMFLAG_ROOT, true))
            {
                founderFound = true;
                Format(founders, sizeof(founders), "%s %N,", founders, i);
            }
           
            else if (CheckCommandAccess(i, "", ADMFLAG_UNBAN, true))
            {
                ownerFound = true;
                Format(owners, sizeof(owners), "%s %N,", owners, i);
            }
           
            else if (CheckCommandAccess(i, "", ADMFLAG_CHANGEMAP, true))
            {
                modFound = true;
                Format(mods, sizeof(mods), "%s %N,", mods, i);
            }
           
            else if (CheckCommandAccess(i, "", ADMFLAG_BAN, true))
            {
                adminFound = true;
                Format(admins, sizeof(admins), "%s %N,", admins, i);
            }
           
            else if (CheckCommandAccess(i, "", ADMFLAG_GENERIC, true))
            {
                helperFound = true;
                Format(helpers, sizeof(helpers), "%s %N,", helpers, i);
            }
        }
    }
   
    if (founderFound)
    {
        founders[strlen(founders)] = 0;
        PrintToChat(client, founders);
    }
    else
    {
        PrintToChat(client, "★\x04Fondatori: \x01Niciun \x03FONDATOR \x01online");
    }
   
    if (ownerFound)
    {
        founders[strlen(owners)] = 0;
        PrintToChat(client, owners);
    }
    else
    {
        PrintToChat(client, "★\x04Owneri: \x01Niciun \x03OWNER \x01online");
    }
   
    if (modFound)
    {
        founders[strlen(mods)] = 0;
        PrintToChat(client, mods);
    }
    else
    {
        PrintToChat(client, "★\x04Moderatori:\x01 Niciun \x03MODERATOR \x01online");
    }
   
    if (adminFound)
    {
        founders[strlen(admins)] = 0;
        PrintToChat(client, admins);
    }
    else
    {
        PrintToChat(client, "★\x04Administratori: \x01Niciun \x03ADMINISTRATOR \x01online");
    }
   
    if (helperFound)
    {
        founders[strlen(helpers)] = 0;
        PrintToChat(client, helpers);
    }
    else
    {
        PrintToChat(client, "★\x04Helperi: \x01Niciun \x03HELPER \x01online");
    }
   
    return Plugin_Handled;
}
Asta-i plugin-ul ,l-am facut acum.Tu daca vrei urmezi exemplul si ti pui si vip sau ce mai vrei tu.

Last edited by Sillium; 04-23-2020 at 01:08. Reason: Added code tags
DragosVI 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 07:31.


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