Results 1 to 8 of 8

Thread: Climbing up/down stairs Door opening?!

  1. #1
    Join Date
    Feb 2008
    Posts
    50
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Climbing up/down stairs Door opening?!

    I got the walking down =]
    But im stuck on how to make a procedure for climbing down stairs..

    Example:
    Lumbridge Flax spinner..
    How can i get the script to climb down the stairs and open the door?
    "Our youth are not failing the system; the system is failing our youth. Ironically, the very youth who are being treated the worst are the young people who are going to lead us out of this nightmare." - Rachel Jackson

  2. #2
    Join Date
    Jul 2007
    Location
    Norway.
    Posts
    1,938
    Mentioned
    3 Post(s)
    Quoted
    0 Post(s)

    Default

    What I would do is
    1. Walk to MM stair using FindLadderColor.
    2. Use TPAs with ColorToleranceSpeed 2 or maybe even 3 to search for the wooden part of the stair.

  3. #3
    Join Date
    Feb 2008
    Posts
    50
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Could you give me an example it would be easier for me.
    If you dont mind
    "Our youth are not failing the system; the system is failing our youth. Ironically, the very youth who are being treated the worst are the young people who are going to lead us out of this nightmare." - Rachel Jackson

  4. #4
    Join Date
    Jul 2007
    Location
    Right now? Chair.
    Posts
    8,488
    Mentioned
    3 Post(s)
    Quoted
    12 Post(s)

    Default

    Go To Tutorials, intermidiate section and look at a tutorial called
    "The Simple TPA Power"

    use the function described in there to help you find the ladder.
    you might also want to use AutoColorAid v2.0 (ACA2) to help you choose the best color.

    ~RM

    I & I know Zion. It is in the spirit, body and mind of every one of us
    RMouse(obj: TMSIObject): boolean;

  5. #5
    Join Date
    Apr 2007
    Location
    The Netherlands
    Posts
    5,553
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I got an amazing walking up the stair + door opener 0.o searching my old file
    just search in there for a while theres an dtm to get up etc
    ~Hermen

  6. #6
    Join Date
    Nov 2007
    Location
    Chile
    Posts
    1,901
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I dont think he know TPA's. You can use FindObjCusom or FindObj(Check Object.scar), if you want something "easier" use FindColorTolerance or FindColorSipralTolerance.


  7. #7
    Join Date
    Jul 2007
    Location
    Norway.
    Posts
    1,938
    Mentioned
    3 Post(s)
    Quoted
    0 Post(s)

    Default

    Actually, take a look at FindObjTPA. Easy, but the best objectfinder in object.scar.

  8. #8
    Join Date
    Mar 2007
    Posts
    4,810
    Mentioned
    3 Post(s)
    Quoted
    3 Post(s)

    Default

    Yes sometimes FindObjCustom doesn't always click the ladder, for this you could use:

    SCAR Code:
    repeat
         If (not(loggedin)) then Break;
          if FindObj(x,y,'Ladder',2050652,10) then
          begin
            case Random(3) of
              0: begin
                   Mouse(x,y,1,1,true)
                 end;
              1,2: begin
                     Mouse(x,y,1,1,false)
                     Wait(800+Random(800))
                     ChooseOption('imb')
                    end;
              end;
              FFlag(0);
              InGuild:=True
              Wait(4000+Random(700))
              MakeCompass('E')
          end;
        until(InGuild)
      end;

    But please not you might need to add extra ends and so on.

    Also InGuild needs to be a boolean;

    Hope I Helped

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Opening Gates?
    By Killy in forum OSR Help
    Replies: 3
    Last Post: 03-29-2008, 01:19 PM
  2. Lumbridge Castle Stairs
    By HairyDuncan2 in forum OSR Help
    Replies: 3
    Last Post: 10-14-2007, 09:00 PM
  3. Gate Opening
    By gfrog6 in forum OSR Help
    Replies: 1
    Last Post: 07-09-2007, 11:08 PM

Posting Permissions

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