I've now levelled three characters from 85-90, one from 60-80, two from 80-85 and a check to see how fast from level 1 was I did a 1-40. So for some of the questions about time taken, heirlooms etc, here are some answers.
Firstly, heirlooms do work. As does the guild perk, so from 1-40 with guild perk and 5 looms (+55% xp) , took just under 3 hours.
From 60-70 was 20 mins per level, 70-80 was around 25 mins per level, 80-85 was around 30 mins per level (with only 3 looms for all examples), , I was using 2 accounts, with a 25-14-14 set up on each. In addition I have yielded around 25-30 flawless battlestones since then and have made 50k gold so far.
Now to the questions about why some of you can't queue with others. The general, and very likely hypothesis is that there are pvp battle pet battlegroups, like arena and rbg battlegroups. However, each battle.net account is assigned to a certain battlegroup, so no matter how many wow accounts you start in that battle.net, you will never get yourself when you queue. I have 3 battle.net accounts, with numerous accounts I'd opened on each (using the free 7-day trial come back to wow promotions and what not) and I am in the same battlegroup as myself on battle.net 2 and 3, but number 1 is on a different battlegroup.
The easiest and fastest way to check what battlegroup you are on is by simply checking the average queue time when you queue up. If they are identical in time, then you are on the same pvp pet battlegroup and this exploit will work for you. If the average times are different, you are not on the same battlegroup with that battle.net.
Once I knew which of my battle.nets were on the same battlegroup as one another, I just xferred my chars across to battle.net account 2, and boosted it with battle.net 3. Sure it's £15 a pop for me but the time it takes to do this ~6 hours 85-90, saves 20 hours of levelling.
No matter what realm, faction or level your character is, as long as that battle.net is in the same battlegroup as another battle.net who you want to face, you will queue against them as long as you have an identical pet level set up, or very very similar (but non-identical will create longer queues).
TL/DR:
1) Loom xp bonuses and guild perks work
2) There are battle.net battlegroups, any character in a certain realm, faction or account on a battle.net is in that battlegroup, the only way to change it is to xfer characters to other battlenets.
3) To check if you and your friends bnets are on the same pvp pet battlegroup, check that the average queue time is the same.
Hope this helped answer any questions
Last edited by oblizzion19; 05-12-2013 at 07:05 AM.
how can i get this automated ?
This piece of autoit3 code gets the position and color to allow you to change my or any other script.Code:HotKeySet("{F9}", "getpos") Func Egetpos() Local $pos = MouseGetPos() MsgBox(0, "x, y is", $pos[0] & "," & $pos[1]) Local $var = PixelGetColor($pos[0], $pos[1]) MsgBox(0, "color is", $var) Exit 0;;Exits the program EndFunc while 1 sleep(500) WEnd
thanks your script works ! btw. autoit3 have a program called "AutoIt Window Info" so you actually dont need a other script to get the informations![]()
I like that you took the time to write this, but I haven't been able to queue with my battlechest account and we have the same queue times. So there must be something else that's keeping it from working, but some of them take too long to determine, such as the achievement difference between accounts. I really want someone to say that this doesn't matter for them, as in, account one: 100ish points, account 2: 30, but both can still be matched up together. It sucks because it's almost worth it to just keep buying battlechest until you get one that matches up with the account you want boosted when you take into account how fast you can level characters, providing you with the least amount of time spent.
does this work at any level??
NOTE:THIS WILL DO MOUSE CLICK INSTEAD OF ALT+TAB
please edit #$MC_X= (XXX) #$MC_Y= (XXX) With your co-ordinates and #$MC_C= (XXXXXX) for the pixel colour to the windows taskbar tabs like these (http://images.devs-on.net/Image/dVjG...APX-Region.png)
Autoit Script Running on Windows 8 With Classic Taskbar -
Just Updated a Script to Run
1280x720 Res [Wide] Windowed maximized not full screen. Default UI no Addons. UI SCALE = ONE TICK RIGHT from smallest. Ill get a picture http://images.devs-on.net/Image/4M9g...f1V-Region.png
Please go back through the pages for the Autoit script for colour and x & y co-ords and edit if this does not work for you! I will not support further development / edit changes for other screen rezolutions as all the information is on this thread already.
Autoit is by far the easiest to use to create a new script / modify a already made script So thanks to...... afghanjohnny for the autoitscript and Colour X&Y script , Kite-X for the original script, y asdfx123 for Macros for fast user pbattles.
afghanjohnny is offline
Code:Func ExitProg() Exit 0;;Exits the program EndFunc $On = False #Find button X, Y, Color $FB_X=623 $FB_Y=681 $FB_C=2105376 #Accept button X & Y $AB_X=893 $AB_Y=307 $AB_C=460551 #First Pet X & Y $FP_X=760 $FP_Y=903 $FP_C=3154176 #Forfeit flag X & Y $FF_X=1020 $FF_Y=1010 $FF_C=6514010 #Mouse Click X & Y Tab $MC_X=293 $MC_Y=1063 $MC_C=16777215 #Mouse Click X & Y TABB $MT_X=466 $MT_Y=1064 $MT_C=10593964 While 1 While $On = True $var = 1 sleep(35) While $var <> $FB_C sleep(5) $var = PixelGetColor($FB_X, $FB_Y) #MsgBox(0, "x, y & color is", $FB_X & "," & $FB_Y & "," & $var) WEnd MouseClick("left",$FB_X, $FB_Y,1) sleep(5) MouseClick("left",$MC_X, $MC_Y,1) sleep(5) MouseClick("left",$FB_X, $FB_Y,1) sleep(5) While $var <> $AB_C sleep(5) $var = PixelGetColor($AB_X, $AB_Y) WEnd MouseClick("left",$AB_X, $AB_Y,1) sleep(5) MouseClick("left",$MT_X, $MT_Y,1) sleep(100) MouseClick("left",$AB_X, $AB_Y,1) sleep(5) MouseClick("left",$MC_X, $MC_Y,1) sleep(200) While $var <> $FP_C sleep(1000) $var = PixelGetColor($FP_X, $FP_Y) WEnd MouseClick("left",$FP_X, $FP_Y,1) sleep(5) MouseClick("left",$MT_X, $MT_Y,1) sleep(5) While $var <> $FF_C sleep(5) $var = PixelGetColor($FF_X,$FF_Y) WEnd MouseClick("left",$FF_X,$FF_Y,1) sleep(3000) WEnd Sleep(100) WEnd Func StartStop() If $On = False Then $On = True Else $On = False EndIf EndFunc
Last edited by Hybrin; 05-11-2013 at 05:41 PM.
I'm using Autoit3 and I need some help. I'm a total noob at this..
What I'm not sure about is the timing for alt tab. It moves the mouse for account "A" to "find battle" but doesn't enter..it just alt tabs and then does enter for the other account.
This has the behavior regardless of which one I start.
Any ideas?
I have a few questions.
Q: What would be the cheapest way to start doing this?
I'm thinking a battle chest + time card. Anyone correct me if I'm wrong.
Q: If I am using a battle chest account; Can I use a level 5 (min. req lvl to train pet battles) character to boost my main account 85 to 90?
Q: Can I match up cross faction? Horde v Alliance?