fishing macro 100% undetectable. menu

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 24
  1. #1
    kasenko's Avatar Member
    Reputation
    6
    Join Date
    May 2009
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    fishing macro 100% undetectable.

    Wow Fishing Macro 100% Undetectable
    It works great for me but it takes a lil to understand it's still not any hard at all but can take you a while before you will get use to it. Why it is 100% undetectable? Cose its just a macro basically and so far noone catched me.
    First of all you will have to download AC tool 5.4.0.

    Here is the link -->> AC Tool Home Page

    This is the macro which let you to fishbot. You will have to copy, paste it to actool:

    // This line is necessary to select the proper window
    SetActiveWindow Asheron's Call

    // 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 = 1000000

    // 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 = 50

    // 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 = 47
    brightRangeUp = 7

    // 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 = 1

    /////////////////////////////
    // 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 $runCount
    Keys 0
    Delay 1000
    Call FindLureInitial
    Call FindBoxCenter

    Compute x = $boxMaxX-10
    MousePos $x, $boxCenterY
    Delay $scanSpeed

    Call GetRGBValue
    Call WaitForSplash

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

    End


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

    Procedure CalculateScanBoxConstants


    Compute scanTop = {WindowTop} + Trunc( {WindowHeight} * $scanTopDist )
    Compute scanBottom = ( {WindowTop} + {WindowHeight} ) - Trunc( {WindowHeight} * $scanBottomDist )
    Compute scanLeft = {WindowLeft} + Trunc( {WindowWidth} * $scanLeftDist )
    Compute scanRight = ( {WindowLeft} + {WindowWidth} ) - Trunc( {WindowWidth} * $scanRightDist )

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

    Compute scanStepX = $boxAvgWidth
    Compute scanStepY = Trunc( $boxAvgHeight / 2 )

    End

    Procedure FindLureInitial
    SetConst scanSuccess = 0
    Compute y = $scanTop

    While $y <= $scanBottom AND $scanSuccess = 0

    Compute i = {LoopNo} MOD 2

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

    While $x <= $scanRight AND $scanSuccess = 0
    // Move the mouse and wait a second (wait is required!)
    MousePos $x, $y
    Delay $scanSpeed

    Call isMouseOrange

    // If the mouse is orange
    If $isMouseOrange = 1
    SetConst lureInitLocX = $x
    SetConst lureInitLocY = $y
    SetConst scanSuccess = 1
    End

    Compute x=$x + $scanStepX
    End

    Compute y=$y + $scanStepY
    End

    End

    Procedure FindBoxCenter

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

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

    Call isMouseOrange

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

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

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

    Call isMouseOrange

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

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

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

    Call isMouseOrange

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

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

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

    Call isMouseOrange

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


    Compute boxCenterX = Trunc(( $boxMinX + $boxMaxX ) / 2)
    Compute boxCenterY = Trunc(( $boxMinY + $boxMaxY ) / 2)

    SetConst lureInitLocX = $boxCenterX
    SetConst lureInitLocY = $boxCenterY

    End

    Procedure GetRGBValue

    SetConst $brightTotal = 0

    Compute y = $boxCenterY
    Compute i = $boxCenterY + Trunc( ($boxMaxY - $boxCenterY) / 3 )

    While $y <= $i

    Compute x = $boxMinX
    While $x <= $boxCenterX

    LoadRGB $x, $y
    Compute curTotal = {RGBRed} + {RGBGreen} + {RGBBlue}

    If $curTotal > $brightTotal
    Compute brightTotal = $curTotal

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

    Compute brightRMin = $brightR - $brightRangeDown
    Compute brightRMax = $brightR + $brightRangeUp
    Compute brightGMin = $brightG - $brightRangeDown
    Compute brightGMax = $brightG + $brightRangeUp
    Compute brightBMin = $brightB - $brightRangeDown
    Compute brightBMax = $brightB + $brightRangeUp

    SetConst brightX = $x
    SetConst brightY = $y
    End

    Compute x=$x + 2
    End

    Compute y=$y + 2
    End

    End

    Procedure WaitForSplash

    SetConst $splashed = 0

    Call isMouseOrange

    While $splashed = 0 AND $isMouseOrange = 1
    Delay 100

    // Check current spot
    LoadRGB $brightX, $brightY
    If {RGBRed} > $brightRMax OR {RGBRed} < $brightRMin OR {RGBGreen} > $brightGMax OR {RGBGreen} < $brightGMin OR {RGBBlue} > $brightBMax OR {RGBBlue} < $brightBMin

    // Check top left
    Compute x=$brightX-$brightDist
    Compute y=$brightY-$brightDist
    LoadRGB $x, $y
    If {RGBRed} > $brightRMax OR {RGBRed} < $brightRMin OR {RGBGreen} > $brightGMax OR {RGBGreen} < $brightGMin OR {RGBBlue} > $brightBMax OR {RGBBlue} < $brightBMin

    // Check top right
    Compute x=$brightX+$brightDist
    Compute y=$brightY-$brightDist
    LoadRGB $x, $y
    If {RGBRed} > $brightRMax OR {RGBRed} < $brightRMin OR {RGBGreen} > $brightGMax OR {RGBGreen} < $brightGMin OR {RGBBlue} > $brightBMax OR {RGBBlue} < $brightBMin

    // Check bottom left
    Compute x=$brightX-$brightDist
    Compute y=$brightY+$brightDist
    LoadRGB $x, $y
    If {RGBRed} > $brightRMax OR {RGBRed} < $brightRMin OR {RGBGreen} > $brightGMax OR {RGBGreen} < $brightGMin OR {RGBBlue} > $brightBMax OR {RGBBlue} < $brightBMin

    // Check bottom right
    Compute x=$brightX+$brightDist
    Compute y=$brightY+$brightDist
    LoadRGB $x, $y
    If {RGBRed} > $brightRMax OR {RGBRed} < $brightRMin OR {RGBGreen} > $brightGMax OR {RGBGreen} < $brightGMin OR {RGBBlue} > $brightBMax OR {RGBBlue} < $brightBMin

    // Check top left (extended)
    Compute x=$brightX-($brightDist*2)
    Compute y=$brightY-($brightDist*2)
    LoadRGB $x, $y
    If {RGBRed} > $brightRMax OR {RGBRed} < $brightRMin OR {RGBGreen} > $brightGMax OR {RGBGreen} < $brightGMin OR {RGBBlue} > $brightBMax OR {RGBBlue} < $brightBMin

    // Check top right (extended)
    Compute x=$brightX+($brightDist*2)
    Compute y=$brightY-($brightDist*2)
    LoadRGB $x, $y
    If {RGBRed} > $brightRMax OR {RGBRed} < $brightRMin OR {RGBGreen} > $brightGMax OR {RGBGreen} < $brightGMin OR {RGBBlue} > $brightBMax OR {RGBBlue} < $brightBMin

    // Check bottom left (extended)
    Compute x=$brightX-($brightDist*2)
    Compute y=$brightY+($brightDist*2)
    LoadRGB $x, $y
    If {RGBRed} > $brightRMax OR {RGBRed} < $brightRMin OR {RGBGreen} > $brightGMax OR {RGBGreen} < $brightGMin OR {RGBBlue} > $brightBMax OR {RGBBlue} < $brightBMin

    // Check bottom right (extended)
    Compute x=$brightX+($brightDist*2)
    Compute y=$brightY+($brightDist*2)
    LoadRGB $x, $y
    If {RGBRed} > $brightRMax OR {RGBRed} < $brightRMin OR {RGBGreen} > $brightGMax OR {RGBGreen} < $brightGMin OR {RGBBlue} > $brightBMax OR {RGBBlue} < $brightBMin

    SetConst splashed = 1
    RightClick Shift
    Delay 500

    End
    End
    End
    End
    End
    End
    End
    End
    End

    Call isMouseOrange

    End
    End

    Procedure isMouseOrange
    SetConst $isMouseOrange = 0

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

    // 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 $isMouseOrange = 1
    End
    End

    And that one is to put lure on your fishing rod:

    SetActiveWindow World of Warcraft

    Constants

    /////////////////////////
    // CHANGABLE CONSTANTS //
    /////////////////////////
    bobberCount = 1








    /////////////////////////////
    // 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 //
    ///////////////
    Loop $bobberCount
    Keys -
    Keys 1

    End

    Delay 9999

    Delay 9999

    Delay 9999

    Delay 9999

    Delay 9999

    Delay 9999

    Delay 9999

    Delay 9999

    Delay 9999

    Delay 9999

    Delay 9999

    Delay 9999

    Delay 9999

    Delay 9999

    Delay 9999

    Delay 9999

    Delay 9999

    Delay 9999

    Delay 9999

    Delay 9999

    Delay 9999

    Delay 9999

    Delay 9999

    Delay 9999

    Delay 9999

    Delay 9999

    Delay 9999

    Delay 9999

    Delay 9999

    Delay 9999

    Delay 9999

    Remember to read instruction first. Hope it will work great for you ;D


    :worthless:

    fishing macro 100% undetectable.
  2. #2
    Aldun's Avatar Banned
    Reputation
    616
    Join Date
    Feb 2009
    Posts
    1,365
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    /facepalm. First, why do you make a This thread is blablabla on your own thread..? Second, can't you put it in a file or in [code] brackets..? Also, you can still be detected by "normal" ways, (read: getting seen).
    Last edited by Aldun; 10-20-2009 at 09:21 AM.

  3. #3
    Cypher's Avatar Kynox's Sister's Pimp
    Reputation
    1356
    Join Date
    Apr 2006
    Posts
    5,368
    Thanks G/R
    0/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    This is not 100% undetectable. Please don't make ridiculous claims unless you have the knowledge and evidence to back it up.

    You obviously don't have either, so please, shut up.

  4. #4
    Robske's Avatar Contributor
    Reputation
    305
    Join Date
    May 2007
    Posts
    1,062
    Thanks G/R
    3/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Delay 9999
    "Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live." - Martin Golding
    "I cried a little earlier when I had to poop" - Sku

  5. #5
    kasenko's Avatar Member
    Reputation
    6
    Join Date
    May 2009
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Well im sorry to try to share stuff =(

  6. #6
    Khpmer's Avatar Member
    Reputation
    6
    Join Date
    Feb 2007
    Posts
    61
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Robske View Post
    Delay 9999
    Delay 9999

  7. #7
    Cypher's Avatar Kynox's Sister's Pimp
    Reputation
    1356
    Join Date
    Apr 2006
    Posts
    5,368
    Thanks G/R
    0/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kasenko View Post
    Well im sorry to try to share stuff =(
    Sigh, noone is complaining about you "sharing stuff" so stop with the transparent strawman arguments.

    I was complaining about you making claims which you have neither the knowledge nor the evidence to back up. There's a big difference between complaining about misleading claims in your post and complaining about your 'sharing'.

  8. #8
    kasenko's Avatar Member
    Reputation
    6
    Join Date
    May 2009
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    fair enough

  9. #9
    mag1212's Avatar Active Member
    Reputation
    55
    Join Date
    Aug 2009
    Posts
    352
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    easier just to use fish bot

  10. #10
    Toczko's Avatar Member
    Reputation
    1
    Join Date
    Sep 2009
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    the delay is over 9000.

    see what i did there?

  11. #11
    earthFlower's Avatar mmmmm CoreCoins Purchaser
    Reputation
    399
    Join Date
    Sep 2007
    Posts
    449
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    wow embed the script with code please

  12. #12
    chris010285's Avatar Member
    Reputation
    3
    Join Date
    Sep 2009
    Posts
    37
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Toczko View Post
    the delay is over 9000.

    see what i did there?
    lol , i c what u did there

  13. #13
    Ponjon's Avatar Member
    Reputation
    66
    Join Date
    Sep 2009
    Posts
    170
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I Feel bad about you, ppl just gave you mean Replies, Here you have a +Rep. Thank you for trying to be kind and share.

  14. #14
    Dazzled's Avatar Active Member
    Reputation
    36
    Join Date
    Sep 2008
    Posts
    137
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Yeah I agree too, you should definitely put the code in a code line, and thank you for sharing with us! For the guy that said "fishbot is easier" wtf man, so is using a hack to dupe fish. He was just sharing this source which i have never seen in my life so +Rep to you =))

  15. #15
    kasenko's Avatar Member
    Reputation
    6
    Join Date
    May 2009
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Ponjon View Post
    I Feel bad about you, ppl just gave you mean Replies, Here you have a +Rep. Thank you for trying to be kind and share.
    Originally Posted by Dazzled View Post
    Yeah I agree too, you should definitely put the code in a code line, and thank you for sharing with us! For the guy that said "fishbot is easier" wtf man, so is using a hack to dupe fish. He was just sharing this source which i have never seen in my life so +Rep to you =))
    Thank you =) someone who understands and by the way, i just want to share =)

Page 1 of 2 12 LastLast

Similar Threads

  1. Any 100% undetectable fishbots like Iwanna used to be?
    By Nogorn in forum WoW Bots Questions & Requests
    Replies: 3
    Last Post: 04-04-2015, 02:52 AM
  2. 100% Chance To Win STV Fishing Contest With Xfer
    By skiierx131 in forum World of Warcraft Exploits
    Replies: 20
    Last Post: 04-02-2009, 01:33 AM
  3. 100% STV Fishing Tournament Win!!!
    By hawaiiman in forum World of Warcraft Guides
    Replies: 13
    Last Post: 02-10-2009, 11:53 AM
  4. Helpful Fishing Macro
    By Erey in forum World of Warcraft Guides
    Replies: 1
    Last Post: 04-13-2008, 10:02 PM
All times are GMT -5. The time now is 08:22 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