Der Guide den Pascal über mir gepostet hat ist wirklich etwas ausfühlicher, auf deutsch und gut verständlich.
Ich habe gestern auch mal mit Multi bzw Dualboxing angefangen (mehr wird mir einfach zu teuer). Ich habe mir durch die werbt einen Freundaktion einen neuen Account eingerichtet und spiele nun einen Pala und Schamanen gleichzeitig (3x ep rockt .... lol - das geht so fix mit dem Leveln da man ja auch 3fache ep auf quests bekommt)
aber nun zum Multiboxing an sich.
Bis her benutze ich nur Autohotkey, eine paar Makros und das Addon Multiboxer v2, das einem kleine Sachen ermöglicht, wie das automatische annehmen der Gruppeneinladung sowie Questüberwachung.
Für alle denen der Guide nicht ausreicht hier mal das Script was ich gerade für Autokey benutze (allerdings auch nur kopiert ;-) :
Funktion: Aktionstasten 1-9 werden aufs zweite Fenster übertragen sowie die Tasten Shift,Q,E,C
;
; Wow Duel Account Helper Version: .02a
; Language: English
; Platform: AutoHotkey Script
; Author: Sorn
; NOTES: Written for the Duel-Boxing.com forums, Send PM or post in the Autohotkey thread for assistance or suggestions
;
; Script Function:
; Allows you to play two copies of WOW at the same time
;
;Tell user what is about to happen
SplashTextOn, 325, , Preparing to find your Main and Clone windows of WoW.
Sleep, 2000
SplasHtextoff
;Grab unique window ID's
WinGet, wowid, List, World of Warcraft
; Minimize All WOW windows
WinMinimize, ahk_id %wowid1%
WinMinimize, ahk_id %wowid2%
;Determine Main and Clone Windows
WinActivate, ahk_id %wowid1%
MsgBox, 4,, Is this your WOW Main window? (press Yes or No)
IfMsgBox Yes
idMain = %wowid1%
else
idMain = %wowid2%
If idMain = %wowid1%
{
idClone = %wowid2%
} else {
idClone = %wowid1%
}
;Activate All WOW windows
WinActivate, ahk_id %idMain%
WinActivate, ahk_id %idClone%
;*** Special Functions ***
#IfWinActive, World of Warcraft
; *** Makes wow2 follow Wow1 Player ***
^-::
ControlSend,,{- down}{- up}, ahk_id %idClone%
return
#IfWinActive, World of Warcraft
; *** Makes wow2 Assist Wow1 Player ***
^=::
ControlSend,,{= down}{= up}, ahk_id %idClone%
return
; *******************
; *** Hotbars 1-0 ***
; *******************
#IfWinActive, World of Warcraft
~1::
ControlSend,,{1 down}{1 up}, ahk_id %idMain%
ControlSend,,{= down}{= up}, ahk_id %idClone%
ControlSend,,{1 down}{1 up}, ahk_id %idClone%
return
#IfWinActive, World of Warcraft
~2::
ControlSend,,{2 down}{2 up}, ahk_id %idMain%
ControlSend,,{= down}{= up}, ahk_id %idClone%
ControlSend,,{2 down}{2 up}, ahk_id %idClone%
return
#IfWinActive, World of Warcraft
~3::
ControlSend,,{3 down}{3 up}, ahk_id %idMain%
ControlSend,,{= down}{= up}, ahk_id %idClone%
ControlSend,,{3 down}{3 up}, ahk_id %idClone%
return
#IfWinActive, World of Warcraft
~4::
ControlSend,,{4 down}{4 up}, ahk_id %idMain%
ControlSend,,{= down}{= up}, ahk_id %idClone%
ControlSend,,{4 down}{4 up}, ahk_id %idClone%
return
#IfWinActive, World of Warcraft
~5::
ControlSend,,{5 down}{5 up}, ahk_id %idMain%
ControlSend,,{= down}{= up}, ahk_id %idClone%
ControlSend,,{5 down}{5 up}, ahk_id %idClone%
return
#IfWinActive, World of Warcraft
~6::
ControlSend,,{6 down}{6 up}, ahk_id %idMain%
ControlSend,,{= down}{= up}, ahk_id %idClone%
ControlSend,,{6 down}{6 up}, ahk_id %idClone%
return
#IfWinActive, World of Warcraft
~7::
ControlSend,,{7 down}{7 up}, ahk_id %idMain%
ControlSend,,{= down}{= up}, ahk_id %idClone%
ControlSend,,{7 down}{7 up}, ahk_id %idClone%
return
#IfWinActive, World of Warcraft
~8::
ControlSend,,{8 down}{8 up}, ahk_id %idMain%
ControlSend,,{= down}{= up}, ahk_id %idClone%
ControlSend,,{8 down}{8 up}, ahk_id %idClone%
return
#IfWinActive, World of Warcraft
~9::
ControlSend,,{9 down}{9 up}, ahk_id %idMain%
ControlSend,,{= down}{= up}, ahk_id %idClone%
ControlSend,,{9 down}{9 up}, ahk_id %idClone%
return
#IfWinActive, World of Warcraft
~0::
ControlSend,,{0 down}{0 up}, ahk_id %idMain%
ControlSend,,{= down}{= up}, ahk_id %idClone%
ControlSend,,{0 down}{0 up}, ahk_id %idClone%
return
~L::
KeyWait, L, D
#IfWinActive, World of Warcraft
{
ControlSend,, L, ahk_id %wowid1%
ControlSend,, L, ahk_id %wowid2%
}
Return
~Q::
KeyWait, Q, D
#IfWinActive, World of Warcraft
{
ControlSend,, Q, ahk_id %wowid1%
ControlSend,, Q, ahk_id %wowid2%
}
Return
~E::
KeyWait, E, D
#IfWinActive, World of Warcraft
{
ControlSend,, E, ahk_id %wowid1%
ControlSend,, E, ahk_id %wowid2%
}
Return
~F::
KeyWait, F, D
#IfWinActive, World of Warcraft
{
ControlSend,, F, ahk_id %wowid1%
ControlSend,, F, ahk_id %wowid2%
}
Return
~C::
KeyWait, C, D
#IfWinActive, World of Warcraft
{
ControlSend,, C, ahk_id %wowid1%
ControlSend,, C, ahk_id %wowid2%
}
Return
Shift & 1::
KeyWait, shift, D
#IfWinActive, World of Warcraft
{
ControlSend,,{shift down}{1 down}{1 up}{shift up}, ahk_id %wowid1%
ControlSend,,{shift down}{1 down}{1 up}{shift up}, ahk_id %wowid2%
}
return
Was ich etwas kompliziert finde ist das looten von questgegenständen sowie das annehmen und abgeben von Quests. Gibts da ein Makro für das der Slave genau die Sachen annihmt wie mein Main oder muss ich da die fenster immer wechseln?