Results 1 to 10 of 10

Thread: need some help with radialroadwalking...

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

    Default need some help with radialroadwalking...

    why this isnt working?

    SCAR Code:
    program MultiSkills;
    {.include SRL/SRL.scar}

    {.include SRL/SRL/skill/woodcutting.scar}
    {.include SRL/SRL/skill/mining.scar}
    {.include SRL/SRL/skill/cooking.scar}
    {.include SRL/SRL/skill/fighting.scar}






    procedure ToChickenPen;
    begin
    RadialRoadWalk(6053476, 63, 436, 60, 1, 1);
    RadialRoadWalk(6053476, 70, 435, 57, 1, 1);
    RadialRoadWalk(6053476, 26, 396, 66, 0, 0);
    RadialRoadWalk(6053476, 26, 396, 66, 0, 0);
    RadialRoadWalk(6053476, 332, 698, 71, 0, 0);
    RadialRoadWalk(6053476, 315, 678, 72, 0, 0);
    RadialRoadWalk(6053476, 337, 699, 65, 0, 0);

    end;





    begin
    SetupSrl;
    ToChickenPen;
    end.
    ~Hermen

  2. #2
    Join Date
    Feb 2007
    Location
    Het ademt zwaar en moedeloos vannacht.
    Posts
    7,211
    Mentioned
    26 Post(s)
    Quoted
    72 Post(s)

    Default

    6053476, the colors change everytime you log in.
    If it's the roadcolor, replace with FindRoadColor.
    And you got a very big range (63, 436), only do where you want to look for the color.
    I made a new script, check it out!.

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

    Default

    i used that radialroadwalking script but i dont know excatly how it works i read a thread about it so i made this and how and where i need to put the findroadcolor?
    and already thanks for helping

    edit:
    its working thanks maybe got a few tips to make the walking better?
    edit:
    he says:
    SCAR Code:
    User specified a new RS window
    Successfully compiled
    SRL Compiled in 32msec.
    RoadColor = 5986914
    Successfully executed




    script
    SCAR Code:
    program MultiSkills;
    {.include SRL/SRL.scar}

    {.include SRL/SRL/skill/woodcutting.scar}
    {.include SRL/SRL/skill/mining.scar}
    {.include SRL/SRL/skill/cooking.scar}
    {.include SRL/SRL/skill/fighting.scar}






    procedure ToChickenPen;
    begin
      FindRoadColor;
      RadialRoadWalk(RoadColor, 63, 436, 60, 1, 1);
      RadialRoadWalk(RoadColor, 70, 435, 57, 1, 1);
      RadialRoadWalk(RoadColor, 26, 396, 66, 0, 0);
      RadialRoadWalk(RoadColor, 26, 396, 66, 0, 0);
      RadialRoadWalk(RoadColor, 332, 698, 71, 0, 0);
      RadialRoadWalk(RoadColor, 315, 678, 72, 0, 0);
      RadialRoadWalk(RoadColor, 337, 699, 65, 0, 0);

    end;





    begin
    SetupSrl;
    ToChickenPen;
    end.
    ~Hermen

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

    Default

    srry for double post

    anyone knows what wrong
    ~Hermen

  5. #5
    Join Date
    Jul 2007
    Posts
    137
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Try this...:

    SCAR Code:
    program MultiSkills;
    {.include SRL/SRL.scar}

    {.include SRL/SRL/skill/woodcutting.scar}
    {.include SRL/SRL/skill/mining.scar}
    {.include SRL/SRL/skill/cooking.scar}
    {.include SRL/SRL/skill/fighting.scar}






    procedure ToChickenPen;
    begin
      RadialRoadWalk(FindRoadColor, 63, 436, 60, 1, 1);
      flag;
      RadialRoadWalk(FindRoadColor, 70, 435, 57, 1, 1);
      flag;
      RadialRoadWalk(FindRoadColor, 26, 396, 66, 0, 0);
      flag;
      RadialRoadWalk(FindRoadColor, 26, 396, 66, 0, 0);
      flag;
      RadialRoadWalk(FindRoadColor, 332, 698, 71, 0, 0);
      flag;
      RadialRoadWalk(FindRoadColor, 315, 678, 72, 0, 0);
      flag;
      RadialRoadWalk(FindRoadColor, 337, 699, 65, 0, 0);
      flag;
    end;





    begin
    SetupSrl;
    ToChickenPen;
    end.
    Do not propose an idea of peculation without evidence of such action.

    http://cashcrate.com/704591 click here and make money!

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

    Default

    ill try it w8 a sec lol :P
    i will edit soon

    edit: i didnt tried it yet but... he doesnt click it before so i think flag; doesnt fix it
    ~Hermen

  7. #7
    Join Date
    Jul 2007
    Posts
    137
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    what do you mean "...he doesn't click it before..."?
    Do not propose an idea of peculation without evidence of such action.

    http://cashcrate.com/704591 click here and make money!

  8. #8
    Join Date
    Jul 2007
    Location
    America
    Posts
    421
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    you're using a huge degree range - try lowering it a little bit.
    I dunno, those asians are pretty difficult to out-auto, legend has it they don't need sleep or food...~tim0suprem0
    Activity is on the decline - school's got me
    Check out my tutorial[s] on Color Finding!||Procedures and Functions!

  9. #9
    Join Date
    Oct 2006
    Location
    Philadelphia
    Posts
    75
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    lowering the size of your arcs will greatly increase the accuracy of your clicks thus making your scripts more reliable. However, don't make the arcs too small or the smallest change will mess up the walking. Keep fiddling with it until you get it right.

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

    Default

    it just doesnt click i putted flag in it it doesnt click do lumby home teleport and then run it he doesnt click its topwards the chicken pen
    ~Hermen

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
  •