Posts: 449
Threads: 125
Joined: Apr 2013
Reputation:
0
How to create a countdown timer which works for player id in each part , i mean not looped , a per / playerid countdown timer!
Thanks!
Posts: 912
Threads: 116
Joined: Jun 2012
Reputation:
0
This is 'Scripting Help', and is not here for you to request someone to basically do it for you. But i'm going to help you out by saying one thing "Check the SA-MP wiki and learn the basics"
Posts: 1,130
Threads: 181
Joined: Jan 2009
Reputation:
0
1. The title should be a short summary of what the problem is
2. This is scripting help, so do not ask people to do it for you.
Posts: 280
Threads: 1
Joined: Oct 2014
Reputation:
0
Always i see your titles are : "REP++ Help" !
If someone knows your problem, he will help you
We don't need your rep! We help each other just for friendship !
As zt kingkong said, you have to learn basic !!
For countdown, use SetTimerEx and make a variable for example
ContDownTime[MAX_PLAYERS]
set variable value the time of countdown in second and set timer for 1 second to call a callback
In callback for each call decrease 1 second from variable
And check if variable value was 0 kill the timer and do somthing
Good luck