-
Wintergrasp Accept Que
Hey guys. I was trying to create a macro to accept all of the confirmation boxes when Wintergrasp battles are about to begin. I use the one below for BGs, but it doesn't work for WG.
/script AcceptBattlefieldPort(1,1)
Any ideas what can be done to get one like this to work with WG?
Thanks!
-
I thought that the script you posted was no longer functional for all BGs. I thought they made it protected a few patches ago.
-
Actually it still works....I use it all the time almost every day.
-
Cool :) It must have just been the addons that auto accepted, but you can still push a macro to accept.
-
Try one of those scripts that tells you the name of the button your mouse is pointing at next time you are about to enter WG.
-
hm...very interesting idea. I'll give it a shot and post my results. Good tip!!
-
This should do it:
/click StaticPopup1Button1
-Oath
-
-
Confirmed! Oath, thank you very much! You saved me many hours of trial and error!
<3
-
If you wanna know what a button name is, copy the following and put it into a macro / keybinding:
/run local f = GetMouseFocus(); if f then DEFAULT_CHAT_FRAME:AddMessage(f:GetName()) end
Mouse-over the button and hit your keybinding and it will tell you the name of the button in your chat window.
This and other macro goodies, can be found here:
http://www.dual-boxing.com/wiki/inde...ro:Using_Click
-Oath