Advertisement
Guest User

Untitled

a guest
Jan 21st, 2020
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. function changevis()
  2. {
  3. configure = UI.GetValue("Visual", "SELF", "Chams", "Configure")
  4. /*
  5. 0 - visible
  6. 1 - attachments
  7. 2 - desync
  8. 3 - fakelag
  9. 4 - arms
  10. 5 - weapon
  11. */
  12. override = UI.GetValue("Visual", "SELF", "Chams", "Override")
  13. Cheat.Print("Configure state: " + configure + "\n")
  14. Cheat.Print("Override state: " + override + "\n")
  15. if (configure == 0)
  16. {
  17. UI.SetValue("Chams", "Override", true)
  18. }else{
  19. UI.SetValue("Chams", "Override", false)
  20. }
  21. }
  22. function visuals()
  23. {
  24. changevis()
  25. }
  26. Cheat.RegisterCallback("Draw", "visuals")
  27. // bug, override only works on weapon
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement