[REQ] Working Fishbot menu

User Tag List

Results 1 to 11 of 11
  1. #1
    zycamzip's Avatar Contributor

    Reputation
    232
    Join Date
    Aug 2007
    Posts
    542
    Thanks G/R
    17/40
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [REQ] Working Fishbot

    When the expansion came out, Trion removed the /log file. Does anyone have a working fishbot for Rift now, one which doesn't use the /log file?

    [REQ] Working Fishbot
  2. #2
    Koalemos's Avatar Master Sergeant
    Reputation
    2
    Join Date
    Jul 2010
    Posts
    129
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    They didn't remove it they just moved it to a different location. The scripts had been working fine until today when they changed how the fishing log works. Here's to hoping a new bot is created quickly.

  3. #3
    asherbourne's Avatar Member
    Reputation
    2
    Join Date
    Sep 2009
    Posts
    14
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I wrote a script to work with finding pixels, then pressing a key to reel in, only problem is, pixels dont always work because of reflection of water i tried to change the tolerance and it just wasnt enough at times, ideally, if someone could figure out a way to catch the cursor change, this could help achieve the goal of a new fishbot!

  4. #4
    zycamzip's Avatar Contributor

    Reputation
    232
    Join Date
    Aug 2007
    Posts
    542
    Thanks G/R
    17/40
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Post it, and maybe someone will edit the script

  5. #5
    moe's Avatar Active Member
    Reputation
    15
    Join Date
    Jul 2006
    Posts
    228
    Thanks G/R
    0/1
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i've just finished one today, took about 8 hours. so far over 1000 loots without a single fail, it doesnt use pixel scans so no matter the environment it will always work (it even does blues). I'm hesitant to release it as there is profit to be made, likely i'll release it in a week or so.
    Last edited by moe; 12-04-2012 at 06:01 AM.

  6. #6
    darkjoy's Avatar Member
    Reputation
    2
    Join Date
    May 2012
    Posts
    108
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by moe View Post
    i've just finished one today, took about 8 hours. so far over 1000 loots without a single fail, it doesnt use pixel scans so no matter the environment it will always work (it even does blues). I'm hesitant to release it as there is profit to be made, likely i'll release it in a week or so.
    Can you tell us how you did it, without pixel scans?

  7. #7
    moe's Avatar Active Member
    Reputation
    15
    Join Date
    Jul 2006
    Posts
    228
    Thanks G/R
    0/1
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    for now its a secret.. but its incredibly simple and I'm rather shocked it isnt being done already.

  8. #8
    zycamzip's Avatar Contributor

    Reputation
    232
    Join Date
    Aug 2007
    Posts
    542
    Thanks G/R
    17/40
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Saw one on a different "cheat" site, gonna try that one. Made in AutoHotKey.

  9. #9
    FrankTheCrazy's Avatar Member
    Reputation
    11
    Join Date
    Nov 2008
    Posts
    122
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Ezmode for fishing bot: check cursor change.
    Profit

  10. #10
    darkjoy's Avatar Member
    Reputation
    2
    Join Date
    May 2012
    Posts
    108
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    ; ******************************************************************************** ****************************************
    ; **************************************************** User Variables ****************************************************
    ; ******************************************************************************** ****************************************

    ; Enter the following values in the section below AFTER := , replace the filler text in capitals
    ; LogL - The name of your Windows Profile
    ; RodL - The location of the Fishing Rod on your bar
    ; BaitL - The location of Bait on your bar
    ; xRod / yRod - The X and Y coordinates of your Fishing Rod in your bags (use AutoIT Window Spy)

    LogL := NAME
    RodL := VALUE
    BaitL := VALUE
    xRod := XVALUE
    yRod := YVALUE

    ; To detect the Reel In event you must manually fish once and take a screenshot of the game when you see the water splash.
    ; It is best to wait until the splash is at its largest.
    ; Open the screenshot in a photo editing program, such as MSPaint. To find the hex value in MSPaint use the eyedropper to
    ; select a light colour in the middle of the splash, click Edit Colours, and note down the Red Green Blue values.
    ; Navigate to RGB to Hex and convert the RGB values into Hex.
    ; Replace HEXVALUE with the 6 digit Hex value provided by rgbtohex.net

    HexV := HEXVALUE

    ; ******************************************************************************** ****************************************
    ; *************************************************** End of Variables ***************************************************
    ; ******************************************************************************** ****************************************

    IfWinNotActive, RIFT, , WinActivate, RIFT,
    WinWaitActive, RIFT,

    Logfile = C:\Users\%LogL%\Documents\RIFT\log.txt
    Fish :=0
    MouseGetPos, xFish, yFish

    Top:
    Px1 := (xFish-25)
    Py1 := (yFish-25)
    Px2 := (xFish+25)
    Py2 := (yFish+25)
    FileDelete, %logfile%
    Last_Line :=0
    Sleep, 500
    Send, %RodL%
    Sleep, 400
    MouseClick, left, xFish, yFish
    Sleep, 200
    If Fish = 1
    Goto, bait

    Go:
    Timer := A_TickCount

    Go-Loop:
    {
    PixelSearch, , ,%Px1%,%Py1%,%Px2%,%Py2%, 0x%HexV%, 40, Fast RGB
    If ErrorLevel
    Goto, Read-Log
    else
    Goto, Reel
    }

    Read-Log:
    {Loop, read, %logfile%
    Last_Line := A_LoopReadLine
    {
    Sleep, 200
    IfInString, Last_Line, lure has decayed
    Fish :=1
    IfInString, Last_Line, away
    Goto, Top
    IfInString, Last_Line, stop fishing
    Goto, Top
    IfInString, Last_Line, received
    Goto, Top
    If A_TickCount - Timer < 20000
    Goto, Go-Loop
    Goto, Top
    }
    }

    Reel:
    Loop
    {
    FileDelete, %logfile%
    Last_Line :=0
    Sleep, 200
    Send, %RodL%
    Sleep, 2500
    Goto, Go
    }

    Bait:
    Loop
    {
    Fish :=0
    Sleep, 200
    Send, %BaitL%
    Sleep, 200
    MouseClick, left, xRod, yRod
    Sleep, 4000
    Goto, Top
    }


    F8::Goto, Bait
    F9::Pause
    F10::Reload
    F11::ExitApp
    Found this @ Rift Fishing Bot -simplistic- - Page 11 - Gaming - AutoHotkey Community

    Hope this helps.

  11. #11
    darkjoy's Avatar Member
    Reputation
    2
    Join Date
    May 2012
    Posts
    108
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

Similar Threads

  1. [REQ] Fishbot private 5.4.2
    By hunterioxas in forum WoW Bots Questions & Requests
    Replies: 0
    Last Post: 02-22-2015, 03:02 PM
  2. [Hack] 2.4.3 patch fishbot working on win7 64bit ?
    By carlosek1 in forum World of Warcraft Bots and Programs
    Replies: 2
    Last Post: 06-10-2013, 08:32 AM
  3. [req] working strath door to furbolg
    By bottermagee in forum WoW ME Questions and Requests
    Replies: 0
    Last Post: 10-21-2008, 03:02 PM
  4. BWH 1.9 Working (no trial)
    By Matt in forum World of Warcraft Bots and Programs
    Replies: 2
    Last Post: 03-23-2006, 07:04 PM
  5. World of Warcraft Bot (GetALifeBot) 0.57 working with 1.9.4
    By Matt in forum World of Warcraft Bots and Programs
    Replies: 7
    Last Post: 03-07-2006, 09:43 PM
All times are GMT -5. The time now is 10:44 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