Hey, Original idea: clanstyles This is much faster to go for BG invites... instead of waiting 14 to 20 minutes... Usually takes 2-3 Minutes for me to join a BG. Thanks to clanstyles for the idea. Simple Plugin that rejoins the queue every one minute Here it is... have fun with it.... Tested with HB 2.0.0.4001 for WoW Patch 4.0.6
What could I change in the code of the plugin so it will wait a while longer? Because my ques take longer and it never seems to pop for me. Thanks for the plugin btw
It requeues every minute... you know that theres a bug atm... after 3-4 requeues you have an instant invite For me workes perfectly getting 4 BGS / H instead of 2 BGS / H Update... http://www.mmowned.com/forums/world-of-warcraft/exploits/318764-new-way-instant-bg-queue.html <-- you see Cheers...
if you change the line if (Battlegrounds.GetQueuedBattlegroundWaitTime(0).Minutes > new TimeSpan(0, 0, 0, 30, 0).Minutes) { WriteLog("Waited one minute -> requeue!"); Lua.DoString("AcceptBattlefieldPort(1,0)"); if (Battlegrounds.GetQueuedBattlegroundWaitTime(0).Minutes > new TimeSpan(0, 0, 0, 180, 0).Minutes) { WriteLog("Waited six minute -> requeue!"); Lua.DoString("AcceptBattlefieldPort(1,0)");
permission to modify reque? wanting to change the delays and maybe add a random timer 6-9 minutes do to the recent patch
ty i just modified the offsets like the original for 15 minute ques because it seems the BG glitch was fixed maybe? not confirmed but for me it quit working changed this line to 15 minutes Code: if (Battlegrounds.GetQueuedBattlegroundWaitTime(0).Minutes > new TimeSpan(0, 0, 0, 520, 0).Minutes) { WriteLog("Waited 15 minutes -> requeue!"); Lua.DoString("AcceptBattlefieldPort(1,0)"); }
does this still work? doesn't seem like it to me, has a fix been patched? edit; yup works, had to restart wow.exe. is there a way to change it to say 20 seconds instead of 60? what do I change?
Yeah BG Glitch isn't working for me anymore. How do I change how long it waits. I think I'd prefer it to wait 5 minutes instead. edit- worked after 9 requeues. I'd still like to change the wait time to a little longer. I see the line where it says: Code: if (Battlegrounds.GetQueuedBattlegroundWaitTime(0).Minutes > new TimeSpan(0, 0, 0, 30, 0).Minutes) but I'm not sure how that translates to 1 minute. Above shinavaka changed the "30" to "520" but I'm not sure how that changed 30=1 min to 520=15 min. Any help?