27.01.2015, 18:16
Knappen just told you the error, you have one too many brackets.
Also, read the forum rules. You're allowed to bump once every 24 hours.
pawn Код:
stock CaptureZoneMessage(playerid, messageid)
{
switch(messageid)
{
case 0:
{
SendClientMessage(playerid, COLOR_RED,"You cannot capture while in a vehicle!");
}
case 1:
{
SendClientMessage(playerid, COLOR_RED,"This zone is already being taken over!");
}
} // Unnecessary
case 2:
{
SendClientMessage(playerid, COLOR_RED,"This zone is already being taken over!");
}
}
return 1;
}