Help with timers
#4

Just change this
Код:
SetTimer(Pursuit(playerid), 5000, true);
To This:
Код:
SetTimer("Pursuit", 5000, true);

And for that
Код:
CMD:killchase(playerid, params[])
{
    if(PlayerInfo[playerid][pFaction] == LSPD)
    {
        KillTimer(Pursuit_Timer[playerid]);
    }
    return 1;
}
Use That
Код:
CMD:killchase(playerid, params[])
{
    if(PlayerInfo[playerid][pFaction] == LSPD)
    {
        KillTimer("Pursuit");
    }
    return 1;
}
Reply


Messages In This Thread
Help with timers - by KtotheYle - 12.01.2014, 16:10
Re: Help with timers - by Konstantinos - 12.01.2014, 16:15
Re : Help with timers - by S4t3K - 12.01.2014, 16:16
Re: Help with timers - by dakata994 - 12.01.2014, 16:19
Re: Help with timers - by Konstantinos - 12.01.2014, 16:25
Re: Help with timers - by KtotheYle - 12.01.2014, 19:39

Forum Jump:


Users browsing this thread: 1 Guest(s)