Forward Help
#1

I need something to happen after a certain amount of time, so I used a timer. this is what I did.

PHP код:
forward HotwireWaitTime(playerid); 
PHP код:
public HotwireWaitTime(playerid)
{
    
WaitTime[playerid] = 0;
    return 
1;

PHP код:
SetTimer("HotwireWaitTime(playerid)"10000true); 
What am I doing wrong?
Reply
#2

Thats wrong use of SetTimer
Since set timer is not supporting variables than we will use SetTimerEx
pawn Код:
SetTimerEx("HotwireWaitTime", 10000, true, "d", playerid);
https://sampwiki.blast.hk/wiki/SetTimer
https://sampwiki.blast.hk/wiki/SetTimerEx
https://sampwiki.blast.hk/wiki/KillTimer
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)