Results 1 to 20 of 20

Thread: Walking From Mining Guild to Bank

  1. #1
    Join Date
    Jul 2007
    Posts
    104
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Walking From Mining Guild to Bank

    I am having trouble walking from the mining guild to the bank (from the ladders at the guild) no problem walking form the bank to the guild any suggestions anyone?

  2. #2
    Join Date
    Jul 2007
    Location
    Ottawa, Canada
    Posts
    930
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Use radial walk =] its my favorite.i made a script that walks me from lumby to varock east with it lol
    ~ Metagen

  3. #3
    Join Date
    Apr 2007
    Location
    UK
    Posts
    2,295
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    RadialWalk would be best.

    If the bank symbol is visible you can walk to bank via that.

    Rogeruk's Al-Kharid Tanner V1.1 [Released]
    Rogeruk's Barbarian Crafter [Coming Soon]
    Rogeruk's Guild Fisher [Coming Soon]
    !! - Taking Requests - !!

  4. #4
    Join Date
    Jul 2007
    Posts
    104
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I have tried that but when i try to walk on the grass it just keeps clicking everywhere in the grass is there a way around this?

  5. #5
    Join Date
    Apr 2007
    Location
    UK
    Posts
    2,295
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Tried the findsymbol?

    Rogeruk's Al-Kharid Tanner V1.1 [Released]
    Rogeruk's Barbarian Crafter [Coming Soon]
    Rogeruk's Guild Fisher [Coming Soon]
    !! - Taking Requests - !!

  6. #6
    Join Date
    Jul 2007
    Posts
    104
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

  7. #7
    Join Date
    Apr 2007
    Location
    UK
    Posts
    2,295
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    SCAR Code:
    if FindSymbol(x, y, 'bank')then
      begin
        Mouse(x,y,4,4,true);
        wait(150+random(250));
        Flag;
      end;

    Sample there

    Rogeruk's Al-Kharid Tanner V1.1 [Released]
    Rogeruk's Barbarian Crafter [Coming Soon]
    Rogeruk's Guild Fisher [Coming Soon]
    !! - Taking Requests - !!

  8. #8
    Join Date
    Aug 2007
    Posts
    56
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    O that helps me, because I had problems getting from karjama to the fairy ring in the fight pits

  9. #9
    Join Date
    Jul 2007
    Posts
    104
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Is there something similar to this FindObjCustom(x2, y2, ['Mine', 'Rock'], [2636603], i) but instead it doesnt have the part with 'Mine', 'Rock' it would be used for finding autocoloring like the floor of the bank on a minimap and the color of rocks on the minimap?

  10. #10
    Join Date
    Apr 2007
    Location
    UK
    Posts
    2,295
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    FindObjCustom is actually finding the Object, like Rock etc.

    You can find the road color if that helps, and do radialwalking from there..

    Whats the problem with using the bank symbol?

    Rogeruk's Al-Kharid Tanner V1.1 [Released]
    Rogeruk's Barbarian Crafter [Coming Soon]
    Rogeruk's Guild Fisher [Coming Soon]
    !! - Taking Requests - !!

  11. #11
    Join Date
    Jul 2007
    Posts
    104
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I finaly got the bank walking part working but now my problem is the color of the rocks change and I want to auto color them is so is there something like findobjectcustom but instead of finding an object on the main screen it would just look for color. I want to do this so I can set a default color then with increasing the tolerance slowly I could find what the color has changed to and it would auto color example below:

    Code:
    Procedure FindColorCoal;
    begin
      If Not LoggedIn then exit;
      for i := 0 to 10 do  //Autocolor Help From Starblaster100//
        begin
          if(FindObjCustom(x2, y2, ['Mine', 'Rock'], [2636603], i))then
            begin
            CoalColor := GetColor(x2, y2);
            Writeln('Coal color is '+IntToStr(CoalColor));
            Exit;
            end;
        end;
    end;
    something like that but instead of findobject it would find it just by the color and not by the word in the top left cornor then return the cords for where the oject was found so I could get color.

  12. #12
    Join Date
    Aug 2007
    Location
    England
    Posts
    734
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    FindColorSpiralTolerance();

    and if your having issues with radialwalk use radialroadwalk and FindFallyRoadColor
    The truth finally came out...


  13. #13
    Join Date
    Jul 2007
    Posts
    104
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Thank you that was what i was looking for and ya I ended up using radialroad walk thank you guys for everything.

  14. #14
    Join Date
    Sep 2007
    Posts
    16
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    hahaha this is way over my head :| -.-
    Better go review my basic coding before coming back to even try and understand this lol

  15. #15
    Join Date
    Sep 2007
    Location
    newcastle australia
    Posts
    240
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    how about(this is pseudo code as i dont know the names of the actual procedures):
    aligncompass('N')
    mouse(random place in the general direction of the bank)
    repeat
    wait(500);
    until(findbitmap/finddtm(banksymbol));

  16. #16
    Join Date
    Feb 2006
    Location
    New Zealand
    Posts
    1,330
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Blah. Just finished my miner. Findcolorspiral walking ftw

  17. #17
    Join Date
    Sep 2007
    Posts
    13
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    SymbolAccuracy := 0.4; - Works great!

  18. #18
    Join Date
    Jul 2007
    Posts
    104
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    But that only works if the symbol isnt covered so you better hope your not somewhere crowed like verroc east west what I did was just have it radial walk close to the bank then have another procedure find the color of the stalls the bankers are at then click and wait till it makes it there.

  19. #19
    Join Date
    Sep 2007
    Posts
    13
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Decreasing the symbol accuracy makes it click all of the time. Trust me.

  20. #20
    Join Date
    Jul 2007
    Posts
    104
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Zepix View Post
    Decreasing the symbol accuracy makes it click all of the time. Trust me.
    Hows that possible if the whole symbols covered with white dots of people everywher Ill give it a try and tell you how it works out sorry I am skepical just been working on this for a while and having trouble if this works solved a big problem thanks guys.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Mining Guild Bandit
    By Emagdnim in forum First Scripts
    Replies: 15
    Last Post: 11-28-2007, 02:08 AM
  2. need mining guild miner for srl 4
    By dendis in forum RS3 Outdated / Broken Scripts
    Replies: 1
    Last Post: 09-09-2007, 01:10 AM
  3. Mining Guild + Bank
    By wear all ded in forum RS3 Outdated / Broken Scripts
    Replies: 5
    Last Post: 08-26-2007, 05:30 PM
  4. Crafting guild mining
    By goden in forum RS3 Outdated / Broken Scripts
    Replies: 3
    Last Post: 07-16-2007, 08:53 AM

Posting Permissions

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