Results 1 to 13 of 13

Thread: RadialWalkRonny!!!

  1. #1
    ronny.m.p Guest

    RadialWalkRonny!!!

    Well as we speak SRL members are enjoying a function called ClickTile. I won't get into detail but it is very advanced and we non-members will probably never get to use it. So I thought...why not make a function for us guys to use? So I researched my MapWalking functions and developed this. Basicly it's the same as RadialWalk only it was 1 very cool feature. If the function dosen't find the color then it will make the startradial and endradial distance larger until it does. If it travles in a full circle and still dosent find the color then it will increase the radius. Increases are controled by the IncreaseBy area of the function syntax. It might cause some minor lagg on old computers but it should be alright. Testers would be nice. I will make a gif to demontsrate ASAP. Remember all credits to RdailWalk go to Wizzup? and WT-Fakawi and i am not pladgerizeing!

    SCAR Code:
    function RadialWalkRonny(TheColor, tol: Integer;StartRadial,EndRadial: Integer;
    Radius, IncreaseBy, Xmod, Ymod: Integer): Boolean;
    var
      mx, my, ix, iy, ir: Integer;
    begin
        if (StartRadial = EndRadial) then
      begin
        WriteLn('WARNING: Using LinearRalk, StarRadial, and EndRadial are the same');
        if LinearRoadWalk(TheColor, StartRadial, Radius, XMod, YMod) then
          Result := True;
      end else
      if (not(radialwalkex(mx, my, 648, 83, thecolor, 0, startradial, endradial, radius)))
        then
      begin
        Ix:= startradial;
        Iy:= endradial;
        Ir:= radius;
        repeat
          startradial:= startradial - IncreaseBy;
          endradial:= endradial + IncreaseBy;
          if(radialwalkex(mx, my, 648, 83, thecolor, 0, startradial, endradial, radius))
            then result:= true; exit;
          if(Ix = startradial)and(Iy = endradial)then
            if(Ir > 70)then break;
            radius:= radius + IncreaseBy;
        until(radialwalkex(mx, my, 648, 83, thecolor, 0, startradial, endradial, radius));
      MouseFindFlag(MX, MY, Xmod, Ymod);
      FFlag(10);
      end else
      result:= false;
    end;

    EDIT: Use the Radial Walking Aid by Yakman to help with this function!

  2. #2
    Join Date
    Aug 2006
    Posts
    408
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Wow sounds brilliant!

    I can see how it might cause lag though, a good future update might be to have it increase the radius every 2 times it increased the distance between the start radial and end radial. Great work!

  3. #3
    Join Date
    Dec 2006
    Location
    Third rock from the sun.
    Posts
    2,510
    Mentioned
    4 Post(s)
    Quoted
    1 Post(s)

    Default

    Oooh, nice addition

    They get another function to use? Lucky people

  4. #4
    Join Date
    Nov 2006
    Location
    NSW, Australia
    Posts
    3,487
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Jason mate, hurry up and get into members...
    [CENTER][img]http://signatures.mylivesignature.com/54486/113/4539C8FAAF3EAB109A3CC1811EF0941B.png[/img][/CENTER]
    [CENTER][BANANA]TSN ~ Vacation! ~ says :I Love Santy[/BANANA][/CENTER]

    [CENTER][BANANA]Raymond - Oh rilie? says :Your smart[/BANANA][/CENTER]

  5. #5
    ronny.m.p Guest

    Default

    Use this function if you want just give creds.

  6. #6
    Join Date
    Oct 2006
    Location
    Ireland
    Posts
    855
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I'd advise you to edit out your knowlege of clicktile... fast.

  7. #7
    Join Date
    Jan 2007
    Location
    Kansas
    Posts
    3,760
    Mentioned
    1 Post(s)
    Quoted
    3 Post(s)

    Default

    Masq might come around.

    Anyways on the function. Good work but one thing, what if it finds the color directly behind you? You would be walking the wrong way?


  8. #8
    Join Date
    Mar 2007
    Posts
    3,681
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    ronny nice function but edit out the 'you know what members function' pls if this starts spreading..rs will lock it down

  9. #9
    Join Date
    Jan 2007
    Location
    Kansas
    Posts
    3,760
    Mentioned
    1 Post(s)
    Quoted
    3 Post(s)

    Default

    SRL is monitored by SpiderBots. Anything posted in free section could end up on google within 48 hous.


  10. #10
    Join Date
    Mar 2007
    Location
    Under a rock
    Posts
    813
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    OMG why do we need ot keep is such a secret, its stupid.

    Also, nice function, if it works, it would be very useful. But bobarkinator has a point:

    Quote Originally Posted by bobarkinator View Post
    Good work but one thing, what if it finds the color directly behind you? You would be walking the wrong way?
    Fix that and it would be great i think.

  11. #11
    Join Date
    Oct 2006
    Posts
    888
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Lol what tile clicker? That crappy one I made? It sucks like crap. It fails half the time and breaks every time Jagex updates. It broken right now.

  12. #12
    Join Date
    Sep 2006
    Location
    New Jersey, USA
    Posts
    5,347
    Mentioned
    1 Post(s)
    Quoted
    3 Post(s)

    Default

    I thought you got it working again?

    I hope you get it working soon...I was going to test it out some later
    Interested in C# and Electrical Engineering? This might interest you.

  13. #13
    Join Date
    Nov 2006
    Location
    NSW, Australia
    Posts
    3,487
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Lmfao Smartz...Acting like the dumb guy...
    [CENTER][img]http://signatures.mylivesignature.com/54486/113/4539C8FAAF3EAB109A3CC1811EF0941B.png[/img][/CENTER]
    [CENTER][BANANA]TSN ~ Vacation! ~ says :I Love Santy[/BANANA][/CENTER]

    [CENTER][BANANA]Raymond - Oh rilie? says :Your smart[/BANANA][/CENTER]

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
  •