PHP Code:
new Float:timer[32]
33.
PHP Code:
set_task(0.1,"timer_task",20000,"",0,"ab")
Using flags a and b at the same time doesn't make sense.
PHP Code:
for(new i=1;i<=get_maxplayers();i++)
Don't loop players like this. Use get_players().
PHP Code:
if(is_user_alive(i) && timer_started[i-1]) {
You're still using [id-1].
PHP Code:
if(race_status == true,timer_started[id-1])
This won't even compile.
I'm not going to look further since you probably didn't fix everything yet.
__________________