24.10.2015, 10:31
Hi
I have madfe a /staff command and for some reason it only shows your name (on everything that is) and repeats itself over and over. This is teh code:
I have madfe a /staff command and for some reason it only shows your name (on everything that is) and repeats itself over and over. This is teh code:
PHP код:
command(staff, playerid, params[])
{
#pragma unused params
new string[128];
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(IsPlayerConnected(playerid))
{
SendClientMessage(playerid, COLOR_ORANGE, ". : : Administrators : : .");
if(PlayerInfo[playerid][pAdmin] >= 1)
{
format(string, sizeof(string), "Name: %s{A9C4E4}: (Level %d) {%s}", RPName(playerid), PlayerInfo[playerid][pAdmin], GetAwayStatus(playerid));
SendClientMessage(playerid, GREY, string);
}
SendClientMessage(playerid, COLOR_ORANGE, ". : : Moderators : : .");
if(PlayerInfo[playerid][pModerator] >= 1)
{
format(string, sizeof(string), "Name: %s{A9C4E4} {%s}", RPName(playerid), GetAwayStatus(i));
SendClientMessage(playerid, GREY, string);
}
SendClientMessage(playerid, COLOR_ORANGE, ". : : Helpers : : .");
if(PlayerInfo[playerid][pHelper] >= 1)
{
format(string, sizeof(string), "Name: %s{A9C4E4} {%s}", RPName(playerid), GetAwayStatus(playerid));
SendClientMessage(playerid, GREY, string);
}
}
}
}