Advertisement
Guest User

Untitled

a guest
Jul 20th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.58 KB | None | 0 0
  1. #ifwinactive Darkfall Online ;this makes everything work only when darkfall is active
  2. #noEnv ;this is for the following script. increases compatibility.
  3.  
  4. PotReady = true
  5. PotTimer := -63000
  6.  
  7. ;//////////////////////////////////////////////////
  8. ;//Potion Timer////////////////////////////////////
  9. ;//////////////////////////////////////////////////
  10.  
  11.  
  12. *F6::
  13. {
  14. If PotReady = True
  15. {
  16. Send F6
  17. PotReady = False
  18. SetTimer, Pot, %PotTimer%
  19. Return
  20. }
  21. Return
  22. }
  23.  
  24. *F8::
  25. {
  26. If PotReady = True
  27. {
  28. Send F8
  29. PotReady = False
  30. SetTimer, Pot, %PotTimer%
  31. Return
  32. }
  33. Return
  34. }
  35.  
  36. *F9::
  37. {
  38. If PotReady = True
  39. {
  40. Send F9
  41. PotReady = False
  42. SetTimer, Pot, %PotTimer%
  43. Return
  44. }
  45. Return
  46. }
  47.  
  48. Pot:
  49. {
  50. PotReady = True
  51. SoundPlay, C:\Users\lisbethjohnson\Documents
  52. Return
  53. }
  54.  
  55. *5:: ; this script is for my sword and board.
  56. send 5 ;sword
  57. sleep 500
  58. send h ; shield
  59. sleep 30
  60. send +r ;unsheathe
  61. return ;end of script
  62.  
  63. *4:: ; this script is for my Wirlwind
  64. send 4 ; 1h sword
  65. send t ; 1h sword
  66. send !o ; knife
  67. return ;end of script
  68.  
  69. *n:: ; this script is for my knockback
  70. send n ; hotbar
  71. send +l ;2h sword
  72. send l ; 1h sword
  73. send ^l ; knife
  74. return ;end of script
  75.  
  76. *+e:: ; this script is for my disable
  77. send +e ;2h sword
  78. send +h ; bow
  79. send !u ;sword
  80. send !i ;knife
  81. return ;end of script
  82.  
  83. *f:: ; this script is for my power attack
  84. send f ;2h sword
  85. send !k ;sword
  86. send !l ;knife
  87. return ;end of script
  88.  
  89. ^p::Suspend ;this will make control+p PAUSE ALL HOTKEYS. useful for typing in chat. remember to ;turn off again when done typing.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement