if(strcmp(cmd, "/admin", true) == 0 || strcmp(cmd, "/a", true) == 0) { if(IsPlayerConnected(playerid)) { new str[160]; GetPlayerName(playerid, str, MAX_PLAYER_NAME); for (new i = 0; i < MAX_PLAYER_NAME; i++) if (str[i] == '_') str[i] = ' '; new length = strlen(cmdtext); while ((idx < length) && (cmdtext[idx] <= ' ')) { idx++; } new offset = idx; new result[64]; while ((idx < length) && ((idx - offset) < (sizeof(result) - 1))) { result[idx - offset] = cmdtext[idx]; idx++; } result[idx - offset] = EOS; if(!strlen(result)) { SendClientMessage(playerid, COLOR_LIGHTBLUE, "USAGE: (/a)dmin [admin chat]"); return 1; } format(str, sizeof(str), "*%d Admin %s: %s", PlayerInfo[playerid][pAdmin], str, result); if (PlayerInfo[playerid][pAdmin] >= 1) { SendAdminMessage(COLOR_YELLOW, str); } printf("Admin %s: %s", str, result); // AdmincLog(string[]); } return 1; }
if(strcmp(cmd, "/admin", true) == 0 || strcmp(cmd, "/a", true) == 0) { if(IsPlayerConnected(playerid)) { new str[160]; GetPlayerName(playerid, str, MAX_PLAYER_NAME); for (new i = 0; i < MAX_PLAYER_NAME; i++) if (str[i] == '_') str[i] = ' '; new length = strlen(cmdtext); while ((idx < length) && (cmdtext[idx] <= ' ')) { idx++; } new offset = idx; new result[64]; while ((idx < length) && ((idx - offset) < (sizeof(result) - 1))) { result[idx - offset] = cmdtext[idx]; idx++; } result[idx - offset] = EOS; if(!strlen(result)) { SendClientMessage(playerid, COLOR_LIGHTBLUE, "USAGE: (/a)dmin [admin chat]"); return 1; } new arank[64]; if(PlayerInfo[playerid][pAdmin] == 1340) { arank = "Owner"; } format(str, sizeof(str), "*%s Admin %s: %s", arank, str, result); if (PlayerInfo[playerid][pAdmin] >= 1) { SendAdminMessage(COLOR_YELLOW, str); } printf("Admin %s: %s", str, result); // AdmincLog(string[]); } return 1; }
if(strcmp(cmd, "/admin", true) == 0 || strcmp(cmd, "/a", true) == 0)
{
if(IsPlayerConnected(playerid))
{
new str[160];
GetPlayerName(playerid, str, MAX_PLAYER_NAME);
for (new i = 0; i < MAX_PLAYER_NAME; i++)
if (str[i] == '_')
str[i] = ' ';
new length = strlen(cmdtext);
while ((idx < length) && (cmdtext[idx] <= ' '))
{
idx++;
}
new offset = idx;
new result[64];
while ((idx < length) && ((idx - offset) < (sizeof(result) - 1)))
{
result[idx - offset] = cmdtext[idx];
idx++;
}
result[idx - offset] = EOS;
if(!strlen(result))
{
SendClientMessage(playerid, COLOR_LIGHTBLUE, "USAGE: (/a)dmin [admin chat]");
return 1;
}
new arank[64];
if(PlayerInfo[playerid][pAdmin] == 1) { arank = "New Admin"; }
if(PlayerInfo[playerid][pAdmin] == 2) { arank = "Admin"; }
if(PlayerInfo[playerid][pAdmin] == 3) { arank = "High Level Admin"; }
if(PlayerInfo[playerid][pAdmin] == 4) { arank = "Head Admin"; }
if(PlayerInfo[playerid][pAdmin] == 1340) { arank = "Owner"; }
format(str, sizeof(str), "*%s %s: %s", arank, str, result);
if (PlayerInfo[playerid][pAdmin] >= 1)
{
SendAdminMessage(COLOR_YELLOW, str);
}
printf("Admin %s: %s", str, result);
// AdmincLog(string[]);
}
return 1;
}
pawn Код:
|