Results 1 to 12 of 12

Thread: Barbarian heavy-rodder

  1. #1
    Join Date
    Dec 2011
    Posts
    134
    Mentioned
    1 Post(s)
    Quoted
    20 Post(s)

    Default Barbarian heavy-rodder

    Hello, and welcome to my first ever script.
    I finally decided to stop being such a leech and to finally make my own script.
    This script will catch leaping fish at otto's grotto for some of the best xp in the game!

    To setup: Set Camera to top position, facing west.
    Put either feathers or (cheaper alternative) bait in your first or second inventory spot, and click run

    Also, if you set Urns to "true", fill your last 10 spots with urns, and it will not drop these either. This will increase xp/hour from 45/50k to 55/60k!

    May need mild baby sitting, as it is my first script and is quite basic. If it ends up at the northern-most spot, and that disappears, chances are it will get stuck and there is no failsafe for this.

    Also, to make the proggy work you must have either Fishing or Total Xp as one of your 3 skills in the xp popup thing in the top right


    FEEDBACK GREATLY APPRECIATED



    Credits to Flight, as i took the antiban from his heavy-rodder, Yohojo for his video tutorials which helped me out alot, abu_jwka for his proggy tutorial, Torrent of Flame for his power-mining tutorial, putajonny, NKN and TotalKillz for all your help!

    -Script updated to include login/breaking support. Also with some more testing I've found that it sometimes gets confused and thinks a full slayer helmet (e) is a fishing spot, and I will take a look at this when i get home from college
    Last edited by stu; 04-16-2012 at 06:35 AM.

  2. #2
    Join Date
    Dec 2011
    Posts
    134
    Mentioned
    1 Post(s)
    Quoted
    20 Post(s)

    Default

    small proggy to show xp rates (i'm only 82 fishing) without urns.
    With urns would raise this to around 60k

    ************************************************** ****************
    */////////---------- Stus Leap Fisher v0.1----- ----------\\\\\\\*
    ************************************************** ****************

    */////////--------- Proggy for the player: --------\\\\\\\\\*
    *//////////////////Running for: 8400seconds
    */////////We have gained: 114192 xp / Thats 48939 xp per hour
    gotta get off the bed so can't leave it running any longer, but this shows it's pretty stable (considering i've never scripted before and this barely took any time to make)

    ENJOY
    Last edited by stu; 04-15-2012 at 09:56 PM.

  3. #3
    Join Date
    Feb 2012
    Posts
    212
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Wow, nice first script. I couldn't see anything wrong with it whilst having a quick look. I'm gonna try your urn support out soon
    Previously known as sockz
    - Dwarven Stout buyer (F2P MONEYMAKER) http://villavu.com/forum/showthread....45#post1001045
    - G-Altar script, tons of failsafes. (Flawless for me) http://villavu.com/forum/showthread.php?t=79454

  4. #4
    Join Date
    Nov 2011
    Location
    MA
    Posts
    545
    Mentioned
    3 Post(s)
    Quoted
    10 Post(s)

    Default

    Just to point this out, you don't do anything with the breaking constants

  5. #5
    Join Date
    Dec 2011
    Posts
    134
    Mentioned
    1 Post(s)
    Quoted
    20 Post(s)

    Default

    Quote Originally Posted by Sockz View Post
    Wow, nice first script. I couldn't see anything wrong with it whilst having a quick look. I'm gonna try your urn support out soon
    Thanks

    Quote Originally Posted by tehq View Post
    Just to point this out, you don't do anything with the breaking constants
    haha oh yeah, forgot about that as I never use it myself. ill edit that a bit later

  6. #6
    Join Date
    Dec 2011
    Posts
    134
    Mentioned
    1 Post(s)
    Quoted
    20 Post(s)

    Default

    Another proggy

    Simba Code:
    ******************************************************************
    */////////---------- Stus Leap Fisher v0.1----- ----------\\\\\\\*
    ******************************************************************

    */////////--------- Proggy for the player:  --------\\\\\\\\\*
    *//////////////////Running for: 5471seconds
    */////////We have gained: 90502 xp / Thats 59551 xp per hour

  7. #7
    Join Date
    Sep 2006
    Posts
    6,089
    Mentioned
    77 Post(s)
    Quoted
    43 Post(s)

    Default

    Simple, yet effective

    A few tips:
    -Check if you are logged in while fishing.
    -Use local variables (makes it more clear where variables are used and what for).
    -Perhaps you want to check if a random occurred (FindNormalRandoms returns a boolean) so you can start fishing again.
    Hup Holland Hup!

  8. #8
    Join Date
    Dec 2011
    Posts
    134
    Mentioned
    1 Post(s)
    Quoted
    20 Post(s)

    Default

    Quote Originally Posted by nielsie95 View Post
    Simple, yet effective

    A few tips:
    -Check if you are logged in while fishing.
    -Use local variables (makes it more clear where variables are used and what for).
    -Perhaps you want to check if a random occurred (FindNormalRandoms returns a boolean) so you can start fishing again.

    Thanks alot for the feedback

    -Ok, will add this a bit later
    -So this is just to make it clearer for other people reading my script? Will bare this in mind for future updates/scripts
    -I included FindNormalRandoms in my Antiban procedure, which is part of the main loop. Is this good enough, or should I add more throughout my script?

  9. #9
    Join Date
    Mar 2012
    Location
    127.0.0.1
    Posts
    3,383
    Mentioned
    95 Post(s)
    Quoted
    717 Post(s)

    Default

    Not a bad first script at all.
    To get the angle right, could you use
    Simba Code:
    SetAngle(SRL_ANGLE_HIGH)
    Also, why not have a fail check? Create a local variable, and have it go up by one everytime it fails to fish, then if it fails say, six times, it could use SPS or RadialWalk to walk back to the original fishing spot.
    Edit: For the Urns, what I said wouldn't work, so how about you make a DTM for the Urn's, and have it add them to an array or something, or just keep it as is. xD

    For progress report, to get it in Hours/Minutes/Second, you could use this;
    Simba Code:
    Writeln('Total Time: ' + TimeRunning);
    It's what I use in all my scripts.
    Last edited by NKN; 04-16-2012 at 09:22 PM.

  10. #10
    Join Date
    Dec 2011
    Posts
    134
    Mentioned
    1 Post(s)
    Quoted
    20 Post(s)

    Default

    ahh i was trying to use SET_ANGLE(True) in my next script, but it wouldnt compile, have they changed it to (SRL_ANGLE_HIGH) now?
    I was looking at something like that fail check you posted, and posted a thread about a problem i was having, i'll try it your way though sounds much better than what i had in mind.

    Ill start making changes when I'm home from college

    And ill change the proggy, it was annoying me how it was in seconds too
    Last edited by stu; 04-17-2012 at 09:43 AM.

  11. #11
    Join Date
    Mar 2012
    Posts
    25
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Any chance you could have it cut the fish up and use the resulting supplies for bait instead of feathers/bait?

  12. #12
    Join Date
    May 2012
    Posts
    190
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Looks like a good script, was gonna say there is already a heavy rodder made, but when I saw it used urns I realised this was EPIC!

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
  •