20.05.2009, 03:32
Didn't close off switch()
pawn Код:
public OnPlayerEnterCheckpoint(playerid)
{
switch(gClass[playerid])
{
case 2:
{
// If the player's class is 0 then set it to Orange
SendRconCommand("gmx");
}
}
SendClientMessage(playerid, 0xDEEE20FF, "Entered Checkpoint");
return 1;
}

