08.12.2011, 07:41
pawn Код:
#define COLOR_WHITE /*color hex here*/
new bool:IsMinistry[MAX_PLAYERS];
if(GetPlayerScore(playerid0 >= 100) && IsMinistry[playerid] == false)
{
new output[128];
new playername[MAX_PLAYER_NAME];
GetPlayerName(playerid, playername);
format(output, sizeof(output), "%s is now a member of the ministry.", playername);
SendClientMessageToAll(COLOR_WHITE, output);
IsMinistry[playerid] = true;
}