im suprised you diding get any warning in the callback ;X
you havent decalred the
playerid in the timers!
pawn Код:
SetTimer("SpeedTimer", 80, true); // Speed TextDraw
SetTimer("HealthTima", 80, true); // Health TextDraw
SetTimer("FuelTima", 80, true); // Fuel TextDraw
SetTimer("VehicleTima", 80, true);
should be
pawn Код:
SetTimerEx("SpeedTimer", 80, true,"i",playerid); // Speed TextDraw
SetTimer("HealthTima", 80, true,"i",playerid); // Health TextDraw
SetTimer("FuelTima", 80, true,"i",playerid); // Fuel TextDraw
SetTimer("VehicleTima", 80, true,"i",playerid);
They need to have a paramiter for the player id but with this timings it will make a heck of a lagg for players running this each!
i would suggest to re think the whole script its really messy.
Try using original callback instead of timers, all this function can be done with 1 timer!