I am trying to see if it is possible to multbox on this free MMORPG . the set up is almost exactly like WoW the only difference that I see is there is no MACRO in this game... I have 3 accounts and am trying to use AutoHotKey t make this work. Any suggestions would be great. also I would like to add I am completly clueless when it comes to scripts but I did find a starter script on this site, I changed everything in that script to BOI instead of WoW I thought t would work but well... thisis my first time multiboxing and I have had 0% sucess with this program. Example of what I did below.

Here is the origenal


WinGet, wowid, List, BattleofImmortals

~2::
KeyWait 2
IfWinActive, worldofwarcraft
{
ControlSend,, 2, ahk_id %wowid1%
ControlSend,, 2, ahk_id %wowid2%
ControlSend,, 2, ahk_id %wowid3%
ControlSend,, 2, ahk_id %wowid4%
ControlSend,, 2, ahk_id %wowid5%
Return
}


Here is what I did to itWinGet, boiid, List, BattleofImmortals

~1::
KeyWait 1
IfWinActive, BattleofImmortals
{
ControlSend,, 1, ahk_id %boiid1%
ControlSend,, 1, ahk_id %boiid2%
ControlSend,, 1, ahk_id %boiid3%
ControlSend,, 1, ahk_id %boiid4%
ControlSend,, 1, ahk_id %boiid5%
Return
}

Thank you for your help