Page 1 of 1
AOC Bots - Auto stun then cyclone of steel + auto combo!!!!!
Posted: July 29th, 2008, 12:46 pm
by owner2119
This is autoit code for 100% auto combo but you need to turn of info on hover over button and get pixels for arrow button's if you dont use mirage ui. I also binded q for barbs. If you love dw with your barb but miss your stuns this is for you. First thing you need to be stealthed. Then once you have a target press q. This will use buffs then stealth attack then switch weapon to two handed and will stun then switch to dw and use cycole of steel. E is binded for same thing but uses other stun and other cycolne of steel so you can do it 2 times. Most class die with first one. If you need to change keys it easy. If i want alt 3 then its !3. If i want 3 then its 3. Chnage keys in script as you see fit. If you need help post and i will try to help you. If you want custom code for your class let me know ill make one for a small fee. I can automate anything. Helas, buffs, combos, ect.
#include <Misc>
; Detect windows by class name
opt("winTitleMatchMode", 4)
If @error Then
MsgBox(4096, "Error", "detect window")
endif
; Set Coordinate mode to relative to window
AutoItSetOption ( "PixelCoordMode", 2 )
AutoItSetOption ( "MouseCoordMode", 2 )
AutoItSetOption ( "SendKeyDownDelay", 50 )
global $Window = winGetHandle("classname=Conan")
If @error Then
MsgBox(4096, "Error", "Could not find the correct window WinActivate($Window); ")
endif
; Main Loop
While WinExists($Window)
If _IsPressed("51") == 1 Then
Send ( "!4" ) ; BUFF
Send ( "!5" ) ; BUFF
Send ( "!6" ) ; SWITCH WEAPON
sleep (500)
Send ( "!2" ) ; STEALTH ATTACK
sleep (1000)
Send ( "!7" ) ; STUN
sleep (1300)
Send ( "!6" ) ; SWITCH WEAPON
sleep (500)
Send ( "1" ) ; CYCLONE OF STEEL
EndIf
If _IsPressed("45") == 1 Then
Send ( "!4" ) ; BUFF
Send ( "!5" ) ; BUFF
Send ( "!6" ) ; SWITCH WEAPON
sleep (500)
Send ( "!2" ) ; STEALTH ATTACK
sleep (1000)
Send ( "!8" ) ; STUN
sleep (1000)
Send ( "!6" ) ; SWITCH WEAPON
sleep (500)
Send ( "2" ) ; CYCLONE OF STEEL
EndIf
$Rightarrow1 = Rightarrow();
$Leftarrow1 = Leftarrow();
$Uparrow1 = Uparrow();
if $Rightarrow1=1 then
Send ( "!3" )
sleep (1500)
endif
if $Leftarrow1=1 then
Send ( "!1" )
sleep (1500)
endif
if $Uparrow1=1 then
Send ( "!2" )
sleep (1500)
endif
Wend
Func Rightarrow()
$color1="0x863C1E"
If pixelgetcolor(995, 926) = $color1 then
return 1;
Else
return 0;
endif
EndFunc
Func Leftarrow()
$color1="0x8A361B"
If pixelgetcolor(890, 927) = $color1 then
return 1;
Else
return 0;
endif
EndFunc
Func Uparrow()
$color1="0x8C3B1E"
If pixelgetcolor(942, 929) = $color1 then
return 1;
Else
return 0;
endif
EndFunc
Posted: July 29th, 2008, 12:53 pm
by owner2119
Here is 100% super fast auto combo with no barb code.
#include <Misc>
; Detect windows by class name
opt("winTitleMatchMode", 4)
If @error Then
MsgBox(4096, "Error", "detect window")
endif
; Set Coordinate mode to relative to window
AutoItSetOption ( "PixelCoordMode", 2 )
AutoItSetOption ( "MouseCoordMode", 2 )
AutoItSetOption ( "SendKeyDownDelay", 50 )
global $Window = winGetHandle("classname=Conan")
If @error Then
MsgBox(4096, "Error", "Could not find the correct window WinActivate($Window); ")
endif
; Main Loop
While WinExists($Window)
sleep (1000)
$Rightarrow1 = Rightarrow();
$Leftarrow1 = Leftarrow();
$Uparrow1 = Uparrow();
if $Rightarrow1=1 then
Send ( "!3" )
endif
if $Leftarrow1=1 then
Send ( "!1" )
endif
if $Uparrow1=1 then
Send ( "!2" )
endif
Wend
Func Rightarrow()
$color1="0x863C1E"
If pixelgetcolor(995, 926) = $color1 then
return 1;
Else
return 0;
endif
EndFunc
Func Leftarrow()
$color1="0x8A361B"
If pixelgetcolor(890, 927) = $color1 then
return 1;
Else
return 0;
endif
EndFunc
Func Uparrow()
$color1="0x8C3B1E"
If pixelgetcolor(942, 929) = $color1 then
return 1;
Else
return 0;
endif
EndFunc
Posted: July 29th, 2008, 1:04 pm
by Tault_admin
Can members say yay or nay to this so we may give tu bucks and/or premium. If you nay the submission remember to include as to why.
Posted: August 1st, 2008, 7:55 pm
by Spitt
Ooooooooooo it's so shiny. Yay for points 500-1000
Posted: August 2nd, 2008, 3:29 pm
by Tault_admin
2k to you and moved to confirmed
Posted: August 2nd, 2008, 4:56 pm
by mythicskunk
um...2k points...this for real?
1. The guy is asking for handouts.
2. This is a simple pixel checker and has to be setup by the user for the most part.
3. The delays are way too long, not all swings are the same speed.
4. One Pixelsearch function should be used in a 100ms While loop (there is absolutely no delay in your pixelchecking)
5. The user should not have to enter coords or anything like that.
Like most UIs, the pixel difference from one point to the next is not relative to the screen resolution. This means that the coordinate for all the attack keys can be pulled from a single coordinate.
Nice effort, but I wrote an autocombo for my guildies using autoit and all they have to do the first time they set it up is press one button.
Also, there should be an ini file for users to easily declare the hotkeys.
P.S.
I probably wouldn't have flamed so much if this guy hadn't asked for handouts for his "amazing" work.
Posted: August 4th, 2008, 4:58 pm
by owner2119
mythicskunk wrote:um...2k points...this for real?
1. The guy is asking for handouts.
2. This is a simple pixel checker and has to be setup by the user for the most part.
3. The delays are way too long, not all swings are the same speed.
4. One Pixelsearch function should be used in a 100ms While loop (there is absolutely no delay in your pixelchecking)
5. The user should not have to enter coords or anything like that.
Like most UIs, the pixel difference from one point to the next is not relative to the screen resolution. This means that the coordinate for all the attack keys can be pulled from a single coordinate.
Nice effort, but I wrote an autocombo for my guildies using autoit and all they have to do the first time they set it up is press one button.
Also, there should be an ini file for users to easily declare the hotkeys.
P.S.
I probably wouldn't have flamed so much if this guy hadn't asked for handouts for his "amazing" work.
Wtf are you talking about? Im a full menber for last 3 years. I dont need hand outs. This works out the box with the right ui. The timing is right on unless patch changed things. Did you test? Dont think so. Stfu if you dont know what you are talking about. This is the first auto switch weapon stun cos script. I have had so much fun with this. Thats why i released. So others could have fun pwning.
Re: AOC Bots - Auto stun then cyclone of steel + auto combo!!!!!
Posted: August 6th, 2008, 2:35 pm
by mythicskunk
owner2119 wrote:If you want custom code for your class let me know ill make one for a small fee.
Looks like you were asking for handhouts.
I do applaud the COS combo part. However, like I said, this doesn't work right "out of the box". You must think everyone runs your screen resolution. The auto combo requires users to setup their coords, and on top of that they are in the middle of the script. Also, the delays ARE too long(it's better to have the combo keys fire an extra time rather than fire too late.
No need for 'stfus' and such. I gave your script constructive criticism, without name calling. This will be my last post in this thread, and I hope the people that do use your script like it and find it useful.
Posted: August 6th, 2008, 7:34 pm
by Tault_admin
Simmer down both of you. Keep in mind tone of voice can never been seen online which is a VERY big problem

