28.03.2013, 20:26
Quote:
|
Fix the braces! Why is it so hard to do this right the first time? You have the return in the wrong spot.
|
pawn Код:
public OnPlayerPickUpPickup(playerid, pickupid)
{
if(pickupid == GolfTurf)
{
switch(gTeam [playerid])
{
case 0: SetTimer("GolfTurfT", 5000,false); //If the Clowns tries to take turf.
case 1: SendClientMessage(playerid, Clown, "Test lol");
}
}
return 1;
}


