Page 9 of 43 FirstFirst ... 789101119 ... LastLast
Results 201 to 225 of 1071

Thread: [C]Heavy-Rodder (Barbarian fisher)

  1. #201
    Join Date
    Aug 2007
    Location
    Colorado
    Posts
    7,421
    Mentioned
    268 Post(s)
    Quoted
    1442 Post(s)

    Default

    Updated to V1.3. Make sure your feathers are in your first inventory slot! For alching, have your coins & nature runes in slot 2 & 3.

    Current projects:
    [ AeroGuardians (GotR minigame), Motherlode Miner, Blast furnace ]

    "I won't fall in your gravity. Open your eyes,
    you're the Earth and I'm the sky..."


  2. #202
    Join Date
    Jan 2012
    Posts
    124
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    The script just keeps walking around to each fishing spot but never actually starts to fish. :\

    Is it SRL 5?
    Last edited by Quintessence; 01-08-2012 at 08:46 AM.

  3. #203
    Join Date
    Aug 2007
    Location
    Colorado
    Posts
    7,421
    Mentioned
    268 Post(s)
    Quoted
    1442 Post(s)

    Default

    Quote Originally Posted by Quintessence View Post
    The script just keeps walking around to each fishing spot but never actually starts to fish. :\

    Is it SRL 5?
    Yes it's SRL 5.

    Current projects:
    [ AeroGuardians (GotR minigame), Motherlode Miner, Blast furnace ]

    "I won't fall in your gravity. Open your eyes,
    you're the Earth and I'm the sky..."


  4. #204
    Join Date
    Jan 2012
    Posts
    124
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    Can you reproduce or is anyone else experiencing the same problem? It seems to be rotating between the most north western and northern fishing spots. It'll run to one then run to the other and repeat itself.

    I'm also on SRL 5.

  5. #205
    Join Date
    Nov 2011
    Posts
    84
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Quintessence View Post
    Can you reproduce or is anyone else experiencing the same problem? It seems to be rotating between the most north western and northern fishing spots. It'll run to one then run to the other and repeat itself.

    I'm also on SRL 5.
    I have exactly the same problem, just ran it first time and got this.

  6. #206
    Join Date
    Aug 2007
    Location
    Colorado
    Posts
    7,421
    Mentioned
    268 Post(s)
    Quoted
    1442 Post(s)

    Default

    So then it's not finding the fishing spots even though they're visible on your screen?

    Current projects:
    [ AeroGuardians (GotR minigame), Motherlode Miner, Blast furnace ]

    "I won't fall in your gravity. Open your eyes,
    you're the Earth and I'm the sky..."


  7. #207
    Join Date
    Nov 2011
    Posts
    84
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Flight View Post
    So then it's not finding the fishing spots even though they're visible on your screen?
    Yeah, it's just running from the north west spot to north, without actually clicking the fishing spots. Just clicking the minimap

  8. #208
    Join Date
    Aug 2007
    Location
    Colorado
    Posts
    7,421
    Mentioned
    268 Post(s)
    Quoted
    1442 Post(s)

    Default

    Ok you're going to be my tester, how does that sound? Replace your current 'FindFishingSpot' function with this one and tell me if it works any better:
    Simba Code:
    Function FindFishingSpot(Var X,Y: Integer): Boolean;
      var
        TPA: TPointArray;
        Hmod,Smod: Extended;
        L,i,Tol,CTS,Col: Integer;
        ATPA: T2DPointArray;
      begin
        Result := False;

        ReturnValues([11970978, 12169386, 12433588], Hmod, Smod, Col, Tol);
        CTS := GetColorToleranceSpeed;
        ColorToleranceSpeed(2);
        SetColorSpeed2Modifiers(Hmod, SMod);
        FindColorsSpiralTolerance(MSCX, MSCY, TPA, Col, MSX1, MSY1, MSX2, MSY2, Tol);
        ColorToleranceSpeed(CTS);
        if (Length(TPA) < 1) then
          Exit;
        ATPA := TPAToATPAEx(TPA, 20, 20);
        SortATPAFrom(ATPA, Point(MSCX,MSCY));
        L := High(ATPA);
        SetArrayLength(ATPA, L+1);
        for i := 0 to L do
        begin

          MiddleTPAEx(ATPA[i], X, Y);
          HumanMMouse(X, Y, 15, 15);
          if WaitUpTextMulti(['se-Rod','Fishing','spot'], 555) then
          begin
            Result := True;
            GetMousePos(X, Y);
            Exit;
          end else
            Result := False;

        end;

      end;

    Current projects:
    [ AeroGuardians (GotR minigame), Motherlode Miner, Blast furnace ]

    "I won't fall in your gravity. Open your eyes,
    you're the Earth and I'm the sky..."


  9. #209
    Join Date
    Nov 2011
    Posts
    84
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Flight View Post
    Ok you're going to be my tester, how does that sound? Replace your current 'FindFishingSpot' function with this one and tell me if it works any better:
    Simba Code:
    Function FindFishingSpot(Var X,Y: Integer): Boolean;
      var
        TPA: TPointArray;
        Hmod,Smod: Extended;
        L,i,Tol,CTS,Col: Integer;
        ATPA: T2DPointArray;
      begin
        Result := False;

        ReturnValues([11970978, 12169386, 12433588], Hmod, Smod, Col, Tol);
        CTS := GetColorToleranceSpeed;
        ColorToleranceSpeed(2);
        SetColorSpeed2Modifiers(Hmod, SMod);
        FindColorsSpiralTolerance(MSCX, MSCY, TPA, Col, MSX1, MSY1, MSX2, MSY2, Tol);
        ColorToleranceSpeed(CTS);
        if (Length(TPA) < 1) then
          Exit;
        ATPA := TPAToATPAEx(TPA, 20, 20);
        SortATPAFrom(ATPA, Point(MSCX,MSCY));
        L := High(ATPA);
        SetArrayLength(ATPA, L+1);
        for i := 0 to L do
        begin

          MiddleTPAEx(ATPA[i], X, Y);
          HumanMMouse(X, Y, 15, 15);
          if WaitUpTextMulti(['se-Rod','Fishing','spot'], 555) then
          begin
            Result := True;
            GetMousePos(X, Y);
            Exit;
          end else
            Result := False;

        end;

      end;
    Ok trying that now.

    Edit, it ran the exact same movements as reported above. Clicking back and fourth on the minimap. This is with the replaced fishingspot function.
    Last edited by S7U; 01-08-2012 at 12:46 PM.

  10. #210
    Join Date
    Aug 2007
    Location
    Colorado
    Posts
    7,421
    Mentioned
    268 Post(s)
    Quoted
    1442 Post(s)

    Default

    Ok, well that's sure weird... I'll have to just put back in the old fish-spot finder.

    Try this one that I've attached to the post.
    Last edited by Flight; 01-08-2012 at 12:51 PM.

    Current projects:
    [ AeroGuardians (GotR minigame), Motherlode Miner, Blast furnace ]

    "I won't fall in your gravity. Open your eyes,
    you're the Earth and I'm the sky..."


  11. #211
    Join Date
    Nov 2011
    Posts
    84
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Flight View Post
    Ok, well that's sure weird... I'll have to just put back in the old fish-spot finder.
    okay Maybe have someone else test it? I'm sure I did it right, just copied and replaced it. Anyways thanks for the help

  12. #212
    Join Date
    Jan 2012
    Posts
    124
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    Quote Originally Posted by Flight View Post
    Ok, well that's sure weird... I'll have to just put back in the old fish-spot finder.

    Try this one that I've attached to the post.
    This one works flawlessly so far. I've noticed that it has a larger rate of anti-ban behaviour, is this normal?

  13. #213
    Join Date
    Aug 2007
    Location
    Colorado
    Posts
    7,421
    Mentioned
    268 Post(s)
    Quoted
    1442 Post(s)

    Default

    Quote Originally Posted by Quintessence View Post
    This one works flawlessly so far. I've noticed that it has a larger rate of anti-ban behaviour, is this normal?
    Ok I could adjust this. I'll have to test it personally to tweak it just right.

    Current projects:
    [ AeroGuardians (GotR minigame), Motherlode Miner, Blast furnace ]

    "I won't fall in your gravity. Open your eyes,
    you're the Earth and I'm the sky..."


  14. #214
    Join Date
    Dec 2011
    Posts
    505
    Mentioned
    0 Post(s)
    Quoted
    26 Post(s)

    Default

    Quote Originally Posted by Flight View Post
    Updated to V1.3. Make sure your feathers are in your first inventory slot! For alching, have your coins & nature runes in slot 2 & 3.
    :P
    Can you please stop suggesting Feathers
    Bait is cheap

    Feathers: 19gp
    Bait: 3gp

    Last edited by blinkblink; 01-08-2012 at 07:22 PM.

  15. #215
    Join Date
    Nov 2011
    Posts
    84
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    ^^ He wasn't suggesting feathers, just telling you were to put them.

    Also, Flight. The script is working well now.

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

    Default

    btw, for the fish and alch thing, if you make it cast low level alchemy it doesnt interrupt your fishing, which will make the xp/hour rise alot as you never have to stop fishing apart from to click a new spot

  17. #217
    Join Date
    Jan 2012
    Location
    Riga
    Posts
    2
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Just a second ago I tested the script and got a problem (maybe it's just my fault but here it is) - when I started it, it found the fishing spot, started fishing but then eventualy started to do weird things in the same order over and over again: it clicks in minimap to go to other fishing spot (first cycle near one fishing icon, secon cycle - other fishing icon) -> checks spelbook tab -> clicks to get back to inventory -> starts fishing and fishes around 4 - 7 fishes -> flashes the xp counter button -> gives a progress report -> clicks in minimap to go to the other fishing spot near the other fishing icon -> ...
    (still it droped all fishes from inventory when needed but went back again for the cycle afterwards)

    I ran the script for 10 minutes, tried to restart the script, but back again I had the problem I explained above.

    Any solutions to this one? I could live with the smaller exp rate because of the running but it looks very weird if someones watching it and for them it may look like boting. :/ If more specific information needed about the process, I can try to explain.

    Btw, keep up the good job!

    Edit: I was using the version attached in the first page - "HeavyRodder(1.3).Simba" - was that the most recently released one?
    Ok, i'll have some sleep and after some good dreams i'll check for answers. Good night everyone. ^^
    Last edited by BoksaCimds; 01-08-2012 at 11:44 PM.

  18. #218
    Join Date
    Jan 2012
    Posts
    124
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    Try this one for now (it's a temporary fix by Flight):
    http://villavu.com/forum/attachment....8&d=1326027052

  19. #219
    Join Date
    Nov 2011
    Posts
    84
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Scroll up on this page for most recent script.

  20. #220
    Join Date
    Aug 2007
    Location
    Colorado
    Posts
    7,421
    Mentioned
    268 Post(s)
    Quoted
    1442 Post(s)

    Default

    Ok, I've added the revised version of V1.3 to the OP. For those of you who previously downloaded 1.3 from the OP only, you need to re-download the script.

    Current projects:
    [ AeroGuardians (GotR minigame), Motherlode Miner, Blast furnace ]

    "I won't fall in your gravity. Open your eyes,
    you're the Earth and I'm the sky..."


  21. #221
    Join Date
    Jan 2012
    Location
    Riga
    Posts
    2
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Oh, thanks. I tried the newest version and looks like it runs as smoothly as it can. I'll report if anything bad comes up. Thanks again and have a good day.

  22. #222
    Join Date
    Jan 2012
    Posts
    124
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default



    It's really more about 65-70K experience an hour taking into account fishing urns and the amount of time required to bank and log out to avoid the "6 hour update."

  23. #223
    Join Date
    Nov 2011
    Location
    In your bed ;)
    Posts
    123
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    my rod looks pretty big when i use this script

  24. #224
    Join Date
    Jan 2012
    Posts
    30
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Keeps dropping my fishing rod (literally every other inventory it drops it)

  25. #225
    Join Date
    Aug 2007
    Location
    Colorado
    Posts
    7,421
    Mentioned
    268 Post(s)
    Quoted
    1442 Post(s)

    Default

    Quote Originally Posted by leapfrog View Post
    Keeps dropping my fishing rod (literally every other inventory it drops it)
    Your barbarian fishing rod should be added to your belt at the beginning of the script. And if it's already added to your belt then you won't need to have one in your inventory, you'll fish without it, so what's the problem then?

    Current projects:
    [ AeroGuardians (GotR minigame), Motherlode Miner, Blast furnace ]

    "I won't fall in your gravity. Open your eyes,
    you're the Earth and I'm the sky..."


Page 9 of 43 FirstFirst ... 789101119 ... 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
  •