public OnGameModeInit()
{
for(new x = 0; x < MAX_PLAYERS; x++)
{
Velocimetro[x] = TextDrawCreate(516.5 ,325 , "Velocidade");
TextDrawFont(Velocimetro[x], 3);
TextDrawLetterSize(Velocimetro[x], 0.3, 2.1);
TextDrawColor(Velocimetro[x], 0x999999FF);
TextDrawSetOutline(Velocimetro[x], false);
TextDrawSetProportional(Velocimetro[x], true);
TextDrawSetShadow(Velocimetro[x], 1);
TextDrawUseBox(Velocimetro[x], 1);
TextDrawBoxColor(Velocimetro[x], 0x00000065);
}
return 1;
}
new Text:Velocimetro[MAX_PLAYERS];
TextDrawShowForPlayer(playerid, Velocimetro[playerid]);