Advertisement
Ringo276

engineer.cfg

Mar 3rd, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.83 KB | None | 0 0
  1. //ringo's engineer config
  2.  
  3. cl_hud_playerclass_use_playermodel 0
  4.  
  5. //-----------------------------------\\
  6. //Build/Destroy Buildings Without PDA\\
  7. //-----------------------------------\\
  8.  
  9. //press q for sentry, e for dispenser, r for tele entrance, and t for tele exit
  10.  
  11. bind q "BuildSentry"
  12. bind e "BuildDispenser"
  13. bind r "BuildEntrance"
  14. bind t "BuildExit"
  15.  
  16. alias BuildSentry "build 2 0; bind q DestroySentry"
  17. alias DestroySentry "destroy 2 0; bind q BuildSentry"
  18.  
  19. alias BuildDispenser "build 0 0; bind e DestroyDispenser"
  20. alias DestroyDispenser "destroy 0 0; bind e BuildDispenser"
  21.  
  22. alias BuildEntrance "build 1 0; bind r DestroyEntrance"
  23. alias DestroyEntrance "destroy 1 0; bind r BuildEntrance"
  24.  
  25. alias BuildExit "build 1 1; bind t DestroyExit"
  26. alias DestroyExit "destroy 1 1; bind t BuildExit"
  27.  
  28. //-------------\\
  29. //Eureka Effect\\
  30. //-------------\\
  31.  
  32. //press the 5 to go to spawn
  33. //crouch while pressing 5 to go to your teleporter exit
  34. //walking resets to eureka taking the user to spawn in case of death during crouching
  35.  
  36. alias "eureka" "slot3; eureka_teleport"
  37. alias "eureka2" "slot3; eureka_teleport 1"
  38. alias +eurekacrouch "+duck; bind 5 eureka2"
  39. alias -eurekacrouch "-duck; bind 5 eureka"
  40.  
  41. bind 5 "eureka"
  42. bind w "+mfwd; bind 5 eureka"
  43. bind s "+mback; bind 5 eureka"
  44. bind a "+mleft; bind 5 eureka"
  45. bind d "+mright bind 5 eureka"
  46. bind shift "+eurekacrouch"
  47.  
  48. //-----\\
  49. //Binds\\
  50. //-----\\
  51.  
  52. bind 1 "voicemenu 0 0" //says medic!
  53. bind 2 "voicemenu 0 1" //says thanks
  54. bind 3 "voicemenu 2 6" //says nice shot
  55. bind 4 "voicemenu 1 1" //says spy!
  56. bind v "taunt_by_name Taunt: The Schadenfreude"
  57.  
  58. //-----------------------------\\
  59. //Print QERT Binds Into Console\\
  60. //-----------------------------\\
  61.  
  62. echo "engineer binds enabled"
  63. echo "q - sentry"
  64. echo "e - dispenser"
  65. echo "r - tele entrance"
  66. echo "t - tele exit"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement