Fire Systeme Isuse need a help
#4

NOW THIS IS THE ERROR (4)

Код:
C:\Users\Mininou\Desktop\Vodka\gamemodes\lslrp.pwn(2499) : error 012: invalid function call, not a valid address
C:\Users\Mininou\Desktop\Vodka\gamemodes\lslrp.pwn(2499) : warning 215: expression has no effect
C:\Users\Mininou\Desktop\Vodka\gamemodes\lslrp.pwn(2499) : error 001: expected token: ";", but found ")"
C:\Users\Mininou\Desktop\Vodka\gamemodes\lslrp.pwn(2499) : error 029: invalid expression, assumed zero
C:\Users\Mininou\Desktop\Vodka\gamemodes\lslrp.pwn(2499) : fatal error 107: too many error messages on one line

Compilation aborted.Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


4 Errors.
Код:
2499 ========>         RandomFireSpawn(i);

Код:
forward FireTimer(i)
public FireTimer(i)
{
    if(IsPlayerConnected(i))
    {
        RandomFireSpawn(i);
        KillTimer(TimerName);
    }
    return 1;
}

public RandomFireSpawn(playerid)
        {
        rand = random(sizeof(RandomFireSpawn));
        CreateObject(objectid, RandomFireSpawn[rand][0], RandomFireSpawn[rand][1], RandomFireSpawn[rand][2], 0.0,0.0, 0.0);
        SetPlayerMapIcon(playerid, 18, RandomFireSpawn[1],RandomFireSpawn[1],RandomFireSpawn[1], 55, COLOR_WHITE, 0);
            if(groupVariables[playerVariables[playerid][pGroup]][gGroupType] != 3)
                {
                SendClientMessage(playerid, COLOR_GREEN, "Dispatch: A Fire Has Been Located Please Respond We Have Set A Icon.");
                }
        }
        return 1;
}
//Now, for the health.

forward HealthFire(playerid)
public HealthFire(playerid);
{
    if(IsPlayerConnected(playerid))
    {
        if(IsPlayerInRangeOfPoint(playerid,5.0,RandomFireSpawn[0],RandomFireSpawn[1],RandomFireSpawn[2]))
        {
            FireHPTimer[playerid] = SetTimerEx("FireHealthTime", 25000, false, "i", playerid);//Set for 25 seconds.
        }
    }
    return 1;
}

forward FireHealthTime(playerid)
public FireHealthTime(playerid)
{
    if(IsPlayerConnected(playerid))
    {
        new Float:health;
        GetPlayerHealth(playerid, health);
        SetPlayerHealth(playerid, health-25.0);//In 25 seconds, if not treated he will loose 25 HP
    }
    return 1;
}
Reply


Messages In This Thread
Fire Systeme Isuse need a help - by BigBaws - 21.02.2012, 21:29
Re: Fire Systeme Isuse need a help - by austin070 - 21.02.2012, 21:34
Re: Fire Systeme Isuse need a help - by Vince - 21.02.2012, 21:34
Re : Fire Systeme Isuse need a help - by BigBaws - 21.02.2012, 21:36
Re: Fire Systeme Isuse need a help - by Vince - 21.02.2012, 21:44
Re : Fire Systeme Isuse need a help - by BigBaws - 21.02.2012, 21:47
Re: Fire Systeme Isuse need a help - by austin070 - 21.02.2012, 21:54
Re : Fire Systeme Isuse need a help - by BigBaws - 21.02.2012, 21:59
Re: Fire Systeme Isuse need a help - by austin070 - 21.02.2012, 22:09
Re : Fire Systeme Isuse need a help - by BigBaws - 21.02.2012, 22:17

Forum Jump:


Users browsing this thread: 1 Guest(s)