05.04.2012, 13:15
This is just an idea, but what if you create a new function like
Then, GameModeInit you create a timer like this
Every 5 seconds you have a new color.. I dont very well the signature of the function SetTimerEx, if is it wrong, correct me please
Код:
forward TextDrawColorChange(textdraw);
public TextDrawColorChange(textdraw)
{
TextDrawColor(textdraw,"any other color");
return 1;
}
Код:
SetTimerEx("TextDrawColorChange", 5000, true, "s", Example);

