Advertisement
Guest User

Untitled

a guest
Jan 12th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. forward GorivoTimer();
  2. public GorivoTimer()
  3. {
  4. for(new i = 0; i < MAX_PLAYERS; i++)
  5. {
  6. new vid = GetPlayerVehicleID(i);
  7. if(IsBicycle(vid)) return 1;
  8.  
  9. if(IsPlayerInAnyVehicle(i) && GetPlayerState(i) == PLAYER_STATE_DRIVER && uVozilu[i] == true)
  10. {
  11. fuel[vid] = fuel[vid] -1.000000;
  12.  
  13. PlayerTextDrawDestroy(i,BRZINOMJER6[i]);
  14. BRZINOMJER6[i] = CreatePlayerTextDraw(i, fuel[vid], 418.000000, "_");
  15. PlayerTextDrawLetterSize(i,BRZINOMJER6[i], 0.389999, 0.199999);
  16. PlayerTextDrawUseBox(i,BRZINOMJER6[i], 1);
  17. PlayerTextDrawBoxColor(i,BRZINOMJER6[i], -6749953);
  18. PlayerTextDrawTextSize(i,BRZINOMJER6[i], 538.000000, 1.000000);
  19. PlayerTextDrawShow(i,BRZINOMJER6[i]);
  20. return 1;
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement