[Bot]Fisher Script menu

User Tag List

Results 1 to 6 of 6
  1. #1
    iradiation's Avatar Banned
    Reputation
    88
    Join Date
    Mar 2008
    Posts
    625
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [Bot]Fisher Script

    This is a nice script i found from Fishing Bot (World of Warcraft hunters) | World of Warcraft Gold
    This bot requires ACtool to use it but have no fear theres a way to make it so warden won't detect it.
    lets start with getting ACtools.
    AC Tool Home Page

    Next goto your AC Tool folder in program files and change the ACTOOL.exe or whatever it is to anything you wish change it to something obvious like msn or something that warden wouldn't suspect.

    Install that and open

    Take this code and copy it in AC tool

    // WoW Fishing Bot v1.1
    // Made by QuietKnight

    // Changes
    // v1.1
    // + Added in the option to turn off AFK Killer
    // + Added in changes log
    //
    // v1.0
    // + Initial version

    // Special instructions:
    // - Put your fishing skill in slot '0'
    // - Zoom into 1st person mode
    // - Under Video Options, uncheck 'Hardware Cursor'

    SetActiveWindow World of Warcraft

    Constants

    /////////////////////////
    // CHANGABLE CONSTANTS //
    /////////////////////////

    // Run count
    // How many times the script should try to fish
    runCount = 150

    // Speed
    // This is the initial scan speed. The lower the number, the faster the scan goes,
    // and the higher the number, the slower the scan goes. If you're having problems
    // where the initial scan isnt finding the bobber and just scanning right over it,
    // try increasing this number slowly.
    scanSpeed = 60

    // Scan box distances
    // These are the distances away from the sides of the screen to scan for a lure
    // These are measured as percentages of the screen in the appropriate direction
    scanLeftDist = .3
    scanRightDist = .3
    scanTopDist = .4
    scanBottomDist = .25

    // Brightness range
    // This is the number of RGB values over and under the 'bright spot' that is the
    // lure to look for. Basically, if you're getting the message 'No fish to hook',
    // try increasing both numbers a bit, and if the bobber bobs but you dont catch
    // anything, try decreasing both numbers a bit. This can change from environment
    // to environment. Also, generally speaking brightRangeUp shouldnt be very high.
    brightRangeDown = 50
    brightRangeUp = 10

    // Brightness distance
    // Doesnt matter what it does, but basically, leave it alone unless you're having
    // problems actually catching the fish. If you're having problems and you want
    // to tweak it, general rule is, the higher the resolution, the higher the number,
    // the but number range should only be anywhere from 2 MIN to 6 MAX. If you start
    // getting too out of wack with this, you'll never catch a fish
    brightDist = 3

    // AFK Away
    // Set to 1 to use AFK Away (which presses Enter twice before every cast) or
    // to 0 to disable AFK Away entirely. This comes in useful if you like to
    // chat on WoW while fishing.
    afkAway = 0

    /////////////////////////////
    // NON-CHANGABLE CONSTANTS //
    /////////////////////////////

    // Optimal scan step ratios
    widthToWindowRatio = 0.056
    heightToWindowRatio = 0.075

    // Scanbox
    scanTop = 0
    scanBottom = 0
    scanLeft = 0
    scanRight = 0
    scanStepX = 0
    scanStepY = 0
    scanSuccess = 0

    // THE Box
    boxMinX = 0
    boxMaxX = 0
    boxMinY = 0
    boxMaxY = 0
    boxCenterY = 0
    boxCenterX = 0

    boxScanStep = 4

    boxAvgWidth = 0
    boxAvgHeight = 0

    // Misc vars
    x = 0
    y = 0
    i = 0
    j = 0

    // Mouse vars
    isMouseOrange = 0
    mouseX = 0
    mouseY = 0

    // Lure location
    lureInitLocX = 0
    lureInitLocY = 0

    // RGB Info
    brightX = 0
    brightY = 0
    brightTotal = 0
    brightR = 0
    brightG = 0
    brightB = 0
    brightRMin = 0
    brightRMax = 0
    brightGMin = 0
    brightGMax = 0
    brightBMin = 0
    brightBMax = 0
    curTotal = 0

    // Splash
    splashed = 0

    End

    ///////////////
    // Main Proc //
    ///////////////

    Delay 1000
    Call CalculateScanBoxConstants

    Loop
    Keys 0
    Delay 1000
    Call FindLureInitial
    Call FindBoxCenter

    Compute x = -10
    MousePos ,
    Delay

    Call GetRGBValue
    Call WaitForSplash

    If = 1
    Delay 2500
    KeyDown {RETURN} 250
    KeyDown {RETURN} 250
    Delay 2000
    Else
    Delay 5000
    End

    End


    ////////////////
    // Procedures //
    ////////////////

    Procedure CalculateScanBoxConstants


    Compute scanTop = {WindowTop} + Trunc( {WindowHeight} * )
    Compute scanBottom = ( {WindowTop} + {WindowHeight} ) - Trunc( {WindowHeight} * )
    Compute scanLeft = {WindowLeft} + Trunc( {WindowWidth} * )
    Compute scanRight = ( {WindowLeft} + {WindowWidth} ) - Trunc( {WindowWidth} * )

    Compute boxAvgWidth = Trunc( {WindowWidth} * )
    Compute boxAvgHeight = Trunc( {WindowHeight} * )

    Compute scanStepX =
    Compute scanStepY = Trunc( / 2 )

    End

    Procedure FindLureInitial
    SetConst scanSuccess = 0
    Compute y =

    While <= AND = 0

    Compute i = {LoopNo} MOD 2

    If = 0
    Timestamp In Even
    Compute x =
    Else
    Timestamp In Odd
    Compute x = + Trunc( / 2 )
    End

    While <= AND = 0
    // Move the mouse and wait a second (wait is required!)
    MousePos ,
    Delay

    Call isMouseOrange

    // If the mouse is orange
    If = 1
    SetConst lureInitLocX =
    SetConst lureInitLocY =
    SetConst scanSuccess = 1
    End

    Compute x= +
    End

    Compute y= +
    End

    End

    Procedure FindBoxCenter

    // Find X min
    SetConst scanSuccess = 0
    Compute x =
    Compute y =
    While = 0

    // Move the mouse and wait a second (wait is required!)
    MousePos ,
    Delay

    Call isMouseOrange

    If = 0
    SetConst boxMinX =
    SetConst scanSuccess = 1
    Else
    Compute x= -
    End
    End

    // Find X max
    SetConst scanSuccess = 0
    Compute x =
    Compute y =
    While = 0

    // Move the mouse and wait a second (wait is required!)
    MousePos ,
    Delay

    Call isMouseOrange

    If = 0
    SetConst boxMaxX =
    SetConst scanSuccess = 1
    Else
    Compute x= +
    End
    End

    // Find Y min
    SetConst scanSuccess = 0
    Compute x =
    Compute y =
    While = 0

    // Move the mouse and wait a second (wait is required!)
    MousePos ,
    Delay

    Call isMouseOrange

    If = 0
    SetConst boxMinY =
    SetConst scanSuccess = 1
    Else
    Compute y= -
    End
    End

    // Find Y max
    SetConst scanSuccess = 0
    Compute x =
    Compute y =
    While = 0

    // Move the mouse and wait a second (wait is required!)
    MousePos ,
    Delay

    Call isMouseOrange

    If = 0
    SetConst boxMaxY =
    SetConst scanSuccess = 1
    Else
    Compute y= +
    End
    End


    Compute boxCenterX = Trunc(( + ) / 2)
    Compute boxCenterY = Trunc(( + ) / 2)

    SetConst lureInitLocX =
    SetConst lureInitLocY =

    End

    Procedure GetRGBValue

    SetConst = 0

    Compute y =
    Compute i = + Trunc( ( - ) / 3 )

    While <=

    Compute x =
    While <=

    LoadRGB ,
    Compute curTotal = {RGBRed} + {RGBGreen} + {RGBBlue}

    If >
    Compute brightTotal =

    SetConst brightR = {RGBRed}
    SetConst brightG = {RGBGreen}
    SetConst brightB = {RGBBlue}

    Compute brightRMin = -
    Compute brightRMax = +
    Compute brightGMin = -
    Compute brightGMax = +
    Compute brightBMin = -
    Compute brightBMax = +

    SetConst brightX =
    SetConst brightY =
    End

    Compute x= + 2
    End

    Compute y= + 2
    End

    End

    Procedure WaitForSplash

    SetConst = 0

    Call isMouseOrange

    While = 0 AND = 1
    Delay 100

    // Check current spot
    LoadRGB ,
    If {RGBRed} > OR {RGBRed} < OR {RGBGreen} > OR {RGBGreen} < OR {RGBBlue} > OR {RGBBlue} <

    // Check top left
    Compute x=-
    Compute y=-
    LoadRGB ,
    If {RGBRed} > OR {RGBRed} < OR {RGBGreen} > OR {RGBGreen} < OR {RGBBlue} > OR {RGBBlue} <

    // Check top right
    Compute x=+
    Compute y=-
    LoadRGB ,
    If {RGBRed} > OR {RGBRed} < OR {RGBGreen} > OR {RGBGreen} < OR {RGBBlue} > OR {RGBBlue} <

    // Check bottom left
    Compute x=-
    Compute y=+
    LoadRGB ,
    If {RGBRed} > OR {RGBRed} < OR {RGBGreen} > OR {RGBGreen} < OR {RGBBlue} > OR {RGBBlue} <

    // Check bottom right
    Compute x=+
    Compute y=+
    LoadRGB ,
    If {RGBRed} > OR {RGBRed} < OR {RGBGreen} > OR {RGBGreen} < OR {RGBBlue} > OR {RGBBlue} <

    // Check top left (extended)
    Compute x=-(*2)
    Compute y=-(*2)
    LoadRGB ,
    If {RGBRed} > OR {RGBRed} < OR {RGBGreen} > OR {RGBGreen} < OR {RGBBlue} > OR {RGBBlue} <

    // Check top right (extended)
    Compute x=+(*2)
    Compute y=-(*2)
    LoadRGB ,
    If {RGBRed} > OR {RGBRed} < OR {RGBGreen} > OR {RGBGreen} < OR {RGBBlue} > OR {RGBBlue} <

    // Check bottom left (extended)
    Compute x=-(*2)
    Compute y=+(*2)
    LoadRGB ,
    If {RGBRed} > OR {RGBRed} < OR {RGBGreen} > OR {RGBGreen} < OR {RGBBlue} > OR {RGBBlue} <

    // Check bottom right (extended)
    Compute x=+(*2)
    Compute y=+(*2)
    LoadRGB ,
    If {RGBRed} > OR {RGBRed} < OR {RGBGreen} > OR {RGBGreen} < OR {RGBBlue} > OR {RGBBlue} <

    SetConst splashed = 1
    RightClick Shift
    Delay 500

    End
    End
    End
    End
    End
    End
    End
    End
    End

    Call isMouseOrange

    End
    End

    Procedure isMouseOrange
    SetConst = 0

    // Get the mouse color
    Compute mouseX= {MouseX} + 4
    Compute mouseY= {MouseY} + 4
    LoadRGB ,

    // If the mouse is orange (variance added just for good measure..)
    If {RGBRed} >= 210 AND {RGBRed} <= 218 AND {RGBGreen} >= 160 AND {RGBGreen} <= 168 AND {RGBBlue} >= 84 AND {RGBBlue} <= 92
    SetConst = 1
    End
    End
    You can change the Runcount in the script to anything you wish.

    Once you do that Run WoW in windowed mode.

    Put your fishing skill on the 0 slot.

    Under video options make sure to UNCHECK THE HARDWARE CURSOR!!!

    Get next to a bank of water sit down and zoom into first person try to level with the water.

    Run the macro and enjoy!!

    REMEMBER!
    DO NO USE IN PUBLIC PLACE
    DO NOT BOT STRAIT TO 375 IN 1 DAY
    DON'T GO AROUND SCREAMING I'M A LEET FISHER I CAN BOTTT!!!!
    AND DONT EVEN BOTHER TALKING ABOUT IT EVEN WITH YOUR CLOSEST FRIEND!
    please remember that there are way better bots out there and this is just one of them!
    Last edited by iradiation; 03-15-2008 at 11:34 PM.

    [Bot]Fisher Script
  2. #2
    shadowbladex's Avatar Member
    Reputation
    145
    Join Date
    Apr 2007
    Posts
    948
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kevinkrupp View Post
    DON'T GO AROUND SCREAMING I'M A LEET FISHER I CAN BOTTT!!!!
    Wai nawt?


  3. #3
    iradiation's Avatar Banned
    Reputation
    88
    Join Date
    Mar 2008
    Posts
    625
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    well dont add in that you didnt even have to be at your computer to do it lol

  4. #4
    Valgas's Avatar Member
    Reputation
    1
    Join Date
    Mar 2008
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    doh.. i'm probably too noob to use it... I believe I've done everything you said, but nothing worked for me... everytime I press F2 (to start the macro) the macro starts for 1ms and then it stops... i dunno if there are errors in the macro since debug tab disappears too fast..

  5. #5
    evil Chip's Avatar Member
    Reputation
    1
    Join Date
    Mar 2008
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    another noob here, i click start or f2 and seems nothing is happening. i copy and paste that whole script into commands & macro area, save and start. am i missing something? also first time installing actools, do i need to change any settings?

  6. #6
    iradiation's Avatar Banned
    Reputation
    88
    Join Date
    Mar 2008
    Posts
    625
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    just click the link i entered and re copy or something not sure always works here : /

Similar Threads

  1. Any bot or script able to complete tutorial?
    By bobdan in forum Pokemon GO Hacks|Cheats
    Replies: 0
    Last Post: 08-07-2016, 03:51 PM
  2. Question on bots and scripts
    By clow860 in forum WoW Bots Questions & Requests
    Replies: 0
    Last Post: 04-14-2015, 02:02 PM
  3. Replies: 0
    Last Post: 06-22-2014, 10:33 AM
  4. Zolo Bot rogue script
    By ferocity in forum World of Warcraft Bots and Programs
    Replies: 21
    Last Post: 09-27-2008, 01:07 AM
  5. Safer bot guide compile your scripts..
    By freakyflow in forum World of Warcraft Bots and Programs
    Replies: 9
    Last Post: 07-23-2008, 10:57 AM
All times are GMT -5. The time now is 03:04 AM. 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