29.04.2010, 18:38
make a global called new VehicleInfoFlash[MAX_PLAYERS];
then in the one timer, set all the textdraws to show.
Try that
then in the one timer, set all the textdraws to show.
pawn Код:
timername(playerid)
{
if(VehicleInfoFlash[playerid] == 0)
{
//Show all textdraws
}
else if(VehicleInfoFlash[playerid] == 1) // or just else
{
//hide all textdraws
}
return 1;
}