Detailed Fishing Bot Guide menu

User Tag List

Page 1 of 5 12345 LastLast
Results 1 to 15 of 70
  1. #1
    KuRIoS's Avatar Admin
    Authenticator enabled
    Reputation
    2982
    Join Date
    Apr 2006
    Posts
    9,804
    Thanks G/R
    349/296
    Trade Feedback
    9 (100%)
    Mentioned
    3 Post(s)
    Tagged
    1 Thread(s)
    Before beginning to read this guide you should have autoIT installed and found a code to use.

    Auto it
    Script editor

    First of all go to the start menu and open "Script writer" under autoit, if u havent got that u need to download and install SciTe4AutoIt3.
    Copy in the code/script and save it.
    Attachment 92
    open "compile script to .exe" and open ur script that u just saved in my case "showinghowtodoit.au3".
    put the outtro file as to where u want to save ur exe and press convert.
    Attachment 93


    ********************************************
    when the script is compiled:

    Put ur world of warcraft to 800x600 IN VIDEO OPTIONS

    then first person view and put the view so it approximately where the bopper will land most of the times.


    OPEN THE .exe file.
    press yes to the first box with warnings and stuff.
    PRESS YES to open setup.
    i put catch number to 100 as this was just to test it. this sets the number of fish/items to catch - press OK.
    Enter the value of which key u have set "fishing" to on ur hotbar, I have "1" - PRESS OK
    Enter the color of what the mouse shall go to, (at this water i use stormwind daylight (number 4) (theramore isle)) -press ok.
    Enter advanced settings (here u will just get my settings)
    Tolerance for bopper = 25
    Step value, bopper = 3
    Tolerance for splash = 7
    Step value, Splash = 1

    when u press OK the mouse will define the border of the area it will search for the bopper, hence if u cannot get it to find the bopper, make sure that the bopper is actually inside the area.


    press ok and start fishing =)


    PS: if u haven't got the code/script u can use the one i am using currently, works like a charm:
    Code:
    ;#########################################################################
    ;         FishBOT by Yorkfire taken from Psycosis, Foobie and Pantless Krab's
    ;              original version.
    ;
    ;                        Version 1.0 beta
    ;
    ;  Note - By using the Fishing bot designed for World of Warcraft
    ;  You understand the risks and agree that you will take all
    ;  responsibility for this code. The creater takes no responsibility
    ;  for whatever happens to users who use and/or modify this code
    ;#########################################################################
    
    
    ;#######################################
    ; Values read from the Settings.ini file
    ;#######################################
       $HotKey = IniRead ("Settings.ini", "HotKey", "HotKey", "1")
       $CatchAmount = IniRead ("Settings.ini", "CatchAmount", "CatchAmount", "50")
       $splash_tolerance = IniRead ("Settings.ini", "Splash", "SplashTolerance", "20")
       $splash_search_step = IniRead ("Settings.ini", "Splash", "SplashSearchStep", "1")
       $bobber_search_tolerance = IniRead ("Settings.ini", "Bobber","BobberSearchTolerance", "20")
       $bobber_search_step = IniRead ("Settings.ini", "Bobber","BobberSearchStep", "2")
       $color_choice = IniRead ("Settings.ini", "colorchoice", "colorchoice", "3")
    
    ; Color Definitions
       $1 = IniRead ("Settings.ini", "Color", "1", "0xA72C0B")
    
       ; dark blue in the blue feather
       $2 = IniRead ("Settings.ini", "Color", "2", "0x1B222E")
    
       ; dark red in the red feather
       $3 = IniRead ("Settings.ini", "Color", "3", "0x210B04")
       $4 = IniRead ("Settings.ini", "Color", "4", "0xA72C0B")
       $5 = IniRead ("Settings.ini", "Color", "5", "0xA72C0B")
    
       ;beige on the bobber cork
       $6 = IniRead ("Settings.ini", "Color", "6", "0xB08D65")
       $7 = IniRead ("Settings.ini", "Color", "7", "0xA72C0B")
       $8 = IniRead ("Settings.ini", "Color", "8", "0xA72C0B")
       $9 = IniRead ("Settings.ini", "Color", "9", "0xA72C0B")
       $10 = IniRead ("Settings.ini", "Color", "10", "0xA72C0B")
       $11 = IniRead ("Settings.ini", "Color", "11", "0xA72C0B")
       $12 = IniRead ("Settings.ini", "Color", "12", "0xA72C0B")
       $13 = IniRead ("Settings.ini", "Color", "13", "0xA72C0B")
       $14 = IniRead ("Settings.ini", "Color", "14", "0xA72C0B")
       $15 = IniRead ("Settings.ini", "Color", "15", "0xA72C0B")
    
    
    ;###########
    ; Globals
    ;###########
    $title = "jegerdensejesteiverdenher"
    $win_title = "World of Warcraft"
    
    ; Sets up the Borders to fish in
    $top_border_height = 23
    $left_border_width = 4
    
    ; Sets up the Screen resolution $ make sure its in windowed mode
    $screen_width = 800
    $screen_height = 600
    
    ; Just a simple Timer
    $time_to_wait = Random(30000, 35000, 1)
    
    dim $start_time
    dim $color_to_use
    dim $catch_counter = 0
    dim $CastAmt = 0
    dim $BobberAmt = 0
    dim $SplashAmt = 0
    
    ;#########################################################################
    ;                   Hot Keys Section
    ;
    ; Set up a Hot key to be used later to end the script
    ;#########################################################################
    
    HotKeySet("{PAUSE}", "request_end")
    
    ;#########################################################################
    ;                     Fish Bot View Paremeters
    ;
    ;  Sets up the boundaries of the fishbot on the screen and returns
    ;  some visual confirmation by moving the mouse in a square showing
    ;  where the bot will be searching for the fishing bobber
    ;#########################################################################
    
    if not WinExists($win_title, "") then
        msg($win_title & " window must be open.")
        Exit
    endif
    
    WinActivate($win_title, "")
    WinSetOnTop($win_title, "", 0)
    Sleep(500)
    
    check_window()
    
    $win_pos = WinGetPos($win_title, "")
    $win_x = $win_pos[0] + $left_border_width
    $win_y = $win_pos[1] + $top_border_height
    
    $top = $win_y + (.25 * $screen_height)
    $bottom = $top + (.35 * $screen_height) - 1
    $left = $win_x + (.15 * $screen_width)
    $right = $left + $screen_width - (.15 * 2.0 * $screen_width) - 1
    
    Start_Bot()
    
    
    ;###########################
    ; Visual confirmation
    ; Area scanned for bobber
    ;###########################
    
    MouseMove($left, $top, 0)
    MouseMove($right, $top, 5)
    MouseMove($right, $bottom, 5)
    MouseMove($left, $bottom, 5)
    MouseMove($left, $top, 5)
    
    cast_pole()
    find_float()
    
    ;#########################################################################
    ;
    ;                       Function find_float
    ;
    ;  Once bobber has been cast the bobber needs to be found via colors
    ;  The most prominent color is the red so by default that is enabled
    ;  More colors have been defined and you may switch them if you want
    ;  The only reason to switch them is when fishing in Stormwind or at
    ;  night when colors are all very diffrent.
    ;#########################################################################
    
    func find_float()
    
       ;##################################################################
       ; This is the search tolerance. In areas where the bobber
       ; colors really stand out, you can use a fairly high threshold.
       ; In areas where the bobber colors are fairly muted in with
       ; the background, you will have to lower the values considerably.
       ;##################################################################
    
       $bobber_search_tolerance = IniRead ("Settings.ini", "Bobber", "BobberSearchTolerance", "20")
    
       ;########################################################################
       ; It's better to use lower values here in favor of accurate searching.
       ; This will take more time for it to detect the bobber, but usually
       ; the splash doesn't occur until at least 30% of the time has run out,
       ; and by that time, it should have detected the bobber (assuming the
       ; color values and tolerance are correct).
       ;########################################################################
    
       $bobber_search_step = IniRead ("Settings.ini", "Bobber", "BobberSearchStep", "2")
    
       ;#########################################################################
       ; Search for float. In certain lighting, the part of the float may look
       ; more purple than blue. In this case, using $color_red tends to work
       ; the best with a tolerance of 20.
       ;#########################################################################
    choose_color()
       $var = 0
       while 1
          if TimerDiff($start_time) >= $time_to_wait then
             cast_pole()
          endif
             $var = $var + 1
             IniWrite("Settings.ini", "BobberSearch", "BobberSearch", " " & $var)
        $pos = PixelSearch($left, $top, $right, $bottom, $color_to_use, $bobber_search_tolerance, $bobber_search_step)
           if @error then
                SetError(0)
             else
                MouseMove($pos[0], $pos[1], 2)
           $BobberAmt = $BobberAmt + 1
           $BobberSuccessRate = ($BobberAmt/$CastAmt)
                $BobberSuccessRate = Round($BobberSuccessRate * 100, 2)
                IniWrite("Settings.ini", "BobberSuccessRate", "BobberSuccessRate", " " & $BobberSuccessRate & "%")
                find_splash($pos[0], $pos[1] )
             endif
             Sleep(10)
          wend
    endfunc
    
    ; ############################################################################
    func find_splash($float_x, $float_y)
        $search_left = $float_x - 42
        $search_right = $search_left + 62
        $search_top = $float_y - 42
        $search_bottom = $search_top + 74
    
        ; Usually you do not have to modify the search color for the splash, as the pixels
        ; have a very distinctive, bright color.
    
    ; ######################################################
    ;  SPLASH DETECTION COLORS
    ;  Remove the semicolon for the one you choose
    ;  And place a semicolon before the ones you do not use
    ; ######################################################
    
        ; Feralas (Facing West)
    ;    $splash_color = 0x8FB676
    
        ; Hillsbrad
    ;    $splash_color = 0x6C766A
    
        ; Steamwheedle
         $splash_color = 0xA8BEB5
    
        ; Sometimes 30 tolerance works well, sometimes 20 is better in lit areas to avoid catching highlights
        ; in other things.
        $splash_tolerance = IniRead ("Settings.ini", "Splash", "SplashTolerance", "20")
    
        ; The search step can be pretty small here (1 to 3) without worries because the search area is
        ; so small once it has been narrowed down - speed isn't much of an issue.
        $splash_search_step = IniRead ("Settings.ini", "Splash", "SplashSearchStep", "1")
    
       $var = 0
        ; Search for splash
        while TimerDiff($start_time) < $time_to_wait
       $var = $var + 1
       IniWrite("Settings.ini", "SplashSearch", "SplashSearch", " " & $var)
       $pos = PixelSearch($search_left, $search_top, $search_right, $search_bottom, $splash_color, $splash_tolerance, $splash_search_step)
       if @error then
                SetError(0)
            else
           $SplashAmt = $SplashAmt + 1
           $SplashSuccessRate = ($SplashAmt/$BobberAmt)
           $SplashSuccessRate = Round($SplashSuccessRate * 100, 2)
                IniWrite("Settings.ini", "SplashSuccessRate", "SplashSuccessRate", " " & $SplashSuccessRate & "%")
                ; Click on the splash
           $RandomClick = Random(800, 3000, 1)
                send("{SHIFTDOWN}")
                MouseClick("right");, $pos[0], $pos[1], 1, 2)
           Sleep($RandomClick)
                send("{ShiftUP}")
                Sleep(5500)
           $catch_counter = $catch_counter + 1
          if $catch_counter = $catchamount then
              $SessionSuccessRate = ($SplashAmt/$CastAmt)
                   $SessionSuccessRate = Round($SessionSuccessRate * 100, 2)
                        IniWrite("Settings.ini", "SessionSuccessRate", "SessionSuccessRate", " " & $SessionSuccessRate & "%")
              Send("{Esc}")
              Sleep(1500)
              MouseClick("left", 405, 345, 1, 3)
              exit
          endif
                ExitLoop
            endif
            Sleep(10)
        wend
    
        ; Cast pole and start all over again.
        cast_pole()
    endfunc
    
    ; ##############################################################################
    func cast_pole()
    
    $RandomNum = Random(1000, 3000, 1)
        $start_time = TimerInit()
        Send($HotKey)
        Sleep($RandomNum)
    $CastAmt = $CastAmt + 1
    endfunc
    
    ; ##############################################################################
    func check_window()
        $dimensions = WinGetClientSize($win_title, "")
        if $dimensions[0] <> $screen_width or $dimensions[1] <> $screen_height then
            msg("Invalid window size. You must use " & $screen_width & "x" & $screen_height & " resolution in window mode.")
            Exit
        endif
    endfunc
    
    ; ##############################################################################
    func msg($text)
        MsgBox(0, $title, $text)
    endfunc
    
    ; ##############################################################################
    func msg_array($title, $array, $num_elements)
        dim $text
        $text = $array[0]
    
        for $j = 1 to $num_elements - 1
            $text = $text & ", " & $array[$j]
        next
    
        MsgBox(0, $title, $text)
    endfunc
    
    ; ##########################################################
    func request_end()
        $MB_YESNO = 4
        $MB_YES = 6
    
        if MsgBox($MB_YESNO, $title, "End script?") == $MB_YES then
            Exit
        endif
    endfunc
    
    ;###########################################################
    func Start_Bot()
     $MB_YESNO = 4
        $MB_YES = 6
    
        if MsgBox($MB_YESNO, $title, "Make sure you have done the following before you begin." & @CRLF & _
            @CRLF & "1: Face your character away from the sun or moon." & @CRLF & _
       "2: Set your character view to first person mode." & @CRLF & _
       "3: Adjust your horizon line so that it is" & @CRLF & _
       "    approximately 2 inches from the top of the screen." & @CRLF & _
       "4: Equip your fishing pole." & @CRLF & @CRLF & @CRLF & _
       "                    Press Yes to continue." & @CRLF & _
       "                    Press No to exit.") == $MB_Yes then
       if MsgBox($MB_YESNO, $title, "Do you want to Run Setup?") == $MB_Yes then
       RunSetup()
       endif
        else
        Exit
        endif
    endfunc
    
    ; ##########################################################
    func drain_timer()
        Msg("Restart")
        $start_time = $start_time - $time_to_wait
    endfunc
    
    ; ##########################################################
    func choose_color()
        ;#########################################################
        ; This is the color used to pixelsearch for the bobber.
        ; Select a good color on the bobber that
        ; is prominent on the screen
        ;#########################################################
    
    
    Select
        Case $color_choice = 1
             $color_to_use = $1
        Case $color_choice = 2
        $color_to_use = $2
        Case $color_choice = 3
             $color_to_use = $3
        Case $color_choice = 4
        $color_to_use = $4
        Case $color_choice = 5
             $color_to_use = $5
        Case $color_choice = 6
        $color_to_use = $6
        Case $color_choice = 7
             $color_to_use = $7
        Case $color_choice = 8
        $color_to_use = $8
        Case $color_choice = 9
             $color_to_use = $9
        Case $color_choice = 10
        $color_to_use = $10
        Case $color_choice = 11
             $color_to_use = $11
        Case $color_choice = 12
        $color_to_use = $12
        Case $color_choice = 13
             $color_to_use = $13
        Case $color_choice = 14
        $color_to_use = $14
        Case $color_choice = 15
             $color_to_use = $15
        Case Else
             ErrorMsg()
        $color_to_use = $3
        $color_choice = 3
    EndSelect
    IniWrite("Settings.ini", "ColorChoice", "ColorChoice", " " & $color_choice)
    endfunc
    
    ; ##########################################################
    func RunSetup()
    $MB_YESNO = 4
    $MB_YES = 6
    
    $CatchAmount = InputBox($title, "How many items do you want the bot to find?" _
    & @CRLF & "Enter a value between 1 and 500", "" & $CatchAmount, "", 251, 244)
          If $CatchAmount >= 1 AND $CatchAmount <= 500 then
             IniWrite("Settings.ini", "CatchAmount", "CatchAmount", " " & $CatchAmount)
          Else
             ErrorMsg()
             IniWrite("Settings.ini", "CatchAmount", "CatchAmount", " 50")
          endif
    
    $HotKey = InputBox($title, "Enter which hotkey you use for casting your fishing pole." _
    & @CRLF & "Example: 1", "" & $HotKey, "", 251, 244)
          If $HotKey <> "" then
             IniWrite("Settings.ini", "HotKey", "HotKey", " " & $HotKey)
          Else
             $HotKey = 1
             ErrorMsg()
             IniWrite("Settings.ini", "HotKey", "HotKey", " 1")
          endif
    $color_choice = InputBox($title, "Enter a number for the color you wish to use." _
    & @CRLF & "1: Dark Purple" & @CRLF & "2: Dark Blue" & @CRLF & "3: Dark Red" & @CRLF & _
    "4: Stormwind Daylight Blue" & @CRLF & "5: Stormwind Daylight Red" & @CRLF &  _
    "6: Beige" & @CRLF & "7: Night Blue" & @CRLF & "8: Wailing Caverns" & @CRLF & _
    "9-15: Custom Colors", "" & $color_choice, "", 251, 244)
    choose_color()
    
        if MsgBox($MB_YESNO, $title, "Do you want to setup advanced settings?") == $MB_Yes then
       AdvancedSetup()
        endif
    endfunc
    
    ; ##########################################################
    func AdvancedSetup()
    
       $Bobber_Search_Tolerance = InputBox($title, "Enter tolerance value for the bobber?" _
       & @CRLF & "Value should be between 0 and 30", "" & $Bobber_Search_tolerance, "", 251, 244)
          If $Bobber_Search_Tolerance <> "" AND $Bobber_Search_Tolerance <= 30 then
             IniWrite("Settings.ini", "Bobber", "BobberSearchTolerance", " " & $Bobber_Search_tolerance)
          Else
             ErrorMsg()
             IniWrite("Settings.ini", "Bobber", "BobberSearchTolerance", " 20")
          endif
    
       $Bobber_Search_Step = InputBox($title, "Enter step value for the bobber?" _
       & @CRLF & "Value should be between 1 and 5", "" & $Bobber_Search_Step, "", 251, 244)
          If $Bobber_Search_Step >= 1 AND $Bobber_Search_Step <= 5 then
             IniWrite("Settings.ini", "Bobber", "BobberSearchStep", " " & $Bobber_Search_Step)
          Else
             ErrorMsg()
             IniWrite("Settings.ini", "Bobber", "BobberSearchStep", " 2")
          endif
    
       $splash_tolerance = InputBox($title, "Enter tolerance value for the splash?" _
       & @CRLF & "Value should be between 0 and 30", "" & $splash_tolerance, "", 251, 244)
          If $splash_tolerance <> "" AND $splash_tolerance <= 30 then
             IniWrite("Settings.ini", "Splash", "SplashTolerance", " " & $splash_tolerance)
          Else
             ErrorMsg()
             IniWrite("Settings.ini", "Splash", "SplashTolerance", " 20")
          endif
    
       $splash_search_step = InputBox($title, "Enter step value for the splash?" _
       & @CRLF & "Value should be between 1 and 5", "" & $splash_Search_step, "", 251, 244)
          If $splash_search_step >= 1 AND $splash_search_step <= 5 then
             IniWrite("Settings.ini", "Splash", "SplashSearchStep", " " & $splash_Search_step)
          Else
             ErrorMsg()
             IniWrite("Settings.ini", "Splash", "SplashSearchStep", " 1")
          endif
    endfunc
    
    ; ##########################################################
    func ErrorMsg()
    MsgBox(0, $title, "Incorrect value entered or the user pressed cancel. Default value will be used!")
    endfunc
    
    ; ##########################################################
    
    Troubleshooting
    If the bot cannot find the bobber -
    Try turning the bobber search tolerance up / changing the color choice

    If the bot cannot find the splash -
    Try turning the splash tolerance up

    If the bot clicks the bobber too early -
    Try turning the splash tolerance down

    If the bot finds something other than the bobber -
    Try moving that thing out of view / turning the bobber search tolerance down / changing the color choice


    also try to go to spots where the water is dark and fish there... fx. at southshore from the bridge.
    Last edited by KuRIoS; 08-02-2006 at 05:53 PM.

    Detailed Fishing Bot Guide
  2. #2
    insaneomato's Avatar Member
    Reputation
    14
    Join Date
    May 2006
    Posts
    12
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    it doesnt work for me. The cursor goes to the bobber perfectly, but it never catches fish. i left it on for 2 hours and i havent gotten anything.

  3. #3
    KuRIoS's Avatar Admin
    Authenticator enabled
    Reputation
    2982
    Join Date
    Apr 2006
    Posts
    9,804
    Thanks G/R
    349/296
    Trade Feedback
    9 (100%)
    Mentioned
    3 Post(s)
    Tagged
    1 Thread(s)
    updated it a bit insanemato

  4. #4
    artez's Avatar Member
    Reputation
    1
    Join Date
    May 2006
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    when I use this, the cursor goes to the bobber just fine, but then it tries to catch a fish as soon as it gets there.

    I have tried adjusting the splash tolerence, but that doesn't seem to help.

    Any suggestions?

  5. #5
    KuRIoS's Avatar Admin
    Authenticator enabled
    Reputation
    2982
    Join Date
    Apr 2006
    Posts
    9,804
    Thanks G/R
    349/296
    Trade Feedback
    9 (100%)
    Mentioned
    3 Post(s)
    Tagged
    1 Thread(s)
    turn down ur graphics m8, that might help. especially i find full screen glow effect turning off to help.

  6. #6
    artez's Avatar Member
    Reputation
    1
    Join Date
    May 2006
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i have everything turned off or set to low and it still tries to catch a fish almost as soon as the cursor finds the bobber.

    No problems finding the bobber tho.

  7. #7
    insaneomato's Avatar Member
    Reputation
    14
    Join Date
    May 2006
    Posts
    12
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i was screwin around with the settings, and i found these steps work very well:

    1. How many items do you want bot to find: 500
    2. Hotkey: 1
    3. Colors: 4
    4. Advance Settings: yes
    5. Tolerance value for bobber : 25
    6. Step Value for bober: 3
    7: Tolerance value for splash: 14.5
    8: Step Value for splash: 1

    One question though... do the colors mean which color that the cursor will find and move to? I dont understand that too well

  8. #8
    KuRIoS's Avatar Admin
    Authenticator enabled
    Reputation
    2982
    Join Date
    Apr 2006
    Posts
    9,804
    Thanks G/R
    349/296
    Trade Feedback
    9 (100%)
    Mentioned
    3 Post(s)
    Tagged
    1 Thread(s)
    yes, that is the color of the bopper that it will go to

  9. #9
    Relz's Avatar Feed the trolls
    Reputation
    429
    Join Date
    May 2006
    Posts
    2,124
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    nice, +rep from me =)....when i can =(

  10. #10
    curtghs67's Avatar Member
    Reputation
    1
    Join Date
    Jun 2006
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Hmmm

    Does anyone have Tarren Mills figured out for color? I tried using them all, have Glow effect off, have tolerance on bobber high and the damn thing still won't find it. Resolution is 800x600 and in first person view

  11. #11
    KuRIoS's Avatar Admin
    Authenticator enabled
    Reputation
    2982
    Join Date
    Apr 2006
    Posts
    9,804
    Thanks G/R
    349/296
    Trade Feedback
    9 (100%)
    Mentioned
    3 Post(s)
    Tagged
    1 Thread(s)
    dont know m8, in the river in tarren mill or at the shore near southshore? i might be able to find out if you give a little more info.
    on a side note, why would u want to fish in tarren mill? go to tanaris, hinterlands or so.

  12. #12
    curtghs67's Avatar Member
    Reputation
    1
    Join Date
    Jun 2006
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Thats cool

    ok . . . I'm trying to fish in Tanaris by Steamweedle Port. Does the time of day reflect the quality of color you need to choose? If so then maybe I can get a hand in the color code for it. Thanks for pointing me in the right direction. I just tried TM yesterday and it worked, so ... lol and now it doesn't. I've used NIGHT BLUE and DARK BLUE also every other color and it still isn't pulling it up.. . (shrug) I wish I knew how to mark the color thing and set it so I wouldn't have to keep asking ???s. Thanks for the help.

  13. #13
    KuRIoS's Avatar Admin
    Authenticator enabled
    Reputation
    2982
    Join Date
    Apr 2006
    Posts
    9,804
    Thanks G/R
    349/296
    Trade Feedback
    9 (100%)
    Mentioned
    3 Post(s)
    Tagged
    1 Thread(s)
    you are using the code i posted in this thread?

  14. #14
    curtghs67's Avatar Member
    Reputation
    1
    Join Date
    Jun 2006
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    re:

    Yes sir. I actually expanded a small amount of the boundaries and the only thing now is that the settings for tolerance seem to be off.

  15. #15
    KuRIoS's Avatar Admin
    Authenticator enabled
    Reputation
    2982
    Join Date
    Apr 2006
    Posts
    9,804
    Thanks G/R
    349/296
    Trade Feedback
    9 (100%)
    Mentioned
    3 Post(s)
    Tagged
    1 Thread(s)
    hmm okau.. im quite drunk now, but.... do you still fish in Steamweadle port? cause at that place i just use the color value 4, and YES the time of the day + waether effect means what kind of color you should use. just keep trying m8.

Page 1 of 5 12345 LastLast

Similar Threads

  1. [Guide] Fishing like a pro, A Guide to Fish botting.
    By Shirla in forum World of Warcraft Guides
    Replies: 4
    Last Post: 10-19-2010, 02:16 AM
  2. [Bot Guide] The best fishing bot so far !
    By Happy2k in forum World of Warcraft Bots and Programs
    Replies: 19
    Last Post: 05-26-2008, 12:24 PM
  3. Replies: 4
    Last Post: 02-18-2008, 05:02 AM
  4. [Request] Fishing Bot Guide
    By Cush in forum World of Warcraft General
    Replies: 7
    Last Post: 06-01-2006, 08:26 AM
  5. Fishing Bot! (Auto-It)
    By janzi9 in forum World of Warcraft Bots and Programs
    Replies: 6
    Last Post: 05-18-2006, 10:23 PM
All times are GMT -5. The time now is 02:10 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search