How to get 14m Exp/Hour 85-90 [Video] menu

Shout-Out

User Tag List

Page 19 of 45 FirstFirst ... 151617181920212223 ... LastLast
Results 271 to 285 of 673
  1. #271
    chumii's Avatar Master Sergeant
    Reputation
    7
    Join Date
    Aug 2011
    Posts
    104
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    got it working now.. maybe a tip for anyone who has problems with finding the accept button.

    in the autoit script posted a few pages back, it scans for the "normal" accept button color.. i mean the more dark red when not hovering with your mouse.. i solved it by first moving the mouse to the $AB_X / $AB_Y coordinates and then scan for the brighter color the button gets, when your cursor is over it.. easier to get the right color code in my opinion and like i said, it solved my problem.. works fluently now, leveling a warlock right now, its a goblin so i couldnt start from level one and needed some time to adjust the script, but right now i am lvl 88 1/2 and got /played 1 day 44min.. pretty nice

    big thanks to all you guys posting your scripts here and danatoth of course for sharing

    How to get 14m Exp/Hour 85-90 [Video]
  2. #272
    jakoblykke's Avatar Private
    Reputation
    1
    Join Date
    May 2013
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    nearly working

    Originally Posted by DrMight View Post
    Bored at work today, so I made a new & improved AutoIt script utilizing _ImageSearch.
    I've tested this on a variety of resolutions from 1024x764 to 1680x1050 and it seems to work on most of them.

    Start the script, open both WoW Windows, and have them both on Alt+Tab, where the character that's supposed to win is in the topmost/active window.
    Press F8 to let the script start working, while F9 to stop it.
    Window titles are changed at the start, and used instead of tabbing back and forth, for increased stability.

    This script uses 4 different images to locate Find, Accept, First Pet & Forfeit, and you'll have to replace these if it doesn't work out of the box.
    I'm in fact pretty sure you have to replace pet.bmp as it searches for my Robo-Chick.
    Worth to note is that the script clicks in the center of the image.

    The macro/wow script to enable one-click forfeits are automatically run, but just in case, here it is:
    Code:
    /run PetBattleFrame.BottomFrame.ForfeitButton:SetScript("OnClick", function() C_PetBattles.ForfeitGame() end)
    Full bundle with everything you need, can be found -> here <-.

    The script:
    Code:
    #include 
    
    HotKeySet("{F9}", "ExitProg") 
    HotKeySet("{F8}", "StartStop") 
    
    Func ExitProg()  
       $Go = False
       Sleep(100)
       WinActivate("WoW-Win")
       Sleep(500)
       WinSetTitle("WoW-Win", "", "World of Warcraft")
       Sleep(100)
       WinActivate("WoW-Lose")
       Sleep(500)
       WinSetTitle("WoW-Lose", "", "World of Warcraft")
       Sleep(100)
       Exit 0
    EndFunc
     
    
    $Go = False
    $Step = 0
    $SubStep = 0
    
    #Find button
    $FB_X=0
    $FB_Y=0
    #Accept button
    $AB_X=0
    $AB_Y=0
    #First Pet
    $FP_X=0
    $FP_Y=0
    #Forfeit flag
    $FF_X=0
    $FF_Y=0 
    While 1
       While $Go = True
    	  While $Step = 0
    		 Sleep(500)
    		 WinSetTitle("World of Warcraft", "", "WoW-Win")
    		 Sleep(500)
    		 Send("{ALTDOWN}{TAB}{ALTUP}")
    		 Sleep(1000)
    		 WinSetTitle("World of Warcraft", "", "WoW-Lose")
    		 Sleep(100)
    		 WinActivate("WoW-Lose")
    		 Sleep(200)
    		 Send("{ENTER}")
    		 Sleep(500)
    		 Send('/run PetBattleFrame.BottomFrame.ForfeitButton:SetScript("OnClick", function() C_PetBattles.ForfeitGame() end)')
    		 Sleep(500)
    		 Send("{ENTER}")
    		 Sleep(500)
    		 $Step = 1
    	  WEnd
    	  While $Step = 1
    		 WinActivate("WoW-Win")
    		 Sleep(100)
    		 $Search = _ImageSearch('find.bmp', 1, $FB_X, $FB_Y, 100)
    		 If $Search = 1 Then
    			MouseClick("left",$FB_X, $FB_Y,1)
    			Sleep(100)
    			MouseMove(0,0,1)
    			sleep(200)
    			$Step = 2
    		 EndIf
    	  WEnd
    	  While $Step = 2
    		 WinActivate("WoW-Lose")
    		 Sleep(100)
    		 $Search = _ImageSearch('find.bmp', 1, $FB_X, $FB_Y, 100)
    		 If $Search = 1 Then
    			MouseClick("left",$FB_X, $FB_Y,1)
    			Sleep(100)
    			MouseMove(0,0,1)
    			sleep(200)
    			$Step = 3
    		 EndIf
    	  WEnd	  
    	  While $Step = 3
    		 WinActivate("WoW-Win")
    		 Sleep(100)
    		 $Search = _ImageSearch('accept.bmp', 1, $AB_X, $AB_Y, 100)
    		 If $Search = 1 Then		 
    			MouseClick("left", $AB_X, $AB_Y, 1)
    			Sleep(100)
    			MouseMove(0,0,1)
    			Sleep(200)
    			$Step = 4
    		 EndIf
    	  WEnd
    	  While $Step = 4
    		 WinActivate("WoW-Lose")
    		 Sleep(100)
    		 $Search = _ImageSearch('accept.bmp', 1, $AB_X, $AB_Y, 100)
    		 If $Search = 1 Then		 
    			MouseClick("left", $AB_X, $AB_Y, 1)
    			Sleep(100)
    			MouseMove(0,0,1)
    			Sleep(200)
    			$Step = 5
    		 EndIf
    	  WEnd
    	  While $Step = 5
    		 WinActivate("WoW-Win")
    		 Sleep(100)
    		 $Search = _ImageSearch('pet.bmp', 1, $FP_X, $FP_Y, 100)
    		 If $Search = 1 Then
    			MouseClick("left", $FP_X, $FP_Y, 1)
    			Sleep(100)
    			MouseMove(0,0,1)
    			Sleep(200)
    			$Step = 6
    		 EndIf
    	  WEnd
    	  While $Step = 6
    		 WinActivate("WoW-Lose")
    		 Sleep(100)
    		 $Search = _ImageSearch('forfeit.bmp', 1, $FF_X, $FF_Y, 100)
    		 If $Search = 1 Then
    			MouseClick("left", $FF_X, $FF_Y, 1)
    			Sleep(100)
    			MouseMove(0,0,1)
    			Sleep(2500)
    			$Step = 7
    		 EndIf
    	  WEnd
    	  While $Step = 7
    		 WinActivate("WoW-Lose")
    		 Sleep(100)
    		 $Search = _ImageSearch('find.bmp', 1, $FB_X, $FB_Y, 80)
    		 If $Search = 1 Then
    			Sleep(500)
    			$Step = 1
    		 EndIf
    	  WEnd	  
       WEnd
    WEnd
    
    Func StartStop()
    	If $Go = False Then
    		$Go = True
    	Else
    		$Go = False
    	EndIf
    EndFunc

    (Sorry for messy post, writing this stuff through Splashtop).

    Its nearly working clicking petbattle and entering and stuff but then nothing happens after that, could u help me out please ? then add daasebarn on skype

  3. #273
    DrMight's Avatar Active Member CoreCoins Purchaser
    Reputation
    60
    Join Date
    May 2011
    Posts
    39
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by jakoblykke View Post
    Its nearly working clicking petbattle and entering and stuff but then nothing happens after that, could u help me out please ? then add daasebarn on skype
    As I wrote in the post, you need to replace the image 'pet.bmp' with one of your own.
    Start a pet combat, click PrintScrn, and paste the contents to paint.
    Select the part with the portrait of your lvl 25 minipet w/ its level (look at the already existing pet.bmp), and overwrite the pet.bmp (needs to be 24bit)

  4. #274
    jakoblykke's Avatar Private
    Reputation
    1
    Join Date
    May 2013
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    yea i did that

    Originally Posted by DrMight View Post
    As I wrote in the post, you need to replace the image 'pet.bmp' with one of your own.
    Start a pet combat, click PrintScrn, and paste the contents to paint.
    Select the part with the portrait of your lvl 25 minipet w/ its level (look at the already existing pet.bmp), and overwrite the pet.bmp (needs to be 24bit)
    yea i did that somehow its just not working as intended

  5. #275
    jakoblykke's Avatar Private
    Reputation
    1
    Join Date
    May 2013
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Its working now it just dont wanna click this buttom Attachment 13946

    Nvm, i forgot the macro to forfeit in 1 click, thx mate works well! + rep for u
    Last edited by jakoblykke; 05-15-2013 at 08:14 AM.

  6. #276
    chumii's Avatar Master Sergeant
    Reputation
    7
    Join Date
    Aug 2011
    Posts
    104
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    just info for everyone:

    Level 1-90 (goblin starting area done by hand + about 1-2 h working on the script) /played at 90 1 day 3hours 16min

  7. #277
    bgr's Avatar Sergeant
    Reputation
    9
    Join Date
    Apr 2012
    Posts
    55
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I can not get matched up with my second account. Any tips? I'm using the same level, quality, and rarity pets on each account.

  8. #278
    spray12's Avatar Corporal
    Reputation
    6
    Join Date
    Jul 2011
    Posts
    31
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    So whats the fastest way to get a pet to level 25?

  9. #279
    DrMight's Avatar Active Member CoreCoins Purchaser
    Reputation
    60
    Join Date
    May 2011
    Posts
    39
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by bgr View Post
    I can not get matched up with my second account. Any tips? I'm using the same level, quality, and rarity pets on each account.
    It's mentioned earlier in the thread.
    Pet battles seems to have its own set of battlegroups, where ones entire account is in the same group.

    This would then mean the following:
    - Two players on the same realm may never be able to end up against eachother in pet battles (as they are on seperate pet battlegroups).
    - Two players that are able to group up against eachother, will be able to do so no mather what realm/faction they're on (you can boost an ally on a totally different realm than your current horde vice verca)

    And for the most efficient way of leveling pets; swap your first slot level 25 pet with a low level one, on both the characters, alternating wins to level both pets at the same time. While pet is below 25, the player will recieve reduced xp, increasing at pet lvl 15 &25.

    I might write an AutoIt script for this aswell, built somewhat equal to my previous.

    Sent from my GT-I9300 using Tapatalk 2

  10. #280
    Guvnor's Avatar Master Sergeant
    Reputation
    7
    Join Date
    Feb 2013
    Posts
    94
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by DrMight View Post
    It's mentioned earlier in the thread.
    Pet battles seems to have its own set of battlegroups, where ones entire account is in the same group.

    This would then mean the following:
    - Two players on the same realm may never be able to end up against eachother in pet battles (as they are on seperate pet battlegroups).
    - Two players that are able to group up against eachother, will be able to do so no mather what realm/faction they're on (you can boost an ally on a totally different realm than your current horde vice verca)

    And for the most efficient way of leveling pets; swap your first slot level 25 pet with a low level one, on both the characters, alternating wins to level both pets at the same time. While pet is below 25, the player will recieve reduced xp, increasing at pet lvl 15 &25.

    I might write an AutoIt script for this aswell, built somewhat equal to my previous.

    Sent from my GT-I9300 using Tapatalk 2
    I can not seem to get your script working :-/ my ress is 1280 x 768 i have changed to the ress you have stated but still no luck it just runs the macro then alt-tabs

  11. #281
    DrMight's Avatar Active Member CoreCoins Purchaser
    Reputation
    60
    Join Date
    May 2011
    Posts
    39
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    On some resolution, the buttons may be scaled differently, and all the four images need to be replaced.

    Might goes without saying, but you ofcourse need to have the petbattles ui (Shift+P -> Pet) opened.

    Sent from my GT-I9300 using Tapatalk 2

  12. #282
    Frosty1989's Avatar Master Sergeant
    Reputation
    21
    Join Date
    May 2012
    Posts
    82
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    This is amazing. +rep

  13. #283
    pavik's Avatar Member
    Reputation
    2
    Join Date
    Sep 2009
    Posts
    47
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    solved it amazing +rep to the script makers
    Last edited by pavik; 05-15-2013 at 04:11 PM.

  14. #284
    bgr's Avatar Sergeant
    Reputation
    9
    Join Date
    Apr 2012
    Posts
    55
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by DrMight View Post
    It's mentioned earlier in the thread.
    Pet battles seems to have its own set of battlegroups, where ones entire account is in the same group.

    This would then mean the following:
    - Two players on the same realm may never be able to end up against eachother in pet battles (as they are on seperate pet battlegroups).
    - Two players that are able to group up against eachother, will be able to do so no mather what realm/faction they're on (you can boost an ally on a totally different realm than your current horde vice verca)

    And for the most efficient way of leveling pets; swap your first slot level 25 pet with a low level one, on both the characters, alternating wins to level both pets at the same time. While pet is below 25, the player will recieve reduced xp, increasing at pet lvl 15 &25.

    I might write an AutoIt script for this aswell, built somewhat equal to my previous.

    Sent from my GT-I9300 using Tapatalk 2
    I understand that there are different pet battle groups. I don't understand if it is account wide, meaning that I will NEVER match up or if it is character or server wide. In other-words: What must I do to match up? New account? New character? New server?

  15. #285
    DrMight's Avatar Active Member CoreCoins Purchaser
    Reputation
    60
    Join Date
    May 2011
    Posts
    39
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by bgr View Post
    I understand that there are different pet battle groups. I don't understand if it is account wide, meaning that I will NEVER match up or if it is character or server wide. In other-words: What must I do to match up? New account? New character? New server?
    I find it fascinating that you quoted a post where I'm saying it's account wide, asking wether it's account wide.
    I then in the same post/quote say that charater/realm/faction doesn't matter at all, you'll still be able to meet the same people/second account.

    TLDR; New (Battle.net) Account
    Last edited by DrMight; 05-16-2013 at 12:44 AM.

Page 19 of 45 FirstFirst ... 151617181920212223 ... LastLast

Similar Threads

  1. [MoP] Get 9Mio Exp/Hour - 18Mio Exp/Hour rested
    By Snowee in forum World of Warcraft Exploits
    Replies: 1
    Last Post: 07-28-2012, 12:56 AM
  2. Replies: 6
    Last Post: 06-21-2008, 03:20 PM
  3. How to: Get over 1k honor an hour solo
    By SYntekz in forum World of Warcraft Exploits
    Replies: 9
    Last Post: 12-27-2006, 12:24 AM
  4. How do I get 30k an hour?
    By Clocky in forum World of Warcraft General
    Replies: 3
    Last Post: 12-06-2006, 12:41 AM
All times are GMT -5. The time now is 06:48 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search