Advertisement
TomRuto

Medigun Checker

Jul 31st, 2013
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.19 KB | None | 0 0
  1. // Medigun Checker
  2. // This script requires you to press the bound key 4 times.
  3. // You can press it quickly the first two times,
  4. // but before pressing it a third time you must wait for the spy to complete the disguise action.
  5. // The third press will reveal the medigun.
  6. // The fourth press will change back to your original class.
  7.  
  8. alias medcheck medcheck1
  9. alias medcheck1 "join_class spy; alias medcheck medcheck2"
  10. alias medcheck2 "disguise 5 -1; slot2; alias medcheck medcheck3"
  11. alias medcheck3 "lastdisguise; alias medcheck medcheck4"
  12. alias medcheck4 "originalclass"
  13.  
  14. bind - medcheck // replace " - " with your own preference of key
  15.  
  16. alias orig_scout "alias originalclass "join_class scout""
  17. alias orig_soldier "alias originalclass "join_class soldier""
  18. alias orig_pyro "alias originalclass "join_class pyro""
  19. alias orig_demoman "alias originalclass "join_class demoman""
  20. alias orig_heavyweapons "alias originalclass "join_class heavyweapons""
  21. alias orig_engineer "alias originalclass "join_class engineer""
  22. alias orig_medic "alias originalclass "join_class medic""
  23. alias orig_sniper "alias originalclass "join_class sniper""
  24.  
  25. // Put this in the other classes
  26. exec medcheck; orig_<class>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement