Glory Potion buyer menu

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 23
  1. #1
    laudon's Avatar Member
    Reputation
    10
    Join Date
    May 2008
    Posts
    66
    Thanks G/R
    4/2
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Glory Potion buyer

    *this script requres auto hotkey*
    Script is designed to buy potions, then sell them so you can afk 100% while it buys them.

    Hold f9 while in Neverwinter to break out of the loop.
    Press F2 to start buying potions after you edit the coordinates.
    Run script in admin mode if it seems to do nothing when you're in neverwinter!

    tool to find coordinates of your cursor (ahk script)
    Press caps lock after you activate it, and a small text box will show you your current cursor position. Press printscreen to copy the coords to your clipboard.
    pastebin - Anonymous - post number 2414853

    Buy potions.ahk
    Code:
    F2::
    Loop {
    	if GetKeyState("F9", "P") ;Exit if f9 is pressed
          	  break
    	Loop, 4
    	{
    		if GetKeyState("F9", "P") ;Exit if f9 is pressed
          	  break
    		;set coords of buy button ( x, y) EDIT THE LINE BELOW
    		MouseMove, x,y
    		sleep, 100
    		Send {LButton}
    
    			sleep, 20 ;send 99 to buy 20 potions. 
    			Send {9}
    			Send {9}
     
    		;set coords of okay button (x, y) EDIT THE LINE BELOW
    		MouseMove, x,y
    		sleep, 100
    		Send {LButton}
    	}
    	;set coords of potion to sell (inventory slot) EDIT THE LINE BELOW
    	MouseMove, x,y
    	sleep, 60
    	Send {LButton}
    	Send {LButton}
    
    	;set coords of buy tab (tab on the left of the potions after the sell window pops up) EDIT THE LINE BELOW
    	MouseMove, x,y
    	Send {LButton}
    	
    }
    Video Instructions
    http://www.youtube.com/watch?v=UrOwlrpxsr0

    Instructions
    1. Get both the mouse coordinate ahk script and the potion buyer script. (copy them both into a text document and save it as a .ahk)
    2. right click the potion buying script and select edit.
    3. double click the mouse coordinate ahk script to start it up.
    4. Press caps lock to start finding coordinates.
    5. Go to a pvp potion vendor.
    6. Press print screen to copy the coordinates to the clipboard and then paste them in the spots labeled EDIT THE LINE BELOW. go here if you don't know where to place your cursor. http://puu.sh/3tqmY.jpg
    7. Don't forget to format out the = and put a comma between the numbers.
    8. Save and run.


    Example end script
    Code:
    F2::
    Loop {
    	if GetKeyState("F9", "P") ;Exit if f9 is pressed
          	  break
    	Loop, 4
    	{
    		if GetKeyState("F9", "P") ;Exit if f9 is pressed
          	  break
    		;set coords of buy button ( x, y) EDIT THE LINE BELOW
    		MouseMove, 653,894
    		sleep, 100
    		Send {LButton}
    
    			sleep, 20 ;send 99 to buy 20 potions. 
    			Send {9}
    			Send {9}
     
    		;set coords of okay button (x, y) EDIT THE LINE BELOW
    		MouseMove, 1057,706
    		sleep, 100
    		Send {LButton}
    	}
    	;set coords of potion to sell (inventory slot) EDIT THE LINE BELOW
    	MouseMove, 1592,546
    	sleep, 60
    	Send {LButton}
    	Send {LButton}
    
    	;set coords of buy tab (tab on the left of the potions after the sell window pops up) EDIT THE LINE BELOW
    	MouseMove, 266,382
    	Send {LButton}
    	
    }

    Gold to glory rates

    1 glory potion = 25 copper | 25k glory spent = 62.5 gold
    4 glory potion = 50 copper | 25k glory spent = 31.25 gold
    7 glory potion = 1 silver | 25k glory spent = 35.71 gold
    11 glory potion = 1.5 silver | 25k glory spent = 34.09 gold
    15 glory potion = 2 silver | 25k glory spent = 33.33 gold
    Last edited by laudon; 07-05-2013 at 02:29 PM.

    Glory Potion buyer
  2. #2
    hasancanan's Avatar Corporal
    Reputation
    1
    Join Date
    Oct 2012
    Posts
    24
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    ty now work
    Last edited by hasancanan; 06-16-2013 at 04:50 AM.

  3. #3
    Dekar's Avatar Private
    Reputation
    1
    Join Date
    Jun 2013
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    mm can't get it in to work.

    I've installed the latest autohotkey, default install (64 bit unicode)
    Copied in the script, made all the screenshots and cropped them correctly.

    And ran the script while at the vendor.

    It enters the values, and all the keyboard commands and mouse clicks, but it won't move my mouse to make the clicks happen in the right place..

    Any ideas how to fix?

  4. #4
    laudon's Avatar Member
    Reputation
    10
    Join Date
    May 2008
    Posts
    66
    Thanks G/R
    4/2
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Dekar View Post
    mm can't get it in to work.

    I've installed the latest autohotkey, default install (64 bit unicode)
    Copied in the script, made all the screenshots and cropped them correctly.

    And ran the script while at the vendor.

    It enters the values, and all the keyboard commands and mouse clicks, but it won't move my mouse to make the clicks happen in the right place..

    Any ideas how to fix?
    people have said the mouseclick command isn't working for them on the AHK forum. I'll change it to a different command and we can see if it works then.

  5. #5
    laudon's Avatar Member
    Reputation
    10
    Join Date
    May 2008
    Posts
    66
    Thanks G/R
    4/2
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I updated the script to use a send and mousemove. see if it works for you now .

  6. #6
    Dekar's Avatar Private
    Reputation
    1
    Join Date
    Jun 2013
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Still no go. Does the clicks, does the key input, but doesn't move my mouse =/

  7. #7
    laudon's Avatar Member
    Reputation
    10
    Join Date
    May 2008
    Posts
    66
    Thanks G/R
    4/2
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Dekar View Post
    Still no go. Does the clicks, does the key input, but doesn't move my mouse =/
    your buy.png or ok.png might not be right. upload what they look like so i can see.

  8. #8
    zandokan's Avatar Sergeant
    Reputation
    8
    Join Date
    Jul 2012
    Posts
    40
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Attachment 14586Attachment 14587Attachment 14588
    I did these ones but is not working for me Im in a 1280 by 800 resolution any idea?
    Since all three items/objects are on the same place every time unless i move my bag couldn't we use coordinates instead?
    Last edited by zandokan; 06-28-2013 at 01:33 PM.

  9. #9
    nazboz's Avatar Member
    Reputation
    1
    Join Date
    Jun 2013
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    helppppppppppppppppp

    Originally Posted by zandokan View Post
    Attachment 14586Attachment 14587Attachment 14588
    I did these ones but is not working for me Im in a 1280 by 800 resolution any idea?
    Since all three items/objects are on the same place every time unless i move my bag couldn't we use coordinates instead?




    please fix this ^^ or help more on this , its almosts works!!!

  10. #10
    laudon's Avatar Member
    Reputation
    10
    Join Date
    May 2008
    Posts
    66
    Thanks G/R
    4/2
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I changed it to coordinates since people are having a hard time with image search.

  11. #11
    Triquetra's Avatar Private
    Reputation
    1
    Join Date
    Jun 2013
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thank you for this script!
    My wrists and time management skills are in a great debt to you!

  12. #12
    Tevarin's Avatar Member
    Reputation
    1
    Join Date
    Jun 2013
    Posts
    22
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I edited the coordinates appropriately, but the program won't even run. No clicks or anything. I click 'reload this script' and nothing.

  13. #13
    ronshohan's Avatar Member
    Reputation
    1
    Join Date
    May 2013
    Posts
    8
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks a ton for this... Kudos

  14. #14
    laudon's Avatar Member
    Reputation
    10
    Join Date
    May 2008
    Posts
    66
    Thanks G/R
    4/2
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Tevarin View Post
    I edited the coordinates appropriately, but the program won't even run. No clicks or anything. I click 'reload this script' and nothing.
    right click script and run as admin.
    also, I made the script buy potions more efficiently.
    Last edited by laudon; 07-04-2013 at 11:55 PM.

  15. #15
    theking26's Avatar Member CoreCoins Purchaser
    Reputation
    1
    Join Date
    May 2013
    Posts
    17
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    can u give me full instruction abt how to run the script plz.

Page 1 of 2 12 LastLast

Similar Threads

  1. Hey mages, rember the glory farming days?
    By coltcannon69 in forum World of Warcraft Guides
    Replies: 11
    Last Post: 04-26-2007, 07:55 PM
  2. autoit auto seller / buyer
    By orangegold in forum World of Warcraft Bots and Programs
    Replies: 6
    Last Post: 04-24-2007, 06:55 AM
  3. Long potion effects
    By Datonking in forum World of Warcraft Exploits
    Replies: 21
    Last Post: 09-20-2006, 09:50 AM
  4. Extra Healing Potions in PvP
    By Slinky118 in forum World of Warcraft Guides
    Replies: 4
    Last Post: 08-17-2006, 09:46 AM
  5. [Guide] Alchemy Potions (And where to get)
    By chaosrevenge in forum World of Warcraft Guides
    Replies: 0
    Last Post: 06-11-2006, 01:02 PM
All times are GMT -5. The time now is 07:33 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search