Results 1 to 5 of 5

Thread: radialroadwalk issue.....

  1. #1
    Join Date
    Feb 2007
    Posts
    143
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default radialroadwalk issue.....

    alright so all i want this to do is click something.... i can use radialwalk perfectly fine, and i have the latest srl rev.... using 3.12c and eeerm yea.....it just wont click anything.... i made the specrtum as broad as i could and i stood outside of the fally bank on the road, and there ware definately roads there, and even with that broad of a spectrum it clicks nothing.... any1 know what the issue is here?

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

    begin
     ClearDebug;
     SetupSRL;
     activateclient;
     Wait(1250);
     RadialRoadWalk(RoadColor, 2, 360, 65, -2, 0);

     writeln('walk successfull');

    end.

    is there a color issue with the new srl or something? because i dont think im doing anythign wrong.....

  2. #2
    Join Date
    Feb 2007
    Location
    EST (US East Coast)
    Posts
    250
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Are you using an auto road coloring procedure from AutoColor.scar?

    If so, FindRoadColor doesn't work in falador and you need to use FindFallyRoadColor.

    And if you're not using one, I strongly suggest you do.
    Temporarily inactive.

  3. #3
    Join Date
    Feb 2007
    Posts
    143
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    how would i go about using findfallyroad color in relation to what i already have up there? can you give me an example please? thankyou

  4. #4
    Join Date
    Jun 2007
    Posts
    1,312
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    SCAR Code:
    program New;
     {.include SRL/SRL.scar}
    var
    RCo : integer;
     
    begin
     ClearDebug;
     SetupSRL;
     activateclient;
     Wait(1250);
     RoadColor := FindFallyRoadColor //if you're in falador, otherwise do FindRoadColor
     RadialRoadWalk(RCo, 2, 360, 65, -2, 0);
     
     writeln('walk successfull');
    end.
    I think RoadColor is already somewhere, so I'd use this.

    so that or this

    SCAR Code:
    program New;
     {.include SRL/SRL.scar}
    var
    RCo : integer;
     
    begin
     ClearDebug;
     SetupSRL;
     activateclient;
     Wait(1250);
     RoadColor := FindRoadColor //if you're in falador, do FindFallyRoadColor
     RadialRoadWalk(RCo, 2, 360, 65, -2, 0);
     
     writeln('walk successfull');
    end.
    You could have it search for the RoadColor, that'd be fine too, but it isn't much fun to see the road color 10 times in a row every loop.

    Is this what you meant?
    Active only during the Summer...

  5. #5
    Join Date
    Feb 2007
    Posts
    143
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    yea thats what i meant, ill incorporate it b4 the look, thankyou vm!!!! im gettin to work on it now thankyou everyone for your help

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Having an issue with SMART.
    By Sanjuro in forum OSR Help
    Replies: 15
    Last Post: 10-15-2008, 08:26 PM
  2. Yet again another issue
    By Rubix in forum OSR Help
    Replies: 5
    Last Post: 07-13-2008, 01:35 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
  •