22.04.2011, 14:58
Hello.
I get the following 3 errors:
On this script:
Could someone tell me whats wrong?
Thanks
I get the following 3 errors:
PHP код:
error 010: invalid function or declaration
error 010: invalid function or declaration
error 010: invalid function or declaration
PHP код:
public OnPlayerUpdate(playerid)
{
new Float:H;
GetPlayerHealth(playerid,H);
if(H<99 && H>1) SetPlayerHealth(playerid,10000);
return 1;
}
new Float:h;
for(new i; i<500; i++) // Erroring Line
{
if(IsPlayerConnected(i) // Erroring Line
{
h = GetVehicleHealth(GetPlayerVehicleID(i));
if(h < 1000) // Erroring Line
{
SetVehicleHealth(GetPlayerVehicleID(i),1000);
} } } }
}
Thanks