Results 1 to 7 of 7

Thread: Help with

  1. #1
    Join Date
    Sep 2006
    Location
    West U.S.
    Posts
    2,172
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

    Help with

    if i was to make a fishing script for karamja...

    what would be recommended to find the fishing areas???
    also how do i avoid that whirlpool random...

    i have a pretty good idea of how im going to make this script

    1.start at falador
    2.check equipment/stats/money (gametabs and possibly DTMs)
    3.get road color and start walking south...(radial walking procedure?)
    4.right click on one of the officers, pay-fare, and check uptext
    (this is the hard part...)

    5. walk through jungle... (AS IF!!) (im thinkin i should make it follow the water color at the edge and possibly radial walk it 120 degrees = northwestward)
    6.fish for lobbies or harpoon for swordies...
    7.anti-randoms...(theres gonna be alot yes i know...)
    8.walk back through jungle... (radial walking 270 degrees = southeastward)
    9.right-click pay-fare officer and uptext check
    10.walk 3 roadcolors back to the bank...
    11.check bank symbol, click on bank symbol
    12.click on use-quickly bank
    13. autochecks for lobbies or swordies and then bank
    14. repeat...

    (possibly a free-script if i can get it to work....)

    this would be one heck of a script if i can get all this done...

    if ever...

    there anything i need to add???
    possible procedures or anything else for that matter...?

    They are sisters...
    Runescape Classic

  2. #2
    Join Date
    Sep 2006
    Location
    West U.S.
    Posts
    2,172
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

    Default

    oops...

    *mods please delete this*!

    They are sisters...
    Runescape Classic

  3. #3
    Join Date
    Dec 2006
    Posts
    27
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    How to avoid the whirlpool random:
    SCAR Code:
    program KaramjaFisher;
    {.include/SRL/SRL.scar}
    {.include/SRL/SRL/skill/Fishing.scar}

    //code

    begin
      SetUpSRL;
      SetUpSRLFishing;
    end;
    and insert
    SCAR Code:
    HandleWhirlpool;
    whenever you want to check for the whirlpool

    and as for finding the fishing areas, I don't really know, as I have never made a fisher before. Actually, I'm surprised that SRL doesn't have a built in function to find the fishing spot. But I'm sure that if you look at some free fishing scripts, you can easily get an idea as to how to find the fishing spot...

  4. #4
    Join Date
    Feb 2007
    Location
    USA
    Posts
    667
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    You can probably just make a DTM of the blue fish circle. I don't think that part will be a problem.

  5. #5
    Join Date
    Sep 2006
    Location
    West U.S.
    Posts
    2,172
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

    Default

    yeah ill try the dtm...
    but then another problem occured...

    how do i make my mouse right click instead of left click since the "Cage fishing" is sometimes over lapped by the "Net or Bait Fish"?

    They are sisters...
    Runescape Classic

  6. #6
    Join Date
    Feb 2007
    Location
    USA
    Posts
    667
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    change the argument in whatever procedure you are using to clickmouse to be 'false' instead of 'true'
    False=right click
    True=left click
    e.g. Mouse(x,y,1,1,False); //right clicks
    or
    ClickMouse(x,y,False); //right clicks

    Once you right click, you'll probably want to use something like'ClickText' to click on the cage option.

  7. #7
    Join Date
    Sep 2006
    Location
    West U.S.
    Posts
    2,172
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

    Default

    alright thanks

    if you guys have any idea as too what to add in besides the usual anti ban, anti random, auto responder tell me!

    im going to cook this script up well if you guys give me more ingredients lol

    They are sisters...
    Runescape Classic

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
  •