Ok guys I'm just wondering about this, I tried searching but this is a pretty specific question. I'm wondering if I can run an Autoit script on one of my monitors so I can bot, while I use the other monitor normally (By normally I mean internet browsing, but the ability to play CS:S is a huge +). I tried using a program called CPN mouse, got the prog working for dual mice, but it doesnt have dual monitor support (how fcking useless lol).
Is there a way for Autoit to use a silent mouse? If you don't know what that is, its basically an invisible mouse that doesnt move your main cursor. If theres a way to do silent mouse then I could get this going easily.
Really just anyway that I can pull off botting on one screen and still using the comp on the other screen is what I'm looking for, I've put a couple hours into this before coming here.
Oh and just so you cant call me a leecher/begger, heres a script I made for botting on a secondary monitor at 1024x768 (My primary is 1440x900). Now I know this makes the use of my script VERY limited, but its all I need atm, and I figured I'd share it.Because this is scripted for the dual monitor setup, unless your also using the same setup, the X coords need to all have 1440 subtracted from them. Doing so SHOULD allow this script to work on a standard 1024x768 res. If your really want to use this script then I'd reccomend taking new coords altogether to ensure success.
I just started autoit scripting... like yesterday i looked into it but I really tried for the first time this morning. Simple stuff, can this program search for BMPs like SCAR? Also, I know theres gotta be a way to script using return stones and stocking up on pots, even more advanced would be to actually walk back to your training spot. I'm sure its all possible with enough knowledge of this program, but it would be complex, and the bot might not always have success. I think from slightly browsing the Autoit forums that this program has got the potential for some very complex scripts.
Is there a way for Autoit to use a silent mouse? If you don't know what that is, its basically an invisible mouse that doesnt move your main cursor. If theres a way to do silent mouse then I could get this going easily.
Really just anyway that I can pull off botting on one screen and still using the comp on the other screen is what I'm looking for, I've put a couple hours into this before coming here.
Oh and just so you cant call me a leecher/begger, heres a script I made for botting on a secondary monitor at 1024x768 (My primary is 1440x900). Now I know this makes the use of my script VERY limited, but its all I need atm, and I figured I'd share it.Because this is scripted for the dual monitor setup, unless your also using the same setup, the X coords need to all have 1440 subtracted from them. Doing so SHOULD allow this script to work on a standard 1024x768 res. If your really want to use this script then I'd reccomend taking new coords altogether to ensure success.
Its a modified version of the Pixel Bot your way. New features include HP bar detection, regeneration buffing, and it won't open the cash shop because it doesnt scan that low for yellow pixels. The HP pot should still be at 6, and regeneration at 5. The coords will need to be completely redone unless you are on the same setup as me. The GFX settings are the norm that all the autoit scripts here use.Quote:
While 1
WinActivate("CABAL")
$SearchResult = PixelSearch(1503, 168, 1570, 177, 0x1C1C1C, 5, 1)
If Not @error Then
Send("{6}")
EndIf
$regentest = PixelSearch(2437, 329, 2443, 338, 0x8F6424, 5, 1)
If @error Then
Send("5")
Endif
$coord = PixelSearch( 1540, 200, 2463, 718, 0xE9E00B, 10, 1)
If Not @error Then
MouseMove($coord[0],$coord[1],0)
MouseClick("left",$coord[0],$coord[1])
Sleep (200)
EndIf
$HPbar = PixelSearch (1540, 200, 2463, 718, 0xF74D4A, 10, 1)
If Not @error Then
Send("2")
Sleep(900)
Send("3")
Sleep(900)
Send("4")
Sleep(900)
EndIf
Send("{Right 4}")
Send("{Space}")
Send("{Right 4}")
Send("{Space}")
Send("{Right 4}")
Wend
I just started autoit scripting... like yesterday i looked into it but I really tried for the first time this morning. Simple stuff, can this program search for BMPs like SCAR? Also, I know theres gotta be a way to script using return stones and stocking up on pots, even more advanced would be to actually walk back to your training spot. I'm sure its all possible with enough knowledge of this program, but it would be complex, and the bot might not always have success. I think from slightly browsing the Autoit forums that this program has got the potential for some very complex scripts.