Fishing Bot

World of warcraf stuff here
Post Reply
binarydata
DBfiller
Posts: 3816
Joined: Fri Oct 31, 2003 5:30 am
Location: San Diego CA, USA
Contact:

Post by binarydata »

<a href='http://www.danidoo.bizland.com/snarg/FishBot.zip' target='_blank'>Download</a>

i havent gotton this to work yet, but other peopel have, i jacked this from blizzhackers
Alright people, this took 3 hours. It's not hard. This will cast the line, click the bobber when it splashes, get the item and then do it all again. If you don't catch anything, it waits until the progress bar disappears and recasts. It searches for the splash between the top of the chat "Bubble" icon and a little over halfway up the window. This requires that you have fishing in your action bar as "0" and your gamma is defaulted. I'm releasing the code so you guys can make changes as you need.
The Pause/Break key turns it off.

Code: Select all

; AutoIt Version: 3.0 
; Language:       English 
; Platform:       WinXP 
; Author:         Mibz (Pantless Krab) 
; 
; Script Function: 
;   WoW FishBot. 
; 
; Wow Window Title - World of Warcraft 
; WoW Window Size - w1032 x h795 
; classname=GxWindowClassD3d 
; Colour of splash - 0xA2A67D 
;         0xC1AD7A 
;         0xD0C08D 
; Position of item -       x:44  y:226 
; Position of hotkey 0 -     x:409 y:768 


; Prompt the user to run the script using Yes/No prompt 
$run = MsgBox(4, "FishBot", "Do you want to run FishBot?") 


; Exit if "No" 
If $run = 7 Then 
    Exit 
EndIf 

; Initial shit 
$time = MsgBox(4, "FishBot - Time of Day?", "Yes = Day | No = Night") 
WinActivate("World of Warcraft") 
HotKeySet("{PAUSE}", "EndScript") 

; Script Start 
While 1 
  MouseClick("left", 409, 768, 1, 2) 
  MouseMove(500, 500) 
  $start = TimerInit() 
  $dif = TimerDiff($start) 
  While 1 
    If $time = 6 Then 
      $coord = PixelSearch (5, 300, 1024, 560, 0xF6F6F6, 30, 4) 
    Else 
      $coord = PixelSearch (5, 300, 1024, 560, 0xEEEEEE, 55, 3) 
    EndIf 

; 5, 300 - 1024, 560 can be changed if you want to search a wider area. 
; Not recommended though since you can just adjust your view to fit all 
; the water in that space. The bigger the area, the less likely it is to 
; detect it. 
; If the splash isn't getting detected then change the hex colour to 
; something a bit closer. Top one is day, bottom is night. 

    If UBound($coord)>1 Then 
      MouseClick("right", $coord[0], $coord[1], 1, 3) 
      Sleep(500) 
      MouseClick("right", 44, 226, 1, 5) 
      ExitLoop 
    Else 
      Sleep(250) 
      $dif = TimerDiff($start) 
      If $dif > 30000 Then 
        ExitLoop 
      EndIf 
    EndIf 
  WEnd 
WEnd 
    
  
; Function to exit script 
Func EndScript() 
  $exit = MsgBox(4, "FishBot", "End FishBot?") 
  If $exit = 6 Then 
    Exit 
  EndIf 
EndFunc 
<img src='http://img88.exs.cx/img88/2290/7666.jpg' border='0' alt='user posted image' />
donkeychips
Regular
Posts: 94
Joined: Sat Jan 31, 2004 8:00 pm

Post by donkeychips »

what good will fishing do ya?
binarydata
DBfiller
Posts: 3816
Joined: Fri Oct 31, 2003 5:30 am
Location: San Diego CA, USA
Contact:

Post by binarydata »

donkeychips wrote: what good will fishing do ya?
LOL, fishing = ubar pwnage

1. its 100% profit

2. GOOD ITENS LAR
<img src='http://img88.exs.cx/img88/2290/7666.jpg' border='0' alt='user posted image' />
donkeychips
Regular
Posts: 94
Joined: Sat Jan 31, 2004 8:00 pm

Post by donkeychips »

binarydata wrote: <a href='http://www.danidoo.bizland.com/snarg/FishBot.zip' target='_blank'>Download</a>

i havent gotton this to work yet, but other peopel have, i jacked this from blizzhackers
Alright people, this took 3 hours. It's not hard. This will cast the line, click the bobber when it splashes, get the item and then do it all again. If you don't catch anything, it waits until the progress bar disappears and recasts. It searches for the splash between the top of the chat "Bubble" icon and a little over halfway up the window. This requires that you have fishing in your action bar as "0" and your gamma is defaulted. I'm releasing the code so you guys can make changes as you need.
The Pause/Break key turns it off.

Code: Select all