Re: AOC Bots - Auto stun then cyclone of steel + auto combo!!!!!
Posted: August 6th, 2008, 8:51 pm
by owner2119
mythicskunk wrote:owner2119 wrote:If you want custom code for your class let me know ill make one for a small fee.
Looks like you were asking for handhouts.
I do applaud the COS combo part. However, like I said, this doesn't work right "out of the box". You must think everyone runs your screen resolution. The auto combo requires users to setup their coords, and on top of that they are in the middle of the script. Also, the delays ARE too long(it's better to have the combo keys fire an extra time rather than fire too late.
No need for 'stfus' and such. I gave your script constructive criticism, without name calling. This will be my last post in this thread, and I hope the people that do use your script like it and find it useful.
You must not know autoit. I use AutoItSetOption 2. That means it detects client with any resolution. Not AutoItSetOption 1 or default settings that does need the same resolution. You do not need to change coords if you use the same ui. Im not going to make this for every ui. It takes 1 min to set coords if they use other ui. The timing is right on. I used it tonight. Have you tested? If you change timing any faster it wont complete the combo. It will fail due to pressing the third button to fast. I dont think you know what you are talking about.
Noob question
Posted: August 14th, 2008, 7:31 pm
by garn
sorry very new. Where do i copy this script to get it to work? I DLed Mirage, but got stuck there after.
thanks,
Kenan
Posted: August 14th, 2008, 7:55 pm
by owner2119
You need to download autoit v3 and put code in autoit. Then run script and you should be good to go.
Posted: July 22nd, 2009, 4:30 am
by madjammu
I know autoit very well and if you ask from me, this is just perfect for my barbarian, i use normal ui and didnt take even 1min to change some coords Lol. I dont know what those guys are crying about getting 2k, it's good for this, other guys who is jealous about 2k points, test this before flame. :f