Detaljan opis problema: Imam erore a imam definiran foeach itd
Dio skripte:
public MainTimer()
{
new string;
new Float:x, Float:y, Float:z;
foreach (new i : Player)
{
if(IsPlayerConnected(i))
{
if(GetPlayerState(i) == PLAYER_STATE_DRIVER)
{
new vehicleid = GetPlayerVehicleID(i);
if(!IsBicycle(vehicleid) && !IsBus(vehicleid) && Fuel > 0)
{
Fuel -= GetPlayerSpeed(i)/1000.0;
if(Fuel <= 0)
{
ToggleEngine(vehicleid, VEHICLE_PARAMS_OFF);
GameTextForPlayer(i, "~r~out of fuel", 3000, 3);
SendClientMessage(i, COLOR_LIGHTRED, "This vehicle is out of fuel!");
}
}
}
if(RefuelTime > 0 && GetPVarInt(i, "FuelStation"))
{
new vehicleid = GetPlayerVehicleID(i);
Fuel += 2.0;
RefuelTime--;
if(RefuelTime == 0)
{
if(Fuel >= 100.0) Fuel = 100.0;
new stationid = GetPVarInt(i, "FuelStation");
new cost = floatround(Fuel-GetPVarFloat(i, "Fuel"))*FUEL_PRICE;
if(GetPlayerState(i) != PLAYER_STATE_DRIVER || Fuel >= 100.0 || GetPlayerMoney(i) < cost
|| !IsPlayerInRangeOfPoint(i, 10.0, FuelStationPos, FuelStationPos, FuelStationPos))
{
if(GetPlayerMoney(i) < cost) cost = GetPlayerMoney(i);
GivePlayerMoney(i, -cost);
format(string, sizeof(string), "~r~-$%d", cost);
GameTextForPlayer(i, string, 2000, 3);
format(string, sizeof(string), "You have paid $%d for the fuel.", cost);
SendClientMessage(i, COLOR_WHITE, string);
SetPVarInt(i, "FuelStation", 0);
SetPVarFloat(i, "Fuel", 0.0);
}
else
{
RefuelTime = 5;
format(string, sizeof(string), "~w~refueling...~n~~r~-$%d", cost);
GameTextForPlayer(i, string, 2000, 3);
}
}
}
if(TrackCar)
{
GetVehiclePos(TrackCar, x, y, z);
SetPlayerCheckpoint(i, x, y, z, 3);
}
}
}
} (23533) : error 017: undefined symbol "foreach"
(23533) : error 029: invalid expression, assumed zero
(23533) : error 017: undefined symbol "i"
(23533) : fatal error 107: too many error messages on one line new vehicleid = GetPlayerVehicleID(i); Neke slike/video za lakse dobivanje pomoci(neobavezno):
