07.01.2011, 16:09
So i'm currently setting up restricted vehicles. But when I compile I get only ONE error:
I have marked the (296) just in case you need it to know where the prob is.
ALSO, I have tried return 1; and return true; but it didn't change anything.
Thanks in ADvance!
Quote:
error 030: compound statement not closed at the end of file (started at line 269) Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 1 Error. |
ALSO, I have tried return 1; and return true; but it didn't change anything.
Thanks in ADvance!
pawn Код:
public OnPlayerStateChange(playerid, newstate, oldstate)
{
if (newstate == 2) // THIS IS THE 269, 299 IS THE END OF THE SCRIPT
{
new CarID = GetPlayerVehicleID(playerid);
if (CarID==copcar1) {
if (Member[playerid] == 1) {
}else{
RemovePlayerFromVehicle(playerid);
SendClientMessage(playerid,COLOR_RED,"Your Not Authorization To Use This Cop Car!");
}
}
if (CarID==copcar2) {
if (Member[playerid] == 1) {
}else{
RemovePlayerFromVehicle(playerid);
SendClientMessage(playerid,COLOR_RED,"Your Not Authorization To Use This Cop Car!");
}
}
if (CarID==copcar3) {
if (Leader[playerid] == 1) {
}else{
RemovePlayerFromVehicle(playerid);
SendClientMessage(playerid,COLOR_RED,"This vehicle is only drivable by the Chief!");
}
}
}