Set the keys first, then start it. It right clicks twice and has an option for people with Heaven's Blessing. I attached the exe at the bottom if you don't want to use the source code.
Created with AutoIt.
Source Code:
Code:
#NoTrayIcon
#include <ButtonConstants.au3>
#include <ComboConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
Opt("GUIOnEventMode", 1)
$Form1 = GUICreate("Toxic Fog", 255, 140, 193, 125)
$Start = GUICtrlCreateButton("Start", 16, 16, 81, 25, 0)
$Stop = GUICtrlCreateButton("Stop", 16, 53, 81, 25, 0)
$Heaven = GUICtrlCreateCheckbox("Heaven's Blessing", 120, 19, 113, 17)
$Sit = GUICtrlCreateCombo("", 8, 112, 89, 25)
GUICtrlSetData(-1, "F1|F2|F3|F4|F5|F6|F7|F8|F9|F10")
$Label1 = GUICtrlCreateLabel("Sit Key:", 32, 96, 40, 17, BitOR($SS_CENTER, $SS_RIGHT, $SS_GRAYFRAME, $SS_WHITEFRAME, $SS_SIMPLE))
$ToxicFog = GUICtrlCreateCombo("", 141, 112, 89, 25)
GUICtrlSetData(-1, "F1|F2|F3|F4|F5|F6|F7|F8|F9|F10")
$Label2 = GUICtrlCreateLabel("Toxic Fog Key:", 148, 96, 75, 17, BitOR($SS_CENTER, $SS_RIGHT, $SS_GRAYFRAME, $SS_WHITEFRAME, $SS_SIMPLE))
GUISetOnEvent($GUI_EVENT_CLOSE, "_Exit")
GUICtrlSetOnEvent($Start, "Start")
GUICtrlSetOnEvent($Stop, "Stop")
GUISetState(@SW_SHOW)
$Conquer = ControlGetHandle("[CLASS:Afx:400000:0:10003:0:0]", "", "#327701")
$Active = False
$Run = 0
While 1
If $Active = False Then Sleep(100)
If $Active = True Then
$SitKey = GUICtrlRead($Sit)
$TFK = GUICtrlRead($ToxicFog)
If $Run = 0 Then ; Select Toxic Fog
If $TFK = "F1" Then ControlClick($Conquer, "", "Button136", "Right", 1, 18, 20)
If $TFK = "F2" Then ControlClick($Conquer, "", "Button136", "Right", 1, 61, 20)
If $TFK = "F3" Then ControlClick($Conquer, "", "Button136", "Right", 1, 102, 20)
If $TFK = "F4" Then ControlClick($Conquer, "", "Button136", "Right", 1, 144, 20)
If $TFK = "F5" Then ControlClick($Conquer, "", "Button136", "Right", 1, 183, 20)
If $TFK = "F6" Then ControlClick($Conquer, "", "Button136", "Right", 1, 220, 20)
If $TFK = "F7" Then ControlClick($Conquer, "", "Button136", "Right", 1, 260, 20)
If $TFK = "F8" Then ControlClick($Conquer, "", "Button136", "Right", 1, 306, 20)
If $TFK = "F9" Then ControlClick($Conquer, "", "Button136", "Right", 1, 348, 20)
If $TFK = "F10" Then ControlClick($Conquer, "", "Button136", "Right", 1, 387, 20)
$Run = 1
Sleep(500)
EndIf
If GUICtrlRead($Heaven) == 4 Then ; Unchecked
ControlClick($Conquer, "", $Conquer, "Right", 1, 503, 406)
Sleep(1000)
ControlClick($Conquer, "", $Conquer, "Right", 1, 503, 406)
Sleep(500)
If $SitKey = "F1" Then ControlClick($Conquer, "", "Button136", "Right", 1, 18, 20)
If $SitKey = "F2" Then ControlClick($Conquer, "", "Button136", "Right", 1, 61, 20)
If $SitKey = "F3" Then ControlClick($Conquer, "", "Button136", "Right", 1, 102, 20)
If $SitKey = "F4" Then ControlClick($Conquer, "", "Button136", "Right", 1, 144, 20)
If $SitKey = "F5" Then ControlClick($Conquer, "", "Button136", "Right", 1, 183, 20)
If $SitKey = "F6" Then ControlClick($Conquer, "", "Button136", "Right", 1, 220, 20)
If $SitKey = "F7" Then ControlClick($Conquer, "", "Button136", "Right", 1, 260, 20)
If $SitKey = "F8" Then ControlClick($Conquer, "", "Button136", "Right", 1, 306, 20)
If $SitKey = "F9" Then ControlClick($Conquer, "", "Button136", "Right", 1, 348, 20)
If $SitKey = "F10" Then ControlClick($Conquer, "", "Button136", "Right", 1, 387, 20)
Sleep(10000)
EndIf
If GUICtrlRead($Heaven) == 1 Then ; Checked
ControlClick($Conquer, "", $Conquer, "Right", 1, 503, 406)
Sleep(1000)
ControlClick($Conquer, "", $Conquer, "Right", 1, 503, 406)
Sleep(1000)
ControlClick($Conquer, "", $Conquer, "Right", 1, 503, 406)
Sleep(500)
If $SitKey = "F1" Then ControlClick($Conquer, "", "Button136", "Right", 1, 18, 20)
If $SitKey = "F2" Then ControlClick($Conquer, "", "Button136", "Right", 1, 61, 20)
If $SitKey = "F3" Then ControlClick($Conquer, "", "Button136", "Right", 1, 102, 20)
If $SitKey = "F4" Then ControlClick($Conquer, "", "Button136", "Right", 1, 144, 20)
If $SitKey = "F5" Then ControlClick($Conquer, "", "Button136", "Right", 1, 183, 20)
If $SitKey = "F6" Then ControlClick($Conquer, "", "Button136", "Right", 1, 220, 20)
If $SitKey = "F7" Then ControlClick($Conquer, "", "Button136", "Right", 1, 260, 20)
If $SitKey = "F8" Then ControlClick($Conquer, "", "Button136", "Right", 1, 306, 20)
If $SitKey = "F9" Then ControlClick($Conquer, "", "Button136", "Right", 1, 348, 20)
If $SitKey = "F10" Then ControlClick($Conquer, "", "Button136", "Right", 1, 387, 20)
Sleep(15000)
EndIf
EndIf
WEnd
Func _Exit()
Exit 0
EndFunc ;==>_Exit
Func Start()
$Active = True
EndFunc ;==>Start
Func Stop()
$Run = 0
$Active = False
EndFunc ;==>Stop
Note: This was created with AutoIt, that means some virus scanners will detect false positives. If you are too afraid to use it then don't use it.
are you crazy doing this long script?
mine has 4 lines... and works PERFECT!
I don't like AHK, this isn't even close to a lot of lines, this is actually a short code compared to many programs. And your script is more than 4 lines. ;D
Code:
; <COMPILER: v1.0.48.3>
msgbox, Sit F1 (toxic fog/Guard as skill) (C)www.************* by 1qq23q
WinGet,id, ID,[C
loop
{
ControlClick, x110 y760,ahk_id %id%,,right
sleep 1000
ControlClick, x646 y272,ahk_id %id%,,right
}
nope one acc who summons goldguard every 30 mins, another who attacks it... to lvl phoenix. doin it with mouse clicks atm :| wud like to have it done in the background =D so i need to know how to acces multiple windows. guess i need
nope one acc who summons goldguard every 30 mins, another who attacks it... to lvl phoenix. doin it with mouse clicks atm :| wud like to have it done in the background =D so i need to know how to acces multiple windows. guess i need
that for another window
What you could do is write two scripts. One that summons the guard and one that attacks the guard. You open one Conquer window and start the guard script first. Then open another Conquer window and start the one that attacks the guard. That's how you would have both scripts running at the same time.
hmm focused window is gay =/ can't i access two windows in one script? cud use mousclick coords for the attacking, if urs dsnt work. all i need is accessing two windows ;_;
... thx for the work tho xD
hmm focused window is gay =/ can't i access two windows in one script? cud use mousclick coords for the attacking, if urs dsnt work. all i need is accessing two windows ;_;
... thx for the work tho xD
No you can't because you have to hold down CTRL when you attack a guard and you can't send that in the background. And yes you can access two windows with one script but one will still have to be focused while the other is in the background.
i see, thought so too, some time after i posted mah reply xD how cud i switch windows? lets say im using 3 accs, 2 for the phoenix thing, one to play... how cud i switch from the one on which im playin to the one that has to attack the guard?
Using TaoStig as Background Stamina-Skill-Leveler = mainly for Toxic Fog 05/19/2012 - CO2 Exploits, Hacks & Tools - 38 Replies Just to let everyone know, i didnt make this program (evanxxxm made it:)) but i figured out a cool way to use it as a back ground stamina skill leveler :)
ok heres what you do:
1. Download it.
2. Install it to your desktop (then pin it to your start menu for easy access)
3. Open your conquer client for the char. whose skill you want to level.
4. Put the char in a nice secluded place so no one can see you leveling the skill (the rest of this process is mainly for toxic fog levelers, ok...
Toxic Fog Leveler (NOT BACKGROUND!) 05/02/2012 - CO2 Bots & Macros - 13 Replies Before you read on, THIS BOT IS NOW A BACKGROUND BOT! Please ignore the thread title :p
Here's an .exe that will do the following steps:
1) use two arrays to make a random x, y coordinate (up to 20 pixels randomly changed for each click)
2) sits and waits for about 12 seconds until the stamina fills up fully
By randomizing the coordinate clicks, you're less likely to get banned. It's a little something I add to my programs called "Anti-ban" ;)
background toxic fog leveler 10/19/2010 - CO2 Bots & Macros - 104 Replies Toxic Fog leveler. This does not work on non-pk maps.
You do not need to have the window open for this to work!
Instructions:
1. unzip the file.
2. double click on toxic_fog.exe to open it
3. open up CO with your ninja
4. put the "Sit" icon onto F2
5. make toxic fog your active skill