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

User Tag List

Page 20 of 45 FirstFirst ... 161718192021222324 ... LastLast
Results 286 to 300 of 673
  1. #286
    saak's Avatar Member
    Reputation
    8
    Join Date
    Oct 2012
    Posts
    87
    Thanks G/R
    1/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    same problem here... no quee for me.... tested my main account with 3 other accounts, both horde and alliance. tested other realms too... not working vor me @ EU

    How to get 14m Exp/Hour 85-90 [Video]
  2. #287
    Gohard's Avatar Private
    Reputation
    1
    Join Date
    Jan 2013
    Posts
    12
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Am using your script atm DrMight, but I can't seem to get it to work.
    I am playing on 1280x720 [Wide] resolution.
    Have replaced all of the pictures, in the exact same size. All of em in 24bit.
    Yet, when I start the script, it goes back and forth between the wow windows, renames them to wow-win and wow-loose, and afterwards it does nothing.
    Any ideas?
    Last edited by Gohard; 05-16-2013 at 04:13 AM.

  3. #288
    dell193's Avatar Member
    Reputation
    1
    Join Date
    Dec 2007
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    working, thanks! tested 10 different accounts and finally found one that works! @ EU

  4. #289
    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 Gohard View Post
    Am using your script atm DrMight, but I can't seem to get it to work.
    I am playing on 1280x720 [Wide] resolution.
    Have replaced all of the pictures, in the exact same size. All of em in 24bit.
    Yet, when I start the script, it goes back and forth between the wow windows, renames them to wow-win and wow-loose, and afterwards it does nothing.
    Any ideas?
    The next thing it does, is looking for the content of 'find.bmp'

    You have the Pet Journal open on both windows?
    There is no extra white pixels in the find.bmp after you replaced it?
    The content of find.bmp is 1:1 scale screenshot from the game?


    You could try increase the tolerance of the image search it does by changing the following
    Line 60 & 72
    Code:
    $Search = _ImageSearch('find.bmp', 1, $FB_X, $FB_Y, 100)
    to
    Code:
    $Search = _ImageSearch('find.bmp', 1, $FB_X, $FB_Y, 115)
    Be warned though, if you increase it too much, it would bug out and click random other places (started doing this at 140 when I tested)

  5. #290
    imleg's Avatar Member
    Reputation
    1
    Join Date
    May 2013
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    hi,
    i'm using the ahk script from Kite-X and very grateful for that. can somebody explain to me pls if there is a simple possibility furthermore do something else like surfing in the web, while autohotkey does his job?
    ...ore therefore i would have to use autoit?
    thx for any help

  6. #291
    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
    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
    There is no need to be condescending. I simply asked for some one to clarify specifically what must be done. Thank you.

  7. #292
    Kite-X's Avatar Member
    Reputation
    6
    Join Date
    Dec 2009
    Posts
    41
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    No this is not possible with AHK.
    There are bots which can do this but the risk of a ban is extrem high.
    My script is more or less safe. But you still could get an 72h ban for this.

  8. #293
    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)
    Since i got some PM's asking how i set up everything to get it working, i will just write down here so i dont have to answer everyone..

    I am using the Autoit Script posted by afghanjohnny, only adjusted it to my needs to get it working.

    This is my adjusted code (1680x1050 Fullscreen Windowed)

    Code:
    ;;Version 1.1.1
    
    HotKeySet("{F7}", "getpos")
    HotKeySet("{F9}", "ExitProg")
    HotKeySet("{F8}", "StartStop")
    
    #Find button X, Y, Color
    $FB_X=676
    $FB_Y=708
    $FB_C=6883079
    
    #Accept button X, Y, Color
    $AB_X=802
    $AB_Y=307
    $AB_C=13571595
    
    #First Pet X, Y, Color
    $FP_X=621
    $FP_Y=912
    $FP_C=46080
    
    #Forfeit flag X, Y, Color
    $FF_X=902
    $FF_Y=996
    $FF_C=14080202
    
    Func getpos()
    	Local $pos = MouseGetPos()
    	MsgBox(0, "Setup", "x is: " & $pos[0] & ", y is: " & $pos[1])
    	Local $col = PixelGetColor($pos[0], $pos[1])
    	MsgBox(0, "Setup", "color is: " & $col)
    EndFunc
    
    Func ExitProg()
    	Exit 0;;Exits the program
    EndFunc
    
    $On = False
    
    While 1
    	While $On = True
    		$var = 1
    		sleep(2000)
    		While $var <> $FB_C
    	      sleep(500)
    	      $var = PixelGetColor($FB_X, $FB_Y)
    		WEnd
    		MouseClick("left",$FB_X, $FB_Y,1)
    		sleep(500)
    Send("{ALTDOWN}{ESC}{ALTUP}")
    sleep(2000)
    MouseClick("left",$FB_X, $FB_Y,1)
    sleep(500)
    MouseMove($AB_X, $AB_Y, 10)
    While $var <> $AB_C
    	sleep(1000)
    	$var = PixelGetColor($AB_X, $AB_Y)
    WEnd
    MouseClick("left",$AB_X, $AB_Y,1)
    sleep(500)
    Send("{ALTDOWN}{SHIFTDOWN}{ESC}{SHIFTUP}{ALTUP}")
    sleep(1000)
    MouseClick("left",$AB_X, $AB_Y,1)
    sleep(500)
    Send("{ALTDOWN}{ESC}{ALTUP}")
    sleep(2000)
    While $var <> $FP_C
    	sleep(1000)
    	$var = PixelGetColor($FP_X, $FP_Y)
    WEnd
    MouseClick("left",$FP_X, $FP_Y,1)
    sleep(300)
    Send("{ALTDOWN}{SHIFTDOWN}{ESC}{SHIFTUP}{ALTUP}")
    sleep(500)
    While $var <> $FF_C
    	sleep(500)
    	$var = PixelGetColor($FF_X,$FF_Y)
    WEnd
    MouseClick("left",$FF_X,$FF_Y,1)
    sleep(4500)
    	WEnd
    	Sleep(100)
    WEnd
    
    Func StartStop()
    	If $On = False Then
    		MsgBox(0, "Start", "Welcome, if nothing happens, run setup by pressing F7 and change the values in the script.")
    		MsgBox(0, "Start", "First Im going to run a little script in your window.")
    		Sleep(1000)
    		send ("{Enter}")
    		send("/run PetBattleFrame.BottomFrame.ForfeitButton:SetScript(""OnClick"", function() C_PetBattles.ForfeitGame() end)")
    		send ("{Enter}")
    		$On = True
    	Else
    		$On = False
    	EndIf
    EndFunc
    What did i change?

    Not much.. I am using Windows 8, so Alt+Tab didnt work for me. If my adjusted script doesnt change windows for you and you are not using windows 8, change all these lines

    Code:
    Send("{ALTDOWN}{SHIFTDOWN}{ESC}{SHIFTUP}{ALTUP}")
    and
    Send("{ALTDOWN}{ESC}{ALTUP}")
    to

    Code:
    Send("{ALTDOWN}{TAB}{ALTUP}")
    coordinates and colors of course, and i added one line

    Code:
    MouseMove($AB_X, $AB_Y, 10)
    This makes to cursor move to the position of your accept button before it pops up and then scans for the "active" accept button color. Didn't get it working the other way, so this was my solution for finding the accept button.

    I didnt use his built in script to get colors and coordinates, I used this one (its also originally from afghanjohnny, just added to show me coordinates and color at once cause i got confused from the output of his built in "getpos" script ) :

    Code:
    HotKeySet("{F9}", "ExitProg")
    
    Func ExitProg()
    	Local $pos = MouseGetPos()
    
    	Local $var = PixelGetColor($pos[0], $pos[1])
    MsgBox(0, "x, y & is", $pos[0] & "," & $pos[1] & "," & $var)
    Exit 0;;Exits the program
    EndFunc
    
    while 1
    	sleep(500)
    WEnd
    Look at this picture to see where I got the colors and coordinates from Image - TinyPic - Free Image Hosting, Photo Sharing & Video Hosting
    Just start the second script, move your mouse to the postition you want to get coords / colors for and press F9
    Dont look at pet levels, just queued up to make the screenshots. I usually use 25 - 11 - 4.

    Again, all credits for the scripts go to afghanjohnny, I just want to share my way of getting it to work. Using this methods, I adjusted it for 3 of my guildmates and its working without any problems. Leveled 1 character so far in about 1 day to 90 and just finished my bonus rolls for the next 30 weeks

  9. #294
    imleg's Avatar Member
    Reputation
    1
    Join Date
    May 2013
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Kite-X View Post
    No this is not possible with AHK.
    There are bots which can do this but the risk of a ban is extrem high.
    My script is more or less safe. But you still could get an 72h ban for this.
    ok thx for your info. im using now anyway your second script version, which is a lot faster!
    i had to edit the delay a bit higher on a few lines. runs now better but still here and there i have to manually carry on.

  10. #295
    Gohard's Avatar Private
    Reputation
    1
    Join Date
    Jan 2013
    Posts
    12
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by DrMight View Post
    The next thing it does, is looking for the content of 'find.bmp'

    You have the Pet Journal open on both windows?
    There is no extra white pixels in the find.bmp after you replaced it?
    The content of find.bmp is 1:1 scale screenshot from the game?


    You could try increase the tolerance of the image search it does by changing the following
    Line 60 & 72
    Code:
    $Search = _ImageSearch('find.bmp', 1, $FB_X, $FB_Y, 100)
    to
    Code:
    $Search = _ImageSearch('find.bmp', 1, $FB_X, $FB_Y, 115)
    Be warned though, if you increase it too much, it would bug out and click random other places (started doing this at 140 when I tested)
    Replaced all pictures again, and turned out it was a scaling issue
    +Rep for a script that is not only awesome as hell, but very easy to use aswell

  11. #296
    darkayo's Avatar Member
    Reputation
    3
    Join Date
    Jan 2008
    Posts
    191
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is it fixed ? Can't wintrade since servers reboot

    Edit : It's working again, strange lol
    Last edited by darkayo; 05-17-2013 at 01:26 AM.

  12. #297
    DediShot's Avatar Member
    Reputation
    1
    Join Date
    Apr 2013
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nice Video

  13. #298
    afghanjohnny's Avatar Member
    Reputation
    26
    Join Date
    Sep 2009
    Posts
    37
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @chumii

    Awesome you got it to work so well for you!

  14. #299
    taiten's Avatar Private
    Reputation
    1
    Join Date
    May 2013
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I have leveled a Druid vom 7 to 90 with this method in pretty much exactly 1 day /played. How my setup looked like:

    druid was alliance aegwynn(EU) lvl7 pets(25;9;9)(common and uncommon)
    2nd acc horde mannoroth(EU)lvl90 pets (25;9;9)(all common)

    I used a self written pixel-Bot written in Java. so no LUA/Memory-reading

    But I'm here for another reason: to warn you!
    just an hour ago my account got suspended for 72h for exploiting-refering to my druid.

    >>...
    >>Account Action: Suspension (72 Hours)
    >>
    >>
    >>Circumventing normal game mechanics has a negative impact on the game experience of other customers.
    >>
    >>Type of Violation: Exploitation
    >>Category of Violation: Third Party Program
    >>Character Name Involved:
    >>...

    (the 2nd account i used for pushing did not get suspended!)
    Last edited by taiten; 05-17-2013 at 03:05 AM.

  15. #300
    nexaren's Avatar Sergeant
    Reputation
    7
    Join Date
    Sep 2012
    Posts
    64
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    A big thank you to danatoth the OP. I was amazed how fast this made 85-90. Ridiculous speed!

    I used the add-on for pet battle binds located here:
    Battle Pet Binds - Battle Pets - World of Warcraft Addons - Curse

    I then automated the whole thing with JitBit MacroRecorder, broadcasting my keystrokes to both clients with Keyclone. Worked like a charm!

    So that got the wheels going in my head... Why not win trade and level two low level alts at the same time, fully automated? That also totally works, and I did it with two level 1 toons. Going to see how many levels I can get in a small test bed later (a few hours worth) and report my results. Don't want to raise too many alarms.

Page 20 of 45 FirstFirst ... 161718192021222324 ... 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 03:06 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