Close
Showing results 1 to 3 of 3
  1. #1

    Default Action bar switches

    Hello.

    I am currently 3boxing. I run all the windows on one screen and broadcast buttons with AutoHotKey.
    When I am in combat the main window keeps switching from actionbar1 to actionbar2. This is very anoying and I wonder what is causing it.

    This is my ahk script:

    Code:
    ClonesPush(strKeys)
    {
    	global WowWinId1
    	global WowWinId2
    	global WowWinId3
    	IfWinNotActive, ahk_id %WowWinId1%
    		ControlSend, , %strKeys%, ahk_id %WowWinId1%
    	IfWinNotActive, ahk_id %WowWinId2%
    		ControlSend, , %strKeys%, ahk_id %WowWinId2%
    	IfWinNotActive, ahk_id %WowWinId3%
    		ControlSend, , %strKeys%, ahk_id %WowWinId3%
    
    }
    
    ;Grab unique window ID's
    WinGet, WowWinId, List, World of Warcraft
    
    ; *******************************
    ; *** Only if WoW is in focus ***
    ; *******************************
    #IfWinActive, World of Warcraft
    
    ;*** Special Functions ***
    
    ; *** Makes clones follow main ***
    ^-::ClonesPush("{- down}{- up}")
    
    ; *** Makes clones assist main ***
    ^=::ClonesPush("{= down}{= up}")
    
    ; *** Makes clones jump with main ***
    ~Space::ClonesPush("{Space down}{Space up}")
    
    ; *** Suspends HotKeys while typing on main ***
    ~Enter::Suspend, Toggle
    ~/::Suspend, On
    ~Escape::Suspend, Off
    ~r::Suspend, On
    
    ; *******************
    ; *** Hotbars 1-0 ***
    ; *******************
    ~1::ClonesPush("{= down}{= up}{1 down}{1 up}")
    ~2::ClonesPush("{= down}{= up}{2 down}{2 up}")
    ~3::ClonesPush("{= down}{= up}{3 down}{3 up}")
    ~4::ClonesPush("{= down}{= up}{4 down}{4 up}")
    ~5::ClonesPush("{= down}{= up}{5 down}{5 up}")
    ~6::ClonesPush("{= down}{= up}{6 down}{6 up}")
    ~7::ClonesPush("{= down}{= up}{7 down}{7 up}")
    ~8::ClonesPush("{= down}{= up}{8 down}{8 up}")
    ~9::ClonesPush("{= down}{= up}{9 down}{9 up}")
    ~0::ClonesPush("{= down}{= up}{0 down}{0 up}")
    
    ; ***************************
    ; *** Hotbars SHIFT(+) 1-0 ***
    ; ***************************
    ~+1::ClonesPush("{Shift down}{1 down}{1 up}{Shift up}")
    ~+2::ClonesPush("{Shift down}{2 down}{2 up}{Shift up}")
    ~+3::ClonesPush("{Shift down}{3 down}{3 up}{Shift up}")
    ~+4::ClonesPush("{Shift down}{4 down}{4 up}{Shift up}")
    ~+5::ClonesPush("{Shift down}{5 down}{5 up}{Shift up}")
    ~+6::ClonesPush("{Shift down}{6 down}{6 up}{Shift up}")
    ~+7::ClonesPush("{Shift down}{7 down}{7 up}{Shift up}")
    ~+8::ClonesPush("{Shift down}{8 down}{8 up}{Shift up}")
    ~+9::ClonesPush("{Shift down}{9 down}{9 up}{Shift up}")
    ~+0::ClonesPush("{Shift down}{0 down}{0 up}{Shift up}")
    
    ; **************************
    ; *** Hotbars CTRL(^) 1-0 ***
    ; **************************
    ~^1::ClonesPush("{Ctrl down}{1 down}{1 up}{Ctrl up}")
    ~^2::ClonesPush("{Ctrl down}{2 down}{2 up}{Ctrl up}")
    ~^3::ClonesPush("{Ctrl down}{3 down}{3 up}{Ctrl up}")
    ~^4::ClonesPush("{Ctrl down}{4 down}{4 up}{Ctrl up}")
    ~^5::ClonesPush("{Ctrl down}{5 down}{5 up}{Ctrl up}")
    ~^6::ClonesPush("{Ctrl down}{6 down}{6 up}{Ctrl up}")
    ~^7::ClonesPush("{Ctrl down}{7 down}{7 up}{Ctrl up}")
    ~^8::ClonesPush("{Ctrl down}{8 down}{8 up}{Ctrl up}")
    ~^9::ClonesPush("{Ctrl down}{9 down}{9 up}{Ctrl up}")
    ~^0::ClonesPush("{Ctrl down}{0 down}{0 up}{Ctrl up}")
    
    ;*************
    ;***Q and E***
    ;*************
    ~E::ClonesPush("{E down}{E up}")
    ~Q::ClonesPush("{Q down}{Q up}")

  2. #2

    Default

    Unbind the action bar switching in WoW - they use SHIFT+1 to SHIFT+6 by default. Bind them with something else you don't use frequently.
    Ex-WoW 5-boxer.
    Currently playing:
    Akama [Empire of Orlando]
    Zandantilus - 85 Shaman, Teebow - 85 Paladin, Kodex - 85 Rogue.

    Definitely going to 4-box Diablo 3 after testing the beta for how well this would work.

  3. #3

    Default

    I was also having this problem. But I have shift+1 through shift+= bound to my fourth action bar.

    My problem turned out to be the shift+mousescrollup/down that was the secondary keybind.
    Whisperwind Alliance (70): Zanir
    Whisperwind Alliance (60): Zarshad, Zanim, Zanil, Zarshan, Zennara
    Archimonde Horde (21): Zennavre, Zienalla, Zelnaara
    Zul'jin Horde (13): Zenaar, Zenive, Zelnaara

Similar Threads

  1. Back in action, but what to do?
    By Daki in forum General WoW Discussion
    Replies: 12
    Last Post: 03-15-2009, 10:44 PM
  2. Good Action Bar Mod
    By razorbax in forum Macros and Addons
    Replies: 4
    Last Post: 07-08-2008, 07:54 PM
  3. Replies: 11
    Last Post: 06-21-2008, 04:22 AM
  4. Action Bar Question
    By ehertlein in forum Macros and Addons
    Replies: 3
    Last Post: 12-11-2007, 03:37 AM
  5. KVM Switches?
    By Gallo in forum General WoW Discussion
    Replies: 3
    Last Post: 05-15-2007, 08:04 PM

Posting Rules

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •