I am trying to bypass it to use autoit with pt2...
a little of my effort from autoit from the bot i am making:
Code:
$MobHP = PixelSearch(735,35,916,36,0xFFA42D,60)
If Not @error Then ;If pixel has been found to $coord
If $MobHP[0] > 734 And $MobHP[0] < 755 Then
$Percent = '100%'
ToolTip("Monster health is" & " (" & $Percent & ") " & $MobHP[0],0,0)
ElseIf $MobHP[0] > 754 And $MobHP[0] < 775 Then
$Percent = '80%'
ToolTip("Monster health is" & " (" & $Percent & ") " & $MobHP[0],0,0)
ElseIf $MobHP[0] > 774 And $MobHP[0] < 795 Then
$Percent = '60%'
ToolTip("Monster health is" & " (" & $Percent & ") " & $MobHP[0],0,0)
ElseIf $MobHP[0] > 794 And $MobHP[0] < 815 Then
$Percent = '50%'
ToolTip("Monster health is" & " (" & $Percent & ") " & $MobHP[0],0,0)
ElseIf $MobHP[0] > 814 And $MobHP[0] < 835 Then
$Percent = '40%'
ToolTip("Monster health is" & " (" & $Percent & ") " & $MobHP[0],0,0)
ElseIf $MobHP[0] > 834 And $MobHP[0] < 855 Then
$Percent = '30%'
ToolTip("Monster health is" & " (" & $Percent & ") " & $MobHP[0],0,0)
ElseIf $MobHP[0] > 854 And $MobHP[0] < 875 Then
$Percent = '20%'
ToolTip("Monster health is" & " (" & $Percent & ") " & $MobHP[0],0,0)
ElseIf $MobHP[0] > 874 And $MobHP[0] < 895 Then
$Percent = '10%'
ToolTip("Monster health is" & " (" & $Percent & ") " & $MobHP[0],0,0)
ElseIf $MobHP[0] > 894 And $MobHP[0] < 914 Then
$Percent = '1%'
ToolTip("Monster health is" & " (" & $Percent & ") " & $MobHP[0],0,0)
Else
ToolTip("Target is dead!",0,0)
$pickup = '1'
EndIf
InitAttack()
EndIf
right now i am developing it using screenshots since i cannot test it online
huh..still waiting ,-)






