all you can help me with is mostly apreciated. thank you
This Script might work. I got problems infight. It didn't use skills so I put in some combat sequences in various positions. For me it uses Skill 5 and QTE once per fight. If you're a mage and can autofight them to death simply put the heal over time Skill (don't know how it's called in your language) on that spot or change every 5 in Send("5") to whatever slot you like. For autofighting warriors put in Shield if you got. Only problem is for those little snipers Their HP will be drained so best don't have any reserves there and put bloody arrow if you got. Else your mercs will have to do the fight for you which slows it down.
This is the basic script first published by vegeta modified for 1600x900 FULL SCREEN browser version. As stated before it's improvised to work for those who have problems with chars that don't fight.
realy amazing but uhh how do i put it in use??? i have no idea how i put this in the flashbot -.-
Simply download autoit, install, start the SciTE Script Editor and copy&paste it into the Editor. Save it with "save as" and put a name in. Then double click the new created file whereever you saved it. It will automatically start the script.
Added ZIP archive with exe file.
VirusTotal has these two
VIPRE Trojan.Win32.Generic!BT 20131130
TheHacker Trojan/Cosmu.bizd 20131129
OOPS! If you use the SciTE Scrit Editor then it must be 940, 735. I corrected it in the code of the post. If you use the exe I'll change it in a few mins.
its iris too. so im guessing its the same but the script walks up to the iris but keeps clicking like 0.5 centimeter to the right of it
dont know if type of browser has anything to do with it?
Code:
Func search_Mob()
$search = PixelSearch( 385, 185, 1285, 790, 0xFF0004 )
If IsArray($search) Then
MouseMove($search[0]+20, $search[1]+80, 1)
sleep(300000)
MouseClick("left")
sleep(3000)
Modify the red number (MouseMove($search[0]+20) in the code. Lower it by 5 or 10 and check if it works. This is trial and error. If you don't like this short way, follow the long instructions below.
Create a new script in the Editor and add the code from . "save as" it and start the script. It will give you the cursor position when pressing your q button.
- Add the line - sleep(30000) - at the position in your script. This pauses the script for 5 minutes.
- Then use q to get the coordinates. It will give you two numbers seperated by a "x". First one is x-axis (means it is the number of pixels you cursor is away from the right side of your screen. THIS is x1) write those coordinates down and close the dialogue window (press ENTER or use mouse).
- Move your mouse over the sylph and press q again to get x2 and y2. The y-axis numbers should be almost identical in case you moved your mouse cursor in a straight way. Calculate the difference between x1 and x2. Could be something like -10.
- In any case you have to modify the red number (MouseMove($search[0]+20) in the code by that amount.
- Close down the mouse script (it's in the tray; right click it and close it).
- Press ESC to close the Iris script down as well.
- Remove the red line from the script and save it.
- Then try if the script works.
Quote:
Originally Posted by thirdleg
Whenever i awaken the slyph by the space bar, it stops using skills. It auto attacks.
I tried to expand the search_kmapf but it didn't work.
I'm not at home atm. Do you do more damage in sylph form than your normal character? If the amount of damage is not worth the change then remove the send command for space from the script. If you REALLY need the sylph form, then check if the PixelSearch for the combat is checking for a color that is in both - character AND sylph - skill bars. If the sylph bar differs from the color of the char skill bar, then the script might think you are not in combat anymore and stop sending commands.
thank you it working so far. need to test it on a long run now
will come back for rePort.
edit: the script has problems with to many sylphs in one area and get distracted to fast so it cancles the collection before the essence is collected or fight starts. cancling time is random though.
also somehow the line for using skills are in the script but it isnt using it.
Code:
#Region ;**** Directives created by AutoIt3Wrapper_GUI ****
#AutoIt3Wrapper_Compile_Both=y
#EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****
; Drücke Esc um das Script zu beenden, Pause um es zu pausieren
Global $Paused, $vab, $countdown = 0
HotKeySet("p", "TogglePause")
HotKeySet("{ESC}", "Terminate")
HotKeySet("+!d", "ShowMessage") ;Shift-Alt-d
;;;; Hier ist der Hauptteil des Programms ;;;;
Func search_Mob()
$search = PixelSearch( 385, 185, 1285, 790, 0xFF0004 )
If IsArray($search) Then
MouseMove($search[0]+18, $search[1]+80, 1)
MouseClick("left")
sleep(3000)
Send("2")
Send("{up}")
Send("{down}")
Send("{left}")
Send("{right}") ;kann auch verkürzt werden wenn nötig
ConsoleWrite("Sucht Pixel")
$search_loot = PixelSearch( 595, 680, 940, 735, 0x030303 )
If IsArray($search_loot) Then
ConsoleWrite('Monster angeclickt')
sleep(8000) ; war vorher 5000
Send("2")
Send("{up}")
Send("{down}")
Send("{left}")
Send("{right}")
$vab = "kampf"
EndIf
EndIf
Return $vab;
EndFunc
Func kampf()
;~ Kampf funktion
ConsoleWrite('Lädt KamPf')
$countdown = $countdown + 1
$search_kampf = PixelSearch( 385, 730, 1225, 860, 0xffffe4 )
If IsArray($search_kampf) Then
Send("2")
Send("{up}")
Send("{down}")
Send("{left}")
Send("{right}")
$end_kampf = PixelSearch( 155, 100, 305, 135, 0xaa8708 )
If IsArray($end_kampf) Then
Send("2")
Send("{up}")
Send("{down}")
Send("{left}")
Send("{right}")
$vab = false
$countdown = 0
Endif
Elseif $countdown > 7 Then ;erhöht auf 7 Counts, war vorher 6
;~ nicht kampf
$vab = false
$countdown = $countdown + 1
Send("2")
Send("{up}")
Send("{down}")
Send("{left}")
Send("{right}")
ConsoleWrite('Nicht im kampf');
EndIf
Return $vab;
EndFunc
Sleep(5000)
While 1
Sleep(1000)
If $vab == "kampf" Then
$vab = kampf()
Else
$vab = search_Mob()
EndIf
WEnd
;;;;;;;;
Func TogglePause()
$Paused = NOT $Paused
While $Paused
sleep(100)
ToolTip('Script ist pausiert',0,0)
WEnd
ToolTip("")
EndFunc
Func Terminate()
Exit 0
EndFunc
thank you it working so far. need to test it on a long run now
will come back for rePort.
edit: the script has problems with to many sylphs in one area and get distracted to fast so it cancles the collection before the essence is collected or fight starts. cancling time is random though.
also somehow the line for using skills are in the script but it isnt using it.
#Region ;**** Directives created by AutoIt3Wrapper_GUI ****
#AutoIt3Wrapper_Compile_Both=y
#EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****
; Drücke Esc um das Script zu beenden, Pause um es zu pausieren
Global $Paused, $vab, $countdown = 0
HotKeySet("p", "TogglePause")
HotKeySet("{ESC}", "Terminate")
HotKeySet("+!d", "ShowMessage") ;Shift-Alt-d
;;;; Hier ist der Hauptteil des Programms ;;;;
Func search_Mob()
$search = PixelSearch( 385, 185, 1285, 790, 0xFF0004 )
If IsArray($search) Then
MouseMove($search[0]+18, $search[1]+80, 1)
MouseClick("left")
sleep(3000)
Send("2")
Send("{up}")
Send("{down}")
Send("{left}")
Send("{right}") ;kann auch verkürzt werden wenn nötig
ConsoleWrite("Sucht Pixel")
$search_loot = PixelSearch( 595, 680, 940, 735, 0x030303 )
If IsArray($search_loot) Then
ConsoleWrite('Monster angeclickt')
sleep(8000) ; war vorher 5000
Send("2")
Send("{up}")
Send("{down}")
Send("{left}")
Send("{right}")
$vab = "kampf"
EndIf
EndIf
Return $vab;
EndFunc
Func kampf()
;~ Kampf funktion
ConsoleWrite('Lädt KamPf')
$countdown = $countdown + 1
$search_kampf = PixelSearch( 385, 730, 1225, 860, 0xffffe4 )
If IsArray($search_kampf) Then
Send("2")
Send("{up}")
Send("{down}")
Send("{left}")
Send("{right}")
$end_kampf = PixelSearch( 155, 100, 305, 135, 0xaa8708 )
If IsArray($end_kampf) Then
Send("2")
Send("{up}")
Send("{down}")
Send("{left}")
Send("{right}")
$vab = false
$countdown = 0
Endif
Elseif $countdown > 7 Then ;erhöht auf 7 Counts, war vorher 6
;~ nicht kampf
$vab = false
$countdown = $countdown + 1
Send("2")
Send("{up}")
Send("{down}")
Send("{left}")
Send("{right}")
ConsoleWrite('Nicht im kampf');
EndIf
Return $vab;
EndFunc
Sleep(5000)
While 1
Sleep(1000)
If $vab == "kampf" Then
$vab = kampf()
Else
$vab = search_Mob()
EndIf
WEnd
;;;;;;;;
Func TogglePause()
$Paused = NOT $Paused
While $Paused
sleep(100)
ToolTip('Script ist pausiert',0,0)
WEnd
ToolTip("")
EndFunc
Func Terminate()
Exit 0
EndFunc
I'll try to rebuild it for my needs on client 1600x900 but I'm at the very beginning of learning autoit so it could take quite a time. For me it's working with clicking and using bloody arrow once.
If it's changing targets to fast you have to redo the sleep timers. At the moment it waits 3 seconds after the click before checking if there is a loading bar. If there is a bar it's waiting another 8 seconds (think it's 3 seconds too long, but for lags and the loading screen I raised it that high). When it changes targets too fast raise the 3 seconds to 4 and lower the 8 to 7.
Suche Demon Slayer bot für die Heldengeister 11/17/2013 - Browsergames - 24 Replies Hey zusammen,
ich suche einen bot zum farmen der Heldengeister.
Der bot sollte die heldengeister nur auswählen und angreifen. die Verwendung der Skills ist nicht unbedingt notwendig.
Also eine Art Autoklick bot.
Wäre super wenn mir da vll jemand weiterhelfen könnte.
mfg michel