Quote:
Originally Posted by louco89
DurianMontong, I think that is only way to do so, is using game movements, and not the auto follow, because auto follow is only make the others follow the leader and not make a formation, what you can do is read leader position and use movement function to make the other to "run along". Now I curios why you want to do this? :D
|
:D its for fun formation , did you know Smurfin already use that formation :D
i hope he read this post n share the autoit code
i not luck use movexyz it always force close in windows 10, but auto path work
hi need help Func that check $GAME_TITLE = "2" / $GAME_TITLE = "3" if nof not avaliable skip the Roll2() n Roll3() in Roll3X() because autoit force close if $GAME_TITLE = "2" / $GAME_TITLE = "3" not login
Func Roll3X()
Roll1()
Roll2()
Roll3()
EndFunc
Func Roll1()
$GAME_TITLE = "1"
$pid = WinGetProcess($GAME_TITLE)
Rool($pid)
EndFunc
Func Roll2()
$GAME_TITLE = "2"
$pid = WinGetProcess($GAME_TITLE)
Roll($pid)
EndFunc
Func Roll3()
$GAME_TITLE = "3"
$pid = WinGetProcess($GAME_TITLE)
Roll($pid)
EndFunc
Func Roll($pid)
local $packet, $packetSize
$packet = '9C00'
$packetSize = 2
sendPacket($packet, $packetSize, $pid)
EndFunc