; AutoIt Version: 3.0 
; Language:       English 
; Platform:       WinXP 
; Author:         Mibz (Pantless Krab) 
; 
; Script Function: 
;   WoW FishBot. 
; 
; Wow Window Title - World of Warcraft 
; WoW Window Size - w1032 x h795 
; classname=GxWindowClassD3d 
; Colour of splash - 0xA2A67D 
;         0xC1AD7A 
;         0xD0C08D 
; Position of item -       x:44  y:226 
; Position of hotkey 0 -     x:409 y:768 


; Prompt the user to run the script using Yes/No prompt 
$run = MsgBox(4, "FishBot", "Do you want to run FishBot?") 


; Exit if "No" 
If $run = 7 Then 
    Exit 
EndIf 

; Initial shit 
$time = MsgBox(4, "FishBot - Time of Day?", "Yes = Day | No = Night") 
WinActivate("World of Warcraft") 
HotKeySet("{PAUSE}", "EndScript") 

; Script Start 
While 1 
  MouseClick("left", 409, 768, 1, 2) 
  MouseMove(500, 500) 
  $start = TimerInit() 
  $dif = TimerDiff($start) 
  While 1 
    If $time = 6 Then 
      $coord = PixelSearch (5, 300, 1024, 560, 0xF6F6F6, 30, 4) 
    Else 
      $coord = PixelSearch (5, 300, 1024, 560, 0xEEEEEE, 55, 3) 
    EndIf 

; 5, 300 - 1024, 560 can be changed if you want to search a wider area. 
; Not recommended though since you can just adjust your view to fit all 
; the water in that space. The bigger the area, the less likely it is to 
; detect it. 
; If the splash isn't getting detected then change the hex colour to 
; something a bit closer. Top one is day, bottom is night. 

    If UBound($coord)>1 Then 
      MouseClick("right", $coord[0], $coord[1], 1, 3) 
      Sleep(500) 
      MouseClick("right", 44, 226, 1, 5) 
      ExitLoop 
    Else 
      Sleep(250) 
      $dif = TimerDiff($start) 
      If $dif > 30000 Then 
        ExitLoop 
      EndIf 
    EndIf 
  WEnd 
WEnd 
    
  
; Function to exit script 
Func EndScript() 
  $exit = MsgBox(4, "FishBot", "End FishBot?") 
  If $exit = 6 Then 
    Exit 
  EndIf 
EndFunc 
have u gotten this to work?
binarydata
DBfiller
Posts: 3816
Joined: Fri Oct 31, 2003 5:30 am
Location: San Diego CA, USA
Contact:

Post by binarydata »

ive gotton another one to work kinda

the hardest part is to detect the splash, i get it to find the bobber 90% of the time

and detect the splash works like 10% of the time
<img src='http://img88.exs.cx/img88/2290/7666.jpg' border='0' alt='user posted image' />
donkeychips
Regular
Posts: 94
Joined: Sat Jan 31, 2004 8:00 pm

Post by donkeychips »

can post it whenever it work perfect
binarydata
DBfiller
Posts: 3816
Joined: Fri Oct 31, 2003 5:30 am
Location: San Diego CA, USA
Contact:

Post by binarydata »

eh, im lazar
<img src='http://img88.exs.cx/img88/2290/7666.jpg' border='0' alt='user posted image' />
KaSe
Loyal fan
Posts: 258
Joined: Sat Nov 08, 2003 3:43 pm

Post by KaSe »

You shouldt use it if you dont want to get a ban :)
eXtasis.net
locobans
Outpost Junkie
Posts: 2264
Joined: Tue Jul 13, 2004 3:51 am
Location: Behind You
Contact:

Post by locobans »

KaSe wrote: You shouldt use it if you dont want to get a ban :)
KaSe esta up extasis? :unsure:
QUOTE (ADDKiD @ Dec 1 2006, 4:01 PM) <br>You guys make me laugh alot, half the shit I say, is bullshit...<br><br><img src='http://img485.imageshack.us/img485/492/banssig1ng.gif' border='0' alt='user posted image' /><br><br><b>I see no changes at all, wake up in the morning and ask myself...<br>Is life worth living? Should I blast myself?</b><br><br><b><a href='http://2paclegacy.com' target='_blank'>2PacLegacy.com</a></b>
binarydata
DBfiller
Posts: 3816
Joined: Fri Oct 31, 2003 5:30 am
Location: San Diego CA, USA
Contact:

Post by binarydata »

locobans wrote:
KaSe wrote: You shouldt use it if you dont want to get a ban :)
KaSe esta up extasis? :unsure:
el no
<img src='http://img88.exs.cx/img88/2290/7666.jpg' border='0' alt='user posted image' />
KaSe
Loyal fan
Posts: 258
Joined: Sat Nov 08, 2003 3:43 pm

Post by KaSe »

locobans wrote:
KaSe wrote: You shouldt use it if you dont want to get a ban :)
KaSe esta up extasis? :unsure:
Locobans, si ---> <a href='http://www.union-hispana.com' target='_blank'>http://www.union-hispana.com</a> v3.51, 3.7 comming soon

I dun play hb, it is sux xDD

WoW OwNs
eXtasis.net
Post Reply