20.07.2011, 18:42
Код:
public FixAllCar()
{
for(new playerid = 0; playerid < MAX_PLAYERS; playerid++)
{
if(IsPlayerVipType(playerid,3))
{
if(IsPlayerConnected(playerid) && IsPlayerInAnyVehicle(playerid))
{
new vehicleid = GetPlayerVehicleID(playerid);// gettin the vehicle id
SetVehicleHealth(vehicleid,1000.0);// set the vehicle healt
}
}
}
Because im getting this error
Код:
C:\Documents and Settings\Chris\My Documents\My Received Files\FreeRoam(3).pwn(3318) : error 030: compound statement not closed at the end of file (started at line 3307)

