Advertisement
Guest User

Untitled

a guest
Oct 24th, 2014
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. ; Option 1
  2. IF player.geteqipped Thing_To_Check
  3. SetUIFloat "StartMenu/MCM/*:1/*:6/_enable" 1
  4. else
  5. SetUIFloat "StartMenu/MCM/*:1/*:6/_enable" 0
  6. end if
  7. SetUIFloat "StartMenu/MCM/*:1/*:6/_suffix" 0
  8. SetUIString "StartMenu/MCM/*:1/*:6/_title" "Title"
  9. SetUIFloat "StartMenu/MCM/*:1/*:6/_type" 2.5
  10. SetUIFloat "StartMenu/MCM/*:1/*:6/_value/*:1/string" "%.1f" Variable
  11.  
  12. ; Option 2
  13.  
  14. IF player.geteqipped Thing_To_Check
  15. SetUIFloat "StartMenu/MCM/*:1/*:6/_enable" 1
  16. SetUIFloat "StartMenu/MCM/*:1/*:6/_suffix" 0
  17. SetUIString "StartMenu/MCM/*:1/*:6/_title" "Title"
  18. SetUIFloat "StartMenu/MCM/*:1/*:6/_type" 2.5
  19. SetUIFloat "StartMenu/MCM/*:1/*:6/_value/*:1/string" "%.1f" Variable
  20. end if
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement