Results 1 to 6 of 6

Thread: omg omg omg

  1. #1
    Join Date
    Jan 2007
    Posts
    268
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default omg omg omg

    hi i made my first radialroadwalk procedure and its working so not good..
    here it is its for varrok to walk to the yew..try it ull see. if u guys have anything to increase it or if u have an example of working radialwalk or roadwalk post it please. thx

  2. #2
    Join Date
    Jan 2007
    Posts
    268
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    oops forgot to post lol
    [scar]
    // -Walk to Yew
    procedure WalkToYew;
    begin
    RadialRoadWalk(RoadColor,330,340,65,1,-1);
    Flag;
    RadialRoadWalk(RoadColor,320,350,60,-1,1);
    Flag;
    RadialRoadWalk(RoadColor,340,360,60,-1,1);
    Flag;
    RadialRoadWalk(RoadColor,350,360,60,-1,1);
    Flag;
    RadialRoadWalk(RoadColor,350,360,60,-1,1);
    Flag;
    FindSymbol(x,y,'tree');
    Mouse(x,y,5,5,True);
    Flag;
    end;
    [/scar

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

    Default

    wow your making progress here...
    tested it and it doesnt work well...

    sometimes the mouse just sits there from time to time...

    dont ask me why it doesnt wokr since im learning too

    They are sisters...
    Runescape Classic

  4. #4
    Join Date
    Sep 2006
    Location
    In Finland
    Posts
    124
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Does it walk from bank to yews...? heh..stupid question

    Here it is:

    SCAR Code:
    program WalkToYew;
    {.include srl/srl.scar}

    Function CheckIfAtYews:Boolean;
    begin
    if(FindSymbol(x,y,'Tree'))and
    FindSymbol(x,y,'Altar')then
    result:=true;
    end;
    procedure WalkToYew;
    var FoundYewSymbol:Boolean;
    begin
    MakeCompass('E')
    Wait(500)
    MakeCompass('N')
    Wait(300)
    RadialRoadWalk(FindRoadColor,-30,-10,65,1,-1);
    Wait(1000)
    RadialRoadWalk(FindRoadColor,-10,15,60,-1,1);
    Wait(1000)
    RadialRoadWalk(FindRoadColor,-10,15,60,-1,1);
    Wait(1000)
    RadialRoadWalk(FindRoadColor,-10,15,45,-1,1);
    Wait(1000)
    repeat
    FindSymbol(x,y,'Tree');
    FoundYewSymbol:=true;
    Mouse(x,y,5,5,True);
    Flag;
    until(FoundYewSymbol)
    if(CheckIfAtYews=false)then
     begin
      TerminateScript;
     end;
    end;

    begin
    SetupSRL;
    DisguiseScar('Vegas 7.0')
    NEWLINE:='no Hints pls';
    Wait(1000)
    WalkToYew;
    Wait(1000)
    Writeln('Successfully walked to yews...!')
    end.

    It has some detectors...... i made this in 10 minutes so it may not be 100% but you can try...it walked to yews many times at my computer...do you know how to include this to your script ?? i hope ya know...include the function too the procedure needs it

  5. #5
    Join Date
    Nov 2006
    Posts
    1,103
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

    Default

    when i use radialroadwalk i use it in a repeat and put a finddtm function or findsymbol as the untill statement

    and to make it work really well try to use:
    Angle := FindCompassAngle;

    and when you fill in the radials, fill in the amount of radials it would be if you had it perfectly north, then - Angle so it wont matter how your minimap is turned...
    Infractions, reputation, reflection, the dark side of scripting, they are.

  6. #6
    Join Date
    Sep 2006
    Location
    In Finland
    Posts
    124
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by iloveit8 View Post
    when i use radialroadwalk i use it in a repeat and put a finddtm function or findsymbol as the untill statement

    and to make it work really well try to use:
    Angle := FindCompassAngle;

    and when you fill in the radials, fill in the amount of radials it would be if you had it perfectly north, then - Angle so it wont matter how your minimap is turned...
    Yeah, first i thought i would make him one with repeating...like in my autominer/banker but then i just made this one

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
  •