Advertisement
xegaJ

[Runecrafting] Natures

Oct 8th, 2016
3,599
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ; Contact me for any questions on Reddit: /u/xegaJ
  2. ; Play in fixed mode, make sure that you have the Esc. option enabled in your settings => check the gif;https://gfycat.com/InnocentFrigidGrayfox, and you should always use bank fillers => check the image http://i.imgur.com/IcOoEXe.png
  3.  
  4. #If WinActive("RuneLoader") or WinActive("Old School RuneScape") or WinActive("OSBuddy") or WinActive("OSBuddy Pro") ; This piece of code makes sure that the AHK script only works in a specific program/game window, this comes in handy if you don't feel like suspending/pausing the AHK script whenever you want to use the keys in another window such as Chrome/Netflix. Change it to "OSBuddy"/"OSBuddy Pro"/"RuneLoader" if you're using any 3rd party client.
  5.  
  6. 1::RButton ; Right click
  7. return
  8.  
  9. 2::MouseMove, 0, 74, 1, R ; Drops your cursor down to withdraw the essence from your bank
  10. return
  11.  
  12. 3::Click ; (left) click
  13. return
  14.  
  15. q::RButton ; Right click
  16. return
  17.  
  18. W::MouseMove, 0, 38, 1, R ; Drops your cursor down to empty the rune pouch
  19. return
  20.  
  21. E::Click ; (left) click
  22. return
  23.  
  24. 4::ESC ; Close the bank window
  25.  
  26. `:: ; Pressing ` (~/console key) turns the AHK icon in your system tray to red to let you know that's it's suspended.
  27.     Suspend, Permit
  28.     if not A_IsSuspended
  29.     {
  30.         Menu, Tray, Icon, %A_AhkPath%, 5, 1
  31.         Suspend, On
  32.     }
  33.     else
  34.     {
  35.         Menu, Tray, Icon, %A_AhkPath%, 1, 0
  36.         Suspend, Off
  37.     }
  38.     return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement