29.06.2012, 17:25
Aproveitando esse topico queria saber se tem como almentar as fontes do meu deixa uma poco maior..
pawn Код:
forward Velocimetro();
public Velocimetro()
{
new Float:Speedo_HP;
for(new i=0; i<MAX_PLAYERS; i++)
{
if(gPlayerLogged[i] == 1 && IsPlayerInAnyVehicle(i))
{
new vehicle = GetPlayerVehicleID(i);
GetVehicleHealth(vehicle, Speedo_HP);
new string[256];
format(string,sizeof(string),"~>~~w~Veiculo:~b~~h~~h~%s~n~~~~>~~w~Velocidade:~b~~h~~h~ %d KM/h~n~~~~>~~w~Combustivel:~b~~h~~h~%d%%~n~~~~>~~w~Estabilidade:~b~~h~~h~%0.0f%%~n~~~~>~~w~GPS:~b~~h~~h~%s" , vehName[GetVehicleModel(vehicle)-400], GetPlayerSpeed(i, true), Gas[vehicle], Speedo_HP/10, ReturnPlayerZone(i));
TextDrawSetString(Speed[i], string);
if(TextShow[i] == false)
{
TextDrawShowForPlayer(i, Speed[i]);
TextShow[i] = true;
}
}
else
{
if(TextShow[i] == true)
{
TextDrawHideForPlayer(i, Speed[i]);
TextShow[i] = false;
}
}
}
}