08.08.2012, 19:04
Ive put together a code and it compiled fine, but somehow its still not working :
Is there anything wrong with that?
Код:
public OnPlayerEnterRaceCheckpoint(playerid)
{
new pName[MAX_PLAYER_NAME],stringg[128];
GetPlayerName(playerid,pName,sizeof(pName));
SendClientMessageToAll(0x33AA33AA,stringg);
PlayerPlaySound(playerid, 5461, 0.0, 0.0, 10.0);
format(stringg,sizeof(stringg),"%s is faster than you all, getting 1st place!",pName);
DisablePlayerRaceCheckpoint(playerid);
return 1;
}

