Advertisement
Guest User

Untitled

a guest
Feb 5th, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. HIER SIND DIE GANZEN # SACHEN
  2.  
  3. SetTimer, HP, 500
  4. SetTimer, AR, 500
  5. SetTimer, FPS, 500
  6.  
  7. HIER IST DAS GUI
  8.  
  9. HPOV := TextCreate("Arial Black", 8, true, true, 719, 94, 0xFFFFFFFF, "" GetPlayerHealth(), true, true)
  10. AROV := TextCreate("Arial Black", 8, true, true, 719, 57, 0xFFFFFFFF, "" GetPlayerArmor(), true, true)
  11. FPSOV := TextCreate("Arial", 5, true, false, 770, 590, 0xFFFFFFFF, "" GetFramerate(), true, true)
  12.  
  13. HP:
  14. TextSetString(HPOV, "" GetPlayerHealth())
  15. return
  16.  
  17. AR:
  18. TextSetString(AROV, "" GetPlayerArmor())
  19. return
  20.  
  21. FPS:
  22. TextSetString(FPSOV, "FPS: " GetFramerate())
  23.  
  24. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement