Page 1 of 11 123 ... LastLast
Results 1 to 25 of 271

Thread: [RS3] [SRL-6] iFlyFisher [Barbarian fly fishing at its finest!]

  1. #1
    Join Date
    Dec 2011
    Location
    East Coast, USA
    Posts
    4,231
    Mentioned
    112 Post(s)
    Quoted
    1869 Post(s)

    Default [RS3] [SRL-6] iFlyFisher [Barbarian fly fishing at its finest!]

    iScripts™ and KeepBotting Presents:

    iFlyFisher

    -----------------
    | = Version: 1.6 = |
    -----------------
    Status: Broken(?) (post)
    Last Updated: 27th Oct 2014
    Download: here.

    Description
    Fly-fishes trout and salmon at the barbarian village.

    Features
    • 100% color!
    • Fishes trout and salmon with incredible speed (>45k xp/hr)!
    • Utilises action bar dropping!
    • Fast & accurate object finding using DTMs, TPAs, ATPAs, and T2DPAs.
    • Universal inventory slot handling for feathers!
    • Robust antipattern to reduce ban rates to an absolute minimum!
    • Informative progress report, painted on SMART!
    • Passes the 6-hour limit!
    • Compatible with RS3 and uses SRL-6!
    • Numerous failsafes to prevent script failure!



    How to Use
    1) Fill out your player info.

    Simba Code:
    ///////////////////////////////////Start setting up the script here. Refer to the comments if you don't know what you're doing.
    ///////////////////////////////////
    /////       Start Setup     ///////
    ///////////////////////////////////
    ///////////////////////////////////Start setting up the script here. Refer to the comments if you don't know what you're doing.

    const
       (* player info *)
       playerNames  = ['']; //Put your player's name (or nickname, if you set one) here.
       playerFile   = 'default'; //Put your playerfile's name here. Default is 'default'.
       desiredWorld = 0; //Enter your desired world number here. 0 for random.

       (* globals *)
       featherSlot = 1; //What inventory slot are your feathers in? (1 through 28)

       (* options *)

    ///////////////////////////////////Don't modify the script ANY FURTHER unless you know what you're doing. You could break stuff!
    ///////////////////////////////////
    /////       Stop Setup      ///////
    ///////////////////////////////////
    ///////////////////////////////////Don't modify the script ANY FURTHER unless you know what you're doing. You could break stuff!

    2) Place your character near a barbarian village fishing spot.
    3) Zoom all the way OUT.
    4) Bind trout and salmon to action bar slots 1 and 2, respectively.
    5) Make sure you're in action mode.
    6) Place your feathers in ANY inventory slot.
    7) Start the script!

    Requirements
    1) 20 fishing for trout, 30 fishing for salmon.
    2) Some feathers.

    Additional Info
    -> If you get debug messages saying "*** FATAL ERROR: No XP found" or if the progress report is bugged, make sure your XP tracker is positioned like this.

    Current Bugs
    -> Nope.

    Future Updates
    -> Not really expecting to be adding content to this script. Possibly banking, but not in the near future.
    -> Exception to the above: an alternative method of action detection (isStillFishing()) to compensate for special conditions created by items such as the Fury Shark outfit.

    Proggies
















    Update Log
    Code:
    v1.6
    - fixed dialogue box handling, dropping works now
    - hid the smart console, no reason to have two windows open
    - removed the banking option from the setup constants as it was nonfunctional anyway
    
    v1.5
    - better progress report updating
    - DTM itemfinding
    - better dropping
    - fishing level failsafe (terminates if level is < 20)
    - better debugging
    - dynamic ATPA length setting (attempts to keep the array of tpoints as small as possible. smaller array = less points to search = faster object finding)
    
    v1.4
    - fixed progress report
    - added more robust antipattern
    - 6 hour fix
    - new failsafe
    - download is now hosted on dropbox because of villavu's filesize restrictions. download link can now be found right below "last updated".
    
    v1.3
    - HUGE logic rewrite
    - dynamic camera movement (sorta)
    - hacky actionbar dropping (still 300% speed of normal dropping)
    - Fixed getFeathers()
    - lots of fixes and tweaks
    
    v1.2
    - antipattern added
    
    v1.1
    - small anyslot(tm) bugfix
    
    v1.0 
    - initial release
    Last edited by KeepBotting; 01-03-2016 at 09:00 PM. Reason: Changing status: Stable -> Broken(?)
    GitLab projects | Simba 1.4 | Find me on IRC or Discord | ScapeRune scripts | Come play bot ScapeRune!

    <BenLand100> we're just in the transitional phase where society reclassifies guns as Bad™ before everyone gets laser pistols

  2. #2
    Join Date
    Dec 2011
    Location
    Hyrule
    Posts
    8,662
    Mentioned
    179 Post(s)
    Quoted
    1870 Post(s)

    Default

    Patented AnySlot(tm) technology allows to you have your feathers in ANY inventory slot!
    Show me the patent number, or I sue for patent infringement!!!


    Congrats on the release man, looking good!

  3. #3
    Join Date
    Jun 2013
    Posts
    27
    Mentioned
    0 Post(s)
    Quoted
    13 Post(s)

    Default

    Congratz on release will try now

  4. #4
    Join Date
    Jun 2013
    Posts
    27
    Mentioned
    0 Post(s)
    Quoted
    13 Post(s)

    Default

    Capture.PNG
    first proggy

  5. #5
    Join Date
    Jan 2012
    Posts
    1,596
    Mentioned
    78 Post(s)
    Quoted
    826 Post(s)

    Default

    all of these
    Simba Code:
    {$IFDEF debug_on} writeln('[DEBUG]   : Failed to find the first fishing spot.'); {$ENDIF}
    lines could have simply been replaced with their own func...
    Simba Code:
    prodecure kbwriteln(s: string);
    begin
    {$IFDEF debug_on} writeln('[DEBUG]   : ' + s); {$ENDIF}
    end;

    kbwriteln('Failed to find the first fishing spot');

    or you could have just used a boolean rather than a define.

  6. #6
    Join Date
    Dec 2011
    Location
    East Coast, USA
    Posts
    4,231
    Mentioned
    112 Post(s)
    Quoted
    1869 Post(s)

    Default

    Quote Originally Posted by Ashaman88 View Post
    Show me the patent number, or I sue for patent infringement!!!


    Congrats on the release man, looking good!
    XD thanks

    Quote Originally Posted by liam033500 View Post
    Congratz on release will try now
    Thanks ^^

    Quote Originally Posted by liam033500 View Post
    Capture.PNG
    first proggy
    Thanks!

    Quote Originally Posted by Turpinator View Post
    all of these
    Simba Code:
    {$IFDEF debug_on} writeln('[DEBUG]   : Failed to find the first fishing spot.'); {$ENDIF}
    lines could have simply been replaced with their own func...
    Simba Code:
    prodecure kbwriteln(s: string);
    begin
    {$IFDEF debug_on} writeln('[DEBUG]   : ' + s); {$ENDIF}
    end;

    kbwriteln('Failed to find the first fishing spot');

    or you could have just used a boolean rather than a define.
    D'oh! Should I bother changing them all though, that is the question...

    ***

    update v1.4 has been released, check the update log for what's changed

    the download link is now at the top of the post, under "last updated"
    Last edited by KeepBotting; 06-12-2014 at 08:17 PM.
    GitLab projects | Simba 1.4 | Find me on IRC or Discord | ScapeRune scripts | Come play bot ScapeRune!

    <BenLand100> we're just in the transitional phase where society reclassifies guns as Bad™ before everyone gets laser pistols

  7. #7
    Join Date
    Jun 2014
    Posts
    14
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    Gonna use this to get 76 fishing quickly, then gonna do sharks till 99 hehe, will post proggys!

    E: Exp is a bit off, but runs great! Untitled.jpg
    Last edited by Shader; 06-13-2014 at 10:19 PM.

  8. #8
    Join Date
    Dec 2011
    Location
    East Coast, USA
    Posts
    4,231
    Mentioned
    112 Post(s)
    Quoted
    1869 Post(s)

    Default

    Quote Originally Posted by Shader View Post
    Gonna use this to get 76 fishing quickly, then gonna do sharks till 99 hehe, will post proggys!
    Thanks, please do!

    ***

    Updated to v1.5!

    Read the changelog for everything that's changed, read on for a more in-depth discussion of the coolest thing that's been added in this version!

    "Dynamic ATPA length setter"

    What setting the ATPA length dynamically aims to do is keep the array of TPoints as small as possible. A smaller array begets a smaller amount of points to search which begets faster object finding.

    The logic is as follows, using a flowchart as a demonstrative aid. I originally made this for myself, to help me understand the logic of the function I was about to make, before I even made it! Figured I'd put it here for teh lulz.



    Using dynamic ATPA length setting will result in a lot of this:

    Code:
    [DEBUG]     : Attempting to create fishing spot ATPA with allowed length of: 1.
    [DEBUG]     : Created fishing spot ATPA (1) in: 1310 ms.
    One point, one fishing spot, one search, one click. Simple and accurate.
    Last edited by KeepBotting; 06-15-2014 at 01:02 AM.
    GitLab projects | Simba 1.4 | Find me on IRC or Discord | ScapeRune scripts | Come play bot ScapeRune!

    <BenLand100> we're just in the transitional phase where society reclassifies guns as Bad™ before everyone gets laser pistols

  9. #9
    Join Date
    Jun 2014
    Posts
    14
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    Another prog: Prog.png

  10. #10
    Join Date
    Dec 2011
    Location
    East Coast, USA
    Posts
    4,231
    Mentioned
    112 Post(s)
    Quoted
    1869 Post(s)

    Default

    Quote Originally Posted by Shader View Post
    Another prog: Prog.png
    Thanks so much! <3
    GitLab projects | Simba 1.4 | Find me on IRC or Discord | ScapeRune scripts | Come play bot ScapeRune!

    <BenLand100> we're just in the transitional phase where society reclassifies guns as Bad™ before everyone gets laser pistols

  11. #11
    Join Date
    May 2012
    Location
    CALGARY
    Posts
    100
    Mentioned
    0 Post(s)
    Quoted
    43 Post(s)

    Default

    Very nice script and a thank you was looking for one of these

  12. #12
    Join Date
    Aug 2008
    Posts
    21
    Mentioned
    0 Post(s)
    Quoted
    9 Post(s)

    Default

    Awesome script. 6+ hours and going strong. It seems as though the exp counter is a bit bugged though. It's able to count fish, however, exp remains at 0. I'm getting this in debug over and over. Otherwise, flawless and amazing.

    *** FATAL ERROR: No XP found

  13. #13
    Join Date
    Dec 2011
    Location
    East Coast, USA
    Posts
    4,231
    Mentioned
    112 Post(s)
    Quoted
    1869 Post(s)

    Default

    Quote Originally Posted by TimeRiders View Post
    Very nice script and a thank you was looking for one of these
    Thanks and you're welcome

    Quote Originally Posted by fridaynitelights View Post
    Awesome script. 6+ hours and going strong. It seems as though the exp counter is a bit bugged though. It's able to count fish, however, exp remains at 0. I'm getting this in debug over and over. Otherwise, flawless and amazing.

    *** FATAL ERROR: No XP found
    Make sure your xp counter is set up like so:



    it's got to use the stats icon and it's got to be in the upper-right corner of your chatbox

    next version won't use that, as it's sometimes buggy regardless

    thx for your positive feedback
    Last edited by KeepBotting; 06-19-2014 at 09:10 PM.
    GitLab projects | Simba 1.4 | Find me on IRC or Discord | ScapeRune scripts | Come play bot ScapeRune!

    <BenLand100> we're just in the transitional phase where society reclassifies guns as Bad™ before everyone gets laser pistols

  14. #14
    Join Date
    Jan 2012
    Posts
    64
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    seems to be flawless so far running it for about 30mins now

  15. #15
    Join Date
    Dec 2011
    Location
    East Coast, USA
    Posts
    4,231
    Mentioned
    112 Post(s)
    Quoted
    1869 Post(s)

    Default

    Quote Originally Posted by chiefcharlie View Post
    seems to be flawless so far running it for about 30mins now
    good, good
    GitLab projects | Simba 1.4 | Find me on IRC or Discord | ScapeRune scripts | Come play bot ScapeRune!

    <BenLand100> we're just in the transitional phase where society reclassifies guns as Bad™ before everyone gets laser pistols

  16. #16
    Join Date
    Jan 2012
    Posts
    64
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    running for 8 hours no problems so far

  17. #17
    Join Date
    Dec 2011
    Location
    East Coast, USA
    Posts
    4,231
    Mentioned
    112 Post(s)
    Quoted
    1869 Post(s)

    Default

    Quote Originally Posted by chiefcharlie View Post
    running for 8 hours no problems so far
    Awesome, thanks for the proggy!
    GitLab projects | Simba 1.4 | Find me on IRC or Discord | ScapeRune scripts | Come play bot ScapeRune!

    <BenLand100> we're just in the transitional phase where society reclassifies guns as Bad™ before everyone gets laser pistols

  18. #18
    Join Date
    Nov 2011
    Location
    The Netherlands <3
    Posts
    133
    Mentioned
    0 Post(s)
    Quoted
    49 Post(s)

    Default

    Will try this script out this wednesday when my summer starts given that I've fixed the OpenGL problem

  19. #19
    Join Date
    Dec 2011
    Location
    East Coast, USA
    Posts
    4,231
    Mentioned
    112 Post(s)
    Quoted
    1869 Post(s)

    Default

    Quote Originally Posted by EvilCabbage View Post
    Will try this script out this wednesday when my summer starts given that I've fixed the OpenGL problem
    Ah awesome!
    GitLab projects | Simba 1.4 | Find me on IRC or Discord | ScapeRune scripts | Come play bot ScapeRune!

    <BenLand100> we're just in the transitional phase where society reclassifies guns as Bad™ before everyone gets laser pistols

  20. #20
    Join Date
    Apr 2012
    Posts
    96
    Mentioned
    1 Post(s)
    Quoted
    52 Post(s)

    Default

    http://oi60.tinypic.com/2jdgklk.jpg
    A tiny proggie for you
    99's using SRL bots: Mining, Smithing, Magic, Cooking, Firemaking, Fletching, Hunting, Divination, Fishing, Woodcutting, Defense, Attack, Strenght, Constitution, Contruction, Ranged.
    Thanks to: Ashaman, DannyRS, The Mayor, footballjds, KeepBotting, Press Play, bonsai, Clarity, BANNED ON jonesy259 JASTRALS

  21. #21
    Join Date
    Dec 2011
    Location
    East Coast, USA
    Posts
    4,231
    Mentioned
    112 Post(s)
    Quoted
    1869 Post(s)

    Default

    Quote Originally Posted by Mantasx27 View Post
    14 hours, NICE!
    GitLab projects | Simba 1.4 | Find me on IRC or Discord | ScapeRune scripts | Come play bot ScapeRune!

    <BenLand100> we're just in the transitional phase where society reclassifies guns as Bad™ before everyone gets laser pistols

  22. #22
    Join Date
    Dec 2012
    Posts
    48
    Mentioned
    0 Post(s)
    Quoted
    18 Post(s)

    Default

    My proggy of today. Will try for 11+hrs 2morrow

    http://i.gyazo.com/023c25d26a39a37d84278a80fb959b31.png


  23. #23
    Join Date
    Jun 2014
    Posts
    65
    Mentioned
    0 Post(s)
    Quoted
    27 Post(s)

    Default

    Quote Originally Posted by Ferhya View Post
    My proggy of today. Will try for 11+hrs 2morrow

    http://i.gyazo.com/023c25d26a39a37d84278a80fb959b31.png

    Wow that's fantastic XP! What level are you at currently?

  24. #24
    Join Date
    Dec 2011
    Location
    East Coast, USA
    Posts
    4,231
    Mentioned
    112 Post(s)
    Quoted
    1869 Post(s)

    Default

    Quote Originally Posted by Ferhya View Post
    My proggy of today. Will try for 11+hrs 2morrow

    http://i.gyazo.com/023c25d26a39a37d84278a80fb959b31.png

    Great, thanks!
    GitLab projects | Simba 1.4 | Find me on IRC or Discord | ScapeRune scripts | Come play bot ScapeRune!

    <BenLand100> we're just in the transitional phase where society reclassifies guns as Bad™ before everyone gets laser pistols

  25. #25
    Join Date
    May 2012
    Location
    Texas
    Posts
    60
    Mentioned
    0 Post(s)
    Quoted
    19 Post(s)

    Default

    quick question, Does the script support directX?


    Im trying to run simba from a portable pendrive, but the client crashes in OpenGL in the computer im using. It is a public pc, and I dont have adminstrator rights.

Page 1 of 11 123 ... LastLast

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •