16.03.2013, 18:27
When someone drive faster than 100 kmh the speedo meter starts to show the bank account insted? im not sure but the problem should be here, if not then tell me where to look please.
pawn Код:
new kmh = GetPlayerSpeed(i, true);
if ((BusrouteEast[i][0] >= 0 && BusrouteWest[i][0] >= 0))
{
if(PlayerInfo[i][pSpeedo] == 2)
{
if(kmh >= 0 && kmh <= 80)
{
format(string, 64, "~w~Speed: ~g~~h~%d ~w~KM/h.", kmh);
}
else if(kmh >= 81 && kmh <= 120)
{
format(string, 64, "~w~Speed: ~y~~h~%d ~w~KM/h.", kmh);
}
else if(kmh >= 300)
{
format(string, 64, "~w~Speed: ~r~~h~%d ~w~KM/h.", kmh);
}
TextDrawSetString(Textdraw39[i], string);
}