How do I add this for admins
#1

When an admin comments, it will add "Admin" to the start in the chatbox. Example: "Admin Thomas: Blah Blah" And the text will appear in pink.

I also want the admin player blip or color to be pink. Thanks !
Reply
#2

you mean Tag behind the name ?
Reply
#3

Yes just add "Admin" behind the name, and it all should appear in pink.
Reply
#4

Quote:
Originally Posted by Eminem 2ka9
Посмотреть сообщение
Yes just add "Admin" behind the name, and it all should appear in pink.
Like an command such as /admins?
Reply
#5

No I already have the /admins command. It should have "Admin" beside his name in the Chatbox.

If a player is admin level 1+ then "Admin" will appear beside his name. EXAMPLE: Admin<<This "Rafik" << Admin Name: Blah Blah.

So It should look like:

Admin Rafik: Blah Blah...
Reply
#6

This is just an example:

PHP код:
public OnPlayerText(playeridtext[])
{
    if(
PlayerInfo[playerid][pAdmin] >= 2)
    {
        new 
string[128];
        new 
name[MAX_PLAYER_NAME];
        
format(string,sizeof(string),"Admin %s: %s"name,text);
        
SendClientMessageToAll(GetPlayerColor(playerid), string);
        return 
0;
    }
    return 
1;

So you can create your own one.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)