dylan4021

status veiculo

Aug 23rd, 2011
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 0.90 KB | None | 0 0
  1. if(Lataria < 250) {
  2.         TextDrawHideForPlayer(playerid, Velocimetro[playerid][4]);
  3.         TextDrawSetString(Velocimetro[playerid][4], "Estado: ~r~Quebrou");
  4.         TextDrawShowForPlayer(playerid, Velocimetro[playerid][4]);
  5.     }
  6.     else if(Lataria > 250 || Lataria < 500) {
  7.         TextDrawHideForPlayer(playerid, Velocimetro[playerid][4]);
  8.         TextDrawSetString(Velocimetro[playerid][4], "Estado: ~p~Quebrando");
  9.         TextDrawShowForPlayer(playerid, Velocimetro[playerid][4]);
  10.     }
  11.     else if(Lataria > 500 || Lataria < 800) {
  12.         TextDrawHideForPlayer(playerid, Velocimetro[playerid][4]);
  13.         TextDrawSetString(Velocimetro[playerid][4], "Estado: ~b~Bom");
  14.         TextDrawShowForPlayer(playerid, Velocimetro[playerid][4]);
  15.     }
  16.     else if(Lataria > 800) {
  17.         TextDrawHideForPlayer(playerid, Velocimetro[playerid][4]);
  18.         TextDrawSetString(Velocimetro[playerid][4], "Estado: ~g~Otimo");
  19.         TextDrawShowForPlayer(playerid, Velocimetro[playerid][4]);
  20.     }
Advertisement
Add Comment
Please, Sign In to add comment