Quote:
Originally Posted by xDrako
thanks! didnt work, but fishing is working fine most of the time..
crafting is not, but i dont know why, it starts the recipe, uses the skill, it hits standard one time (sometimes none) and bot screen goes blank and it stops completly it says on edit data:
Use skills = True
Starting craft bot.
At location 1. Moving to location 2
At location 1. Moving to location 2
At location 2. Moving to location 2
At location 1. Moving to location 1
Starting synthesis process.
Using skill.
Cannot find window 1, window 2, or craft border pixels. Please confirm again.
All bots deactivated.
Press again to activate.
i tried to record many many times the pixels but it never worked.. i dont get the 3/4 down part though, should i try to hit record EXACTLY where is shown in the example or EXACTLY 3/4 down (example is more like 5/6).
thanks
|
Obviously your bot cannot find Synth 1, Synth 2, or Border window. Read my previous post.
Code:
Line 2838 is where your error is occurring.
While $On = True
Sleep (20)
$Pixel_Error = $Pixel_Error + 1
If $Pixel_Error = $Error_Count_Defined Then
GUICtrlSetData($Craft_Edit, "Cannot find window 1, window 2, or craft border pixels. Please confirm again." & @CRLF,1)
$Pixel_Error = 0
Call ("Stop_Bot")
Endif
$Check_5 = PixelGetColor(200, 25, $sHWND)
$Check_3 = PixelGetColor(50, 26, $sHWND)
$Check_2 = PixelGetColor(66, 130, $sHWND)
If $Check_5 = $Craft_Window_1 then
$Pixel_Error = 0
Exitloop
ElseIf $Check_3 = $Craft_Window_2 then
$Pixel_Error = 0
ExitLoop
ElseIf $Check_2 = $Craft_Border then
$Pixel_Error = 0
Exitloop
Endif
Wend