What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

[Plugin] BGRequeue 2

p0rt3m

New Member
Joined
Sep 23, 2010
Messages
17
Reaction score
1
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 :D

Here it is... have fun with it....
Tested with HB 2.0.0.4001 for WoW Patch 4.0.6 (:
 

Attachments

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
 
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

I'd like to know that as well if anyones willing to share =)
 
Yeah, it works, but it requeues a little too fast for my liking.
 
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? :P wanting to change the delays and maybe add a random timer 6-9 minutes do to the recent patch
 
off course :D

Just edit it like you want it... but pls post in the thread an give credits :P
 
off course :D

Just edit it like you want it... but pls post in the thread an give credits :P

ty :D 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)");
            }
 
Last edited:
Add this after line 32 to requeue second BG:
Code:
Lua.DoString("AcceptBattlefieldPort(2,0)");
 
Works great; Cut my BG queues down to nothing! Thanks for the contribution!
 
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?
 
Last edited:
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?
 
Last edited:
Back
Top