Page 3 of 4 FirstFirst 1234 LastLast
Results 51 to 75 of 89

Thread: Harry's Guild Fisher

  1. #51
    Join Date
    Aug 2010
    Posts
    165
    Mentioned
    2 Post(s)
    Quoted
    39 Post(s)

    Default

    Quote Originally Posted by Harry View Post
    You are equipping a barbed-tail harpoon (goes inside your weapon slot), right?... A normal harpoon will not work, it must be equipped in your weapon-slot.
    Your still planning on implementing lobsters? ^^ Great script btw Too bad sharks are so slow @ 78 fish

    gr, super

  2. #52
    Join Date
    May 2006
    Posts
    151
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    This script is extremely easy to modify to fish lobsters; all it takes is changing 2 lines. Where it says GetNPCs(313), change that to 312, change the R_ChooseOptionSpecial to R_ChooseOptionSpecial('Cage Fishing') and change the R_DepositAll in the banking part to R_DepositAllBy('Raw lobster') (or whatever it is). That's it. Running it now with lobbies

  3. #53
    Join Date
    Jul 2007
    Posts
    81
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Just a suggestion, but perhaps add a lobby or swordfishing option to this in the case you want faster xp, or fish for cooking?

  4. #54
    Join Date
    Dec 2006
    Location
    Sweden
    Posts
    10,812
    Mentioned
    3 Post(s)
    Quoted
    16 Post(s)

    Default

    Yeah I am going to add that in the future, been really lazbusy recently!


    Send SMS messages using Simba
    Please do not send me a PM asking for help; I will not be able to help you! Post in a relevant thread or make your own! And always remember to search first!

  5. #55
    Join Date
    Feb 2007
    Location
    Colorado, USA
    Posts
    3,716
    Mentioned
    51 Post(s)
    Quoted
    624 Post(s)

    Default

    Quote Originally Posted by xiras View Post
    not sure if its just the new reflection hooks but it clicks 'walk here' instead of 'harpoon fish'
    Having this problem too, the script said it updated itself so I guess I'm the most updated version?


    it's working pretty well.. just when it comes across someone in the way it'll sit there and click walk here again & again till I move the character
    The only true authority stems from knowledge, not from position.

    You can contact me via matrix protocol: @grats:grats.win or you can email me at the same domain, any user/email address.

  6. #56
    Join Date
    Dec 2006
    Location
    Sweden
    Posts
    10,812
    Mentioned
    3 Post(s)
    Quoted
    16 Post(s)

    Default

    It's probably because I use R_ChooseOptionSpecial, which is probably out of date. I hate Jagex for making the choose-option text for shark-harpoon the same as the tuna/sword-harpoon. I'll change that soon.


    Send SMS messages using Simba
    Please do not send me a PM asking for help; I will not be able to help you! Post in a relevant thread or make your own! And always remember to search first!

  7. #57
    Join Date
    Feb 2007
    Location
    Colorado, USA
    Posts
    3,716
    Mentioned
    51 Post(s)
    Quoted
    624 Post(s)

    Default

    Quote Originally Posted by Harry View Post
    It's probably because I use R_ChooseOptionSpecial, which is probably out of date. I hate Jagex for making the choose-option text for shark-harpoon the same as the tuna/sword-harpoon. I'll change that soon.
    ah ok.. well that was a rare occurring problem, only happened once

    it deposits the harpoon and runs to the sharks without a harpoon ;P so I was just putting the harpoon back in inventory before it ran there

    going to sleep though so can't run at all while sleeping

    thanks for updating!
    The only true authority stems from knowledge, not from position.

    You can contact me via matrix protocol: @grats:grats.win or you can email me at the same domain, any user/email address.

  8. #58
    Join Date
    Feb 2006
    Posts
    3,044
    Mentioned
    4 Post(s)
    Quoted
    21 Post(s)

    Default

    Quote Originally Posted by Harry View Post
    It's probably because I use R_ChooseOptionSpecial, which is probably out of date. I hate Jagex for making the choose-option text for shark-harpoon the same as the tuna/sword-harpoon. I'll change that soon.
    This is what i use. As Temp fix and it works pretty good

    Simba Code:
    function H_ChooseOptionMultiEx(Texts: TStringArray; TextType: string; Action: fnct_ActionOptions): Boolean;
    var
      B, OptionBox: TBox;
      TPA, TPA1, TPA2, TextTPA: TPointArray;
      aTPA: T2DPointArray;
      I, H, HH, ii, L: Integer;
      Colors, SearchCols: TIntegerArray;
    begin
      Result := False;
      GetClientDimensions(B.X2, B.Y2);
      B.X1 := 0;
      B.Y1 := 0;
      Dec(B.X2);
      Dec(B.Y2);
      FindColorsTolerance(TPA1, 4343893, B.X1, B.Y1, B.X2, B.Y2, 0);
      FindColorsTolerance(TPA2, 3950929, B.X1, B.Y1, B.X2, B.Y2, 0);
      TPA := CombineTPA(TPA1, TPA2);
      if Length(TPA) < 10 then
        Exit;
      B.X2 := 0;
      B.Y2 := 0;
      aTPA := SplitTPAEx(TPA, 20, 20);
      SortATPASize(aTPA, True);
      B := GetTPABounds(aTPA[0]);
      Colors := [13034990, 4231423, 2070783, 65535, 16776960, 9812166, 16777215];
      TextType := LowerCase(TextType);
      case TextType of
        'action', 'player': SearchCols := [0, 5, 6];
        'item': SearchCols := [1, 2];
        'npc': SearchCols := [3];
        'object': SearchCols := [4];
      else
        SearchCols := [0, 1, 2, 3, 4, 5, 6];
      end;
      L := High(SearchCols);
      SetLength(aTPA, l + 1);
      for i := 0 to l do
        FindColorsTolerance(aTPA[I], Colors[SearchCols[I]], B.X1, B.Y1, B.X2, B.Y2, 3);
      TPA := MergeATPA(aTPA);
      aTPA := SplitTPAEx(TPA, 15, 1);
      L := High(aTPA);
      H := High(Texts);
      SortATPAFromFirstPoint(ATPA, Point(OptionBox.X1, optionbox.y1));
      for I := 0 to H do
      begin
        TextTPA := LoadTextTPA(Texts[i], UpChars, HH);
        for ii := 0 to L do
          if FindTextTPAInTPA(HH, TextTPA, aTPA[ii], TPA) then
          begin
            Result := True;
            case Action of
              ClickLeft: MouseBoxEx(B.x1 + 5, TPA[0].Y, B.x2 - 5, TPA[0].Y + 5, 5, 1);
              Move: MouseBoxEx(B.x1 + 5, TPA[0].Y, B.x2 - 5, TPA[0].Y + 5, 5, 3);
              Nothing: begin end;
            else
              srl_warn('ChooseOptionMultiEx', 'ClickRight not a valid click for RS menus!', warn_AllVersions);
            end;
            Exit;
          end;
      end;
    end;      

    MouseSpeed := 12;
      if not H_ChooseOptionMultiEx(['Compete', 'ompete'], 'all', ClickLeft) then
      begin
        if H_ChooseOptionMultiEx(['Competition', 'ompetit'], 'all', Move) then
        begin
          GetMousePos(a, b);
          MMouse(a + 150, b, 1, 1);
          ChooseOptionMulti(['Compete', 'ompete']);

    ~Home

  9. #59
    Join Date
    Dec 2006
    Posts
    37
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Very nice job script has been working flawlessly for over 2 hours.

  10. #60
    Join Date
    Sep 2009
    Location
    Cyberpolice HQ
    Posts
    133
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I just set the script up and I'm going to be testing this tonight on my 99 fishing account, I will post a proggy in the morning.

  11. #61
    Join Date
    Dec 2006
    Location
    Sweden
    Posts
    10,812
    Mentioned
    3 Post(s)
    Quoted
    16 Post(s)

    Default

    Why bot on a lvl99 But cool good luck!


    Send SMS messages using Simba
    Please do not send me a PM asking for help; I will not be able to help you! Post in a relevant thread or make your own! And always remember to search first!

  12. #62
    Join Date
    Sep 2009
    Location
    Cyberpolice HQ
    Posts
    133
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Checked the scripts I had running when I woke up and it was logged out, the report is decent though and I wasn't stuck in a random. I was still on the docks.
    Progress Report:
    Detected you off of dock - waiting a few seconds to know for sure.
    You probably fell off the dock - let's walk back onto it.
    Tile doesn't exist, o noes! Exiting.
    Not logged in, might you be at lobby screen?
    Not logged in, but at lobby screen - there is a chance you're not broken.


    Progress Report:
    Status: /~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
    Status: |     SRL Randoms Report       |
    Status: |       www.villavu.com        |
    Status: |~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
    Status: | SRL Logs          :        5 |
    Status: | Pillory's Solved  :        1 |
    Status: | Reward Box Solved :        1 |
    Status: \~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
    
    <!---
    <! Harry's Guild Fisher            v0.1
    <!---
    <! Total runtime:                  5 Hours, 4 Minutes and 46 Seconds
    <! Players active:                 0 out of 1
    <! Total shark banked:             700
    <! -> Shark banked per hour:       137
    <!---
    <! ## | Nick | A | Fished: | Fishing Lvl: | Rand:
    <! 0  | alas | F | 700     | 99           | 
    <! Total anti-ban procedures run: 204
    <! There are 23 fellow botters fishing with you!
    <! World-hop in: 10 minutes.
    <!---


    It runs great, when I get a better proggy I'll be sure to post it.
    Last edited by Alaska; 05-01-2011 at 11:34 AM.

  13. #63
    Join Date
    Jul 2011
    Posts
    87
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Just randomly broke. Here's my error. Ran it for 20+ hrs just recently.

    Loaded fonts: BigChars, CharsNPC, CharsTrade, FriendChars, LoginChars, SmallChars, StatChars, UpChars, XPChars
    [Error] (111:7): Unknown identifier 'DistanceFrom' at line 110
    Compiling failed.
    I think i fucked somethin up but updating srl/reflections/msi doesn't help. Restarted too.

  14. #64
    Join Date
    Dec 2006
    Location
    Sweden
    Posts
    10,812
    Mentioned
    3 Post(s)
    Quoted
    16 Post(s)

    Default

    It's because I haven't updated this to Ref2 yet.


    Send SMS messages using Simba
    Please do not send me a PM asking for help; I will not be able to help you! Post in a relevant thread or make your own! And always remember to search first!

  15. #65
    Join Date
    Jul 2011
    Posts
    87
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Oh I'm sorry. I love this script btw!!! +REP

  16. #66
    Join Date
    Dec 2006
    Location
    Sweden
    Posts
    10,812
    Mentioned
    3 Post(s)
    Quoted
    16 Post(s)

    Default

    It's ok

    Try running it now, I haven't tested it (don't have a P2P account nor have interest in getting one) but it "should" work.

    Updated to Ref2.


    Send SMS messages using Simba
    Please do not send me a PM asking for help; I will not be able to help you! Post in a relevant thread or make your own! And always remember to search first!

  17. #67
    Join Date
    Jul 2011
    Posts
    87
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Props, Harry. PS, I love your work. I can give u my personal p2p account to test on occasion if you need.

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

    Default

    I haven't used the script before, so excuse my dumb questions, but what happens if you're, for example, fishing on the 'h' dock for sharks, the spot changes to another position on the same dock, but the 'actual closest' spot just a few tiles away is on the other dock; will you choose that spot or search the area around your current dock for a shark spot 'before' running to the other dock?

    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..."


  19. #69
    Join Date
    Dec 2006
    Location
    Sweden
    Posts
    10,812
    Mentioned
    3 Post(s)
    Quoted
    16 Post(s)

    Default

    Glad you like them

    @ Flight, It'll run to the closest spot, so it will run to the other dock if the pool is technically closer, iirc. Not very humanlike but it worked fine for me.


    Send SMS messages using Simba
    Please do not send me a PM asking for help; I will not be able to help you! Post in a relevant thread or make your own! And always remember to search first!

  20. #70
    Join Date
    Sep 2008
    Location
    Not here.
    Posts
    5,422
    Mentioned
    13 Post(s)
    Quoted
    242 Post(s)

    Default

    We can calculate the "cost" distance to a tile. It's in the Titan include.

  21. #71
    Join Date
    Jul 2011
    Posts
    87
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Great script, running like a champ.

    Progress Report:
    Status: /~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
    Status: |     SRL Randoms Report       |
    Status: |       www.villavu.com        |
    Status: |~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
    Status: | SRL Logs          :       16 |
    Status: | Lamps Solved      :        1 |
    Status: | Pinballs Solved   :        1 |
    Status: | Reward Box Solved :        1 |
    Status: \~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
    
    <!---
    <! Harry's Guild Fisher            v0.2
    <!---
    <! Total runtime:                  9 Hours, 16 Minutes and 40 Seconds
    <! Players active:                 1 out of 1
    <! Total shark banked:             1204
    <! -> Shark banked per hour:       129
    <!---
    <! ## | Nick | A | Fished: | Fishing Lvl: | Rand:
    <! 0  | sir  | T | 1204    | 89           | 
    <! Total anti-ban procedures run: 57
    <! There are 20 fellow botters fishing with you!
    <!---
    Last edited by whatev; 09-07-2011 at 05:26 PM.

  22. #72
    Join Date
    Jul 2011
    Posts
    87
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Just caught SMART doing this.

    (see screenshot)


    What is going on?

    edit: horrible screenie..
    Last edited by whatev; 09-07-2011 at 10:50 PM.

  23. #73
    Join Date
    Dec 2006
    Location
    Sweden
    Posts
    10,812
    Mentioned
    3 Post(s)
    Quoted
    16 Post(s)

    Default

    Quote Originally Posted by whatev View Post
    Just caught SMART doing this.

    (see screenshot)


    What is going on?

    edit: horrible screenie..
    Your connection to the server probably got lost when a right-click menu was open. Silly Jagex bug. Just restart Simba and it should work again.


    Send SMS messages using Simba
    Please do not send me a PM asking for help; I will not be able to help you! Post in a relevant thread or make your own! And always remember to search first!

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

    Default

    Quote Originally Posted by Harry View Post
    Your connection to the server probably got lost when a right-click menu was open. Silly Jagex bug. Just restart Simba and it should work again.
    Yep, that's exactly right. It's pretty rare for this to happen though.

    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..."


  25. #75
    Join Date
    Oct 2006
    Posts
    491
    Mentioned
    0 Post(s)
    Quoted
    41 Post(s)

    Default

    Anyone got 99 Fishing off of this? Is the guild relatively a ban hot-spot? I'm currently fishing at Catherby for awhile, and so far no bans.

Page 3 of 4 FirstFirst 1234 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
  •