Guest User

Untitled

a guest
Nov 28th, 2016
17,500
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.63 KB | None | 0 0
  1. /////////////////////////////////////////////////////////////////////
  2. // Advanced Bind Script - Create your own version by Maxim aka BananaGaming
  3.  
  4. //Part 1
  5. //Make sure that what is inside the quotes is what you're currently using.
  6. //Note: This version lets you create your own values from scratch, KEY is your button, currentvalue is the command.
  7. alias defA "bind KEY currentvalue"
  8. alias defB "bind KEY currentvalue"
  9. alias defC "bind KEY currentvalue"
  10. alias defD "bind KEY currentvalue"
  11. alias defE "bind KEY currentvalue"
  12. alias defF "bind KEY currentvalue"
  13. alias defG "bind KEY currentvalue"
  14. alias defH "bind KEY currentvalue"
  15.  
  16. //Part 2
  17. //If you changed any letters/numbers in part 1 make sure you make the same changes here.
  18. //Don't change the keyXX part.
  19. alias keyA "bind KEY keyAA"
  20. alias keyB "bind KEY keyBB"
  21. alias keyC "bind KEY keyCC"
  22. alias keyD "bind KEY keyDD"
  23. alias keyE "bind KEY keyEE"
  24. alias keyF "bind KEY keyFF"
  25. alias keyG "bind KEY keyGG"
  26. alias keyH "bind KEY keyHH"
  27.  
  28. //Part 3
  29. //Here you can change what the bindings do when you hold down your key.
  30. //This is the fun part. :)
  31. alias keyAA "customvalue"
  32. alias keyBB "customvalue"
  33. alias keyCC "customvalue"
  34. alias keyDD "customvalue"
  35. alias keyEE "customvalue"
  36. alias keyFF "customvalue"
  37. alias keyGG "customvalue"
  38. alias keyHH "customvalue"
  39.  
  40. //Part 4 - Don't touch!
  41. alias +keybinds "keyA; keyB; keyC; keyD; keyE; keyF; keyG; keyH"
  42. alias -keybinds "defA; defB; defC; defD; defE; defF; defG; defH"
  43.  
  44. //Part 5 - Bind whatever key you want, this will be your main key
  45. bind HOLDDOWNKEY +keybinds
  46.  
  47. /////////////////////////////////////////////////////////////////////
Advertisement
Add Comment
Please, Sign In to add comment