[Ajuda] Erro
#1

Codigo

PHP код:
stock Float:GetVehicleHealthEx(vehicleid)
{
        new 
Float:health;
        
GetVehicleHealth(vehicleidhealth);
        if ( 
health 900.0) {
                return 
health 10.0;
        }
        else return ( 
health 10.0 )-(24);

Nome do erro

PHP код:
warning 208: function with tag result used before definitionforcing reparse 
Reply
#2

Uma dica й vocк colocar essa funзгo mais pro topo do GM. Ou Seja mais pra cima de onde vocк ta usando a funзгo GetVehicleHealthEx

Outra dica de otimizaзгo й retirar o stock й deixar apenas Float:GetVehicleHealthEx(vehicleid) stock й sу para n dar warnings. se tiver usando uma GM Base RPG ou qualquer outra apague os stocks e veja o monte de warnings xd

~>

PHP код:
Float:GetVehicleHealthEx(vehicleid)
{
    new 
Float:health;
    
GetVehicleHealth(vehicleidhealth);
    if(
health 900.0)
    {
        return 
health 10.0;
    }
    else return (
health 10.0)-(24);

Reply
#3

Qm estiver tendo o msm problema usem assim

forward Float: GetVehicleHealthEx(vehicleid);
Float:GetVehicleHealthEx(vehicleid)
{
new Float:health;
GetVehicleHealth(vehicleid, health);

if(health > 900.0)
{
return health / 10.0;
}
else return (health / 10.0)-(24);
}

funfou aq
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)