17.06.2012, 18:36
Hey,
How to send a client message after that the cars are respawned,
I mean I know how but when I did, it spammed the chat full of the SCM.
How to send a client message after that the cars are respawned,
I mean I know how but when I did, it spammed the chat full of the SCM.
pawn Код:
command(rac, playerid, params[])
{
new string[128];
if(Player[playerid][AdminLevel] >= 1 || Player[playerid][Moderator] >= 1)
for(new car = 1; car <= 268; car++)
{
if(IsVehicleEmpty(car)) SetVehicleToRespawn(car);
format(string, sizeof(string), "SERVER ACTION: All unused cars respawned by %s", GetName(playerid));
SendClientMessageToAll(RED, string);
}
return 1;
}