Results 1 to 12 of 12

Thread: RadialWalk is messing up

  1. #1
    Join Date
    Dec 2011
    Location
    Toronto, Ontario
    Posts
    6,424
    Mentioned
    84 Post(s)
    Quoted
    863 Post(s)

    Default RadialWalk is messing up

    It just keeps on clicking towards the NorthEast(where my radials are pointing) when i Only have ONE radialWalk.

    My Code:
    Simba Code:
    RadialWalkTolerance(3624273 ,80, 100, 65, 1, 1, 3);
    if FlagPresent then
      begin
        wait(3000);
        RadialWalk(5135973, 0, 20, 60, 1, 1);
    Last edited by Sin; 01-03-2012 at 05:57 PM.

  2. #2
    Join Date
    Dec 2011
    Posts
    353
    Mentioned
    3 Post(s)
    Quoted
    8 Post(s)

    Default

    I don't rly get what you mean, but radialwalk keeps walking untill you end it.

  3. #3
    Join Date
    Dec 2011
    Location
    Toronto, Ontario
    Posts
    6,424
    Mentioned
    84 Post(s)
    Quoted
    863 Post(s)

    Default

    .... Seriously?
    Whats the method to "End" it?

  4. #4
    Join Date
    Dec 2011
    Location
    Holland
    Posts
    455
    Mentioned
    0 Post(s)
    Quoted
    14 Post(s)

    Default

    Well try this:

    Simba Code:
    RadialWalkTolerance(3624273 ,80, 100, 65, 1, 1, 3);
    if FlagPresent then
      begin
        wait(3000);
        RadialWalk(5135973, 0, 20, 60, 1, 1);
      end;

    You had no end in here, don't know if this will change it though.
    07Scripter
    I mostly write private scripts

  5. #5
    Join Date
    Dec 2011
    Location
    Toronto, Ontario
    Posts
    6,424
    Mentioned
    84 Post(s)
    Quoted
    863 Post(s)

    Default

    I know that, it used to work perfectly, now it doesn't work starting this morning.

  6. #6
    Join Date
    Jan 2010
    Posts
    1,414
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    The colors aren't static. They change a lot whenever the client is reloaded. You will need to create an auto-color function from ACA to get the color.

    Radial walk also do not walk forever until you end it, by the way. I don't know how you got that idea, NexPB.

  7. #7
    Join Date
    Dec 2011
    Posts
    353
    Mentioned
    3 Post(s)
    Quoted
    8 Post(s)

    Default

    Quote Originally Posted by RISK View Post
    The colors aren't static. They change a lot whenever the client is reloaded. You will need to create an auto-color function from ACA to get the color.

    Radial walk also do not walk forever until you end it, by the way. I don't know how you got that idea, NexPB.
    My bad I was recalling it
    Last edited by NexPB; 01-03-2012 at 07:51 PM.

  8. #8
    Join Date
    Dec 2011
    Location
    Toronto, Ontario
    Posts
    6,424
    Mentioned
    84 Post(s)
    Quoted
    863 Post(s)

    Default

    Quote Originally Posted by RISK View Post
    The colors aren't static. They change a lot whenever the client is reloaded. You will need to create an auto-color function from ACA to get the color.

    Radial walk also do not walk forever until you end it, by the way. I don't know how you got that idea, NexPB.
    I know they're not static, but that doesn't mean the radial walk should KEEP on clicking. RadialWalk is a single function(That i used anyway), so it should only click at a single point, my problem occurs when it keeps on clicking multiple points.

  9. #9
    Join Date
    Dec 2011
    Posts
    353
    Mentioned
    3 Post(s)
    Quoted
    8 Post(s)

    Default

    Quote Originally Posted by S1N View Post
    I know they're not static, but that doesn't mean the radial walk should KEEP on clicking. RadialWalk is a single function(That i used anyway), so it should only click at a single point, my problem occurs when it keeps on clicking multiple points.
    It did work before ? if so what did u change ?

  10. #10
    Join Date
    Dec 2011
    Location
    Toronto, Ontario
    Posts
    6,424
    Mentioned
    84 Post(s)
    Quoted
    863 Post(s)

    Default

    I changed NOTHING.
    I tried the bot, it worked, went to bed, tried it again in the morning, and it didn't work.
    The color shouldn't realy matter since It's the Banker symbol and the tolerance is decent.

  11. #11
    Join Date
    May 2008
    Location
    ;)
    Posts
    576
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    you're calling radialwalk twice....

    Simba Code:
    RadialWalkTolerance(3624273 ,80, 100, 65, 1, 1, 3); // you call it here, and it clicks the MM
    if FlagPresent then //then, because it clicked the MM, the flag is present
      begin  //because the flag is there, it will....
        wait(3000); //wait 3 seconds
        RadialWalk(5135973, 0, 20, 60, 1, 1); //and then radialwalk again. (which means it'll click again)

  12. #12
    Join Date
    Dec 2011
    Location
    Toronto, Ontario
    Posts
    6,424
    Mentioned
    84 Post(s)
    Quoted
    863 Post(s)

    Default

    DUCK!
    That's the ducking reason it doesn't ducking work...

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
  •