06.09.2010, 22:29
how would i make like if the first person goes in the last race checkpoint would say like Noob has won the race
Player Carbon has finshed second and it keeps going on to the max players for the race heres what i got so far
Player Carbon has finshed second and it keeps going on to the max players for the race heres what i got so far
pawn Код:
case 17:
{
DisablePlayerRaceCheckpoint(playerid);
PlayerPlaySound(playerid, 1056, 0.0, 0.0, 10.0);
SetPlayerRaceCheckpoint(playerid, 1,3825.4634,-2516.0691,46.5305,3829.0635,-2531.2246,52.5604,10);
Stats[playerid] = 18;
new name[MAX_PLAYER_NAME], string[100];
GetPlayerName(playerid, name, sizeof(name));
format(string, sizeof(string), "Player %s Has Finshed Race [1st]", name ); // how would i make it for all playrs go like player noob has finshed second player carbon has finshed 3rd
SendClientMessageToAll(ADMIN_RED, string);
return 1;
}