Admin Chat
#1

I need little help in my admin chat

pawn Код:
stock SendMessageToAdmins(text[])
{
    for(new i = 0; i < MAX_PLAYERS; i++)
    {
        if(IsPlayerAdmin(i))
        {
            SendClientMessage(i, blue, text);
        }
    }
}
pawn Код:
public OnPlayerText(playerid, text[])
{
    if(IsPlayerAdmin(playerid) && text[0] == '.')
    {
         new msg[128], pName[MAX_PLAYER_NAME];
         GetPlayerName(playerid, pName, MAX_PLAYER_NAME);
         format(msg, sizeof(msg), "[ADMIN CHAT] %s (ID %d): %s", pName, playerid, text[1]);
         SendMessageToAdmins(msg);
         return 0;
}
But i can't get it to work for my own admin variable

pawn Код:
if(PInfo[playerid][Level] < 1)
Could someone fix this?
Reply


Messages In This Thread
Admin Chat - by Biess - 28.09.2012, 14:27
Re: Admin Chat rep++ - by XtremeR - 28.09.2012, 14:35
Re: Admin Chat rep++ - by Biess - 28.09.2012, 14:37
Re: Admin Chat rep++ - by iPLEOMAX - 28.09.2012, 14:39
Re: Admin Chat rep++ - by Biess - 28.09.2012, 14:53
Re : Admin Chat rep++ - by yusei - 28.09.2012, 15:10
Re: Re : Admin Chat rep++ - by Biess - 28.09.2012, 15:13
Re: Admin Chat rep++ - by mamorunl - 28.09.2012, 15:16
Re: Admin Chat rep++ - by Biess - 28.09.2012, 15:20

Forum Jump:


Users browsing this thread: 1 Guest(s)