1. #1

    Is there a free Multiboxing program that is simple to use.

    Like the title says Is there a free Multiboxing program that is simple to use.

    I plan to use it with Rift/PoE/Tera and I was wanting to know if there was one. I didn't know where to post this so I figured this area would work.
    Check me out....Im └(-.-)┘┌(-.-)┘┌(-.-)┐└(-.-)┐ Dancing, Im └(-.-)┘┌(-.-)┘┌(-.-)┐└(-.-)┐ Dancing.
    My Gaming PC: MSI Trident 3 - i7-10700F - RTX 4060 8GB - 32GB DDR4 - 1TB M.2SSD

  2. #2
    Autohotkey is a great script program. I used it to multibox for WoW. I don't think it would work so great for TERA of PoE since they have positional requirements to hit with spells.

    Code:
    ClonesPush(strKeys)
    {
    	global WowWinId1
    	global WowWinId2
    	global WowWinId3
    	global WowWinId4
    	global WowWinId5
    	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%
    	IfWinNotActive, ahk_id %WowWinId4%
    		ControlSend, , %strKeys%, ahk_id %WowWinId4%
    	IfWinNotActive, ahk_id %WowWinId5%
    		ControlSend, , %strKeys%, ahk_id %WowWinId5%
    }
    
    ;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
    
    ; *******************
    ; *** 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}")
    Source

    That should help you get started.

  3. #3
    Quote Originally Posted by rylangel View Post
    Autohotkey is a great script program. I used it to multibox for WoW. I don't think it would work so great for TERA of PoE since they have positional requirements to hit with spells.
    Thanks for the info if I have to ill check it out. Was looking for something like ISboxer but it costs it seems
    Check me out....Im └(-.-)┘┌(-.-)┘┌(-.-)┐└(-.-)┐ Dancing, Im └(-.-)┘┌(-.-)┘┌(-.-)┐└(-.-)┐ Dancing.
    My Gaming PC: MSI Trident 3 - i7-10700F - RTX 4060 8GB - 32GB DDR4 - 1TB M.2SSD

Posting Permissions

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