Results 1 to 20 of 20

Thread: Radial walk help

  1. #1
    Join Date
    Sep 2010
    Posts
    5,762
    Mentioned
    136 Post(s)
    Quoted
    2739 Post(s)

    Default Radial walk help

    Simba Code:
    {$i srl/srl.simba}

    procedure test;
    begin
      Writeln('Testing spot');
      Wait(Random(1000));
      begin
        RadialWalkTolerance(4288107, 1, 90, 72, 80, 80, 25);
        Wait(RandomRange(800, 1200));
      end;
    end;

    begin
      SetupSRL;
      ActivateClient;
      test;
    end.

    So I am using the test script from above, and I hit play and it does nothing, umm are some of my numbers wrong here?
    Simba Code:
    90, 72, 80, 80, 25);

    I'm trying to use this on rs07 btw

  2. #2
    Join Date
    Mar 2006
    Location
    Belgium
    Posts
    3,564
    Mentioned
    111 Post(s)
    Quoted
    1475 Post(s)

    Default

    your radius is too high? I think 20-72 is ideal, play with it.

    and your xmod, ymod is wrong. not 80, 80

    XMod, YMod: deviation from MouseFindFlag. -2 to 2.

    Creds to DannyRS for this wonderful sig!

  3. #3
    Join Date
    Sep 2010
    Posts
    5,762
    Mentioned
    136 Post(s)
    Quoted
    2739 Post(s)

    Default

    Quote Originally Posted by Sjoekeloe View Post
    your radius is too high? I think 20-72 is ideal, play with it.

    and your xmod, ymod is wrong. not 80, 80

    XMod, YMod: deviation from MouseFindFlag. -2 to 2.
    So I changed it to"

    Simba Code:
    {$i srl/srl.simba}

    procedure test;
    begin
      Writeln('Testing spot');
      Wait(Random(1000));
      begin
        RadialWalkTolerance(6402757, 20, 72, 72, 1, 2, 25);
        Wait(RandomRange(800, 1200));
      end;
    end;

    begin
      SetupSRL;
      ActivateClient;
      test;
    end.

    Still nothing

  4. #4
    Join Date
    Mar 2006
    Location
    Belgium
    Posts
    3,564
    Mentioned
    111 Post(s)
    Quoted
    1475 Post(s)

    Default

    u changed your radials. that are the degrees.
    Sure they are right? make it wider or smthing 1-90

    Creds to DannyRS for this wonderful sig!

  5. #5
    Join Date
    Sep 2010
    Posts
    5,762
    Mentioned
    136 Post(s)
    Quoted
    2739 Post(s)

    Default

    Quote Originally Posted by Sjoekeloe View Post
    u changed your radials. that are the degrees.
    Sure they are right? make it wider or smthing 1-90
    am I Doing it right?

    RadialWalkTolerance(COLOR STARTDEG, ENDDEGREE, RADUIS, XMOD, YMOD, TOL);

  6. #6
    Join Date
    Mar 2006
    Location
    Belgium
    Posts
    3,564
    Mentioned
    111 Post(s)
    Quoted
    1475 Post(s)

    Default

    Yeah read the tutorials rjj

    Creds to DannyRS for this wonderful sig!

  7. #7
    Join Date
    Sep 2010
    Posts
    5,762
    Mentioned
    136 Post(s)
    Quoted
    2739 Post(s)

    Default

    Quote Originally Posted by Sjoekeloe View Post
    Yeah read the tutorials rjj
    so am I doing it right?

    The tutorial is very.. vague..

  8. #8
    Join Date
    Jun 2012
    Posts
    4,867
    Mentioned
    74 Post(s)
    Quoted
    1663 Post(s)

    Default

    Quote Originally Posted by rjj95 View Post
    so am I doing it right?

    The tutorial is very.. vague..
    http://villavu.com/forum/showthread.php?t=78648

    If this is too vague for you I don't know how to be more specific :/

  9. #9
    Join Date
    Sep 2010
    Posts
    5,762
    Mentioned
    136 Post(s)
    Quoted
    2739 Post(s)

    Default

    Quote Originally Posted by BMWxi View Post
    http://villavu.com/forum/showthread.php?t=78648

    If this is too vague for you I don't know how to be more specific :/
    I copied the exact example and it does nothing:

    Simba Code:
    {$i srl/srl.simba}

    procedure test;
    begin
      Writeln('Testing spot');
      Wait(Random(1000));
      begin
         RadialWalk(3827043,0,90,70,5,5);
        //RadialWalkTolerance(6402757, 1, 90, 72, 1, 2, 15);
        Wait(RandomRange(800, 1200));
      end;
    end;

    begin
      SetupSRL;
      ActivateClient;
      test;
    end.

  10. #10
    Join Date
    Jun 2012
    Posts
    4,867
    Mentioned
    74 Post(s)
    Quoted
    1663 Post(s)

    Default

    Are the colors, tolerances, search areas correct?

  11. #11
    Join Date
    Nov 2012
    Posts
    2,351
    Mentioned
    55 Post(s)
    Quoted
    603 Post(s)

    Default

    Does radial-walk use constant's like MMX1?, they wont work in 07


    Programming is like trying keep a wall of shifting sand up, you fix one thing but somewhere else starts crumbling

  12. #12
    Join Date
    Sep 2010
    Posts
    5,762
    Mentioned
    136 Post(s)
    Quoted
    2739 Post(s)

    Default

    Quote Originally Posted by DannyRS View Post
    Does radial-walk use constant's like MMX1?, they wont work in 07
    I think so but MMX1 should be close to the minimap on 07

    Are the colors, tolerances, search areas correct?
    Yes, try it yourself to see if it works on 2007

  13. #13
    Join Date
    Nov 2012
    Posts
    2,351
    Mentioned
    55 Post(s)
    Quoted
    603 Post(s)

    Default

    Quote Originally Posted by rjj95 View Post
    I think so but MMX1 should be close to the minimap on 07
    maybe not close enough


    Programming is like trying keep a wall of shifting sand up, you fix one thing but somewhere else starts crumbling

  14. #14
    Join Date
    Sep 2010
    Posts
    5,762
    Mentioned
    136 Post(s)
    Quoted
    2739 Post(s)

    Default

    Quote Originally Posted by DannyRS View Post
    maybe not close enough
    Ffs then how they hell are we supposed to walk then lol

  15. #15
    Join Date
    Nov 2012
    Posts
    2,351
    Mentioned
    55 Post(s)
    Quoted
    603 Post(s)

    Default

    Quote Originally Posted by rjj95 View Post
    ffs then how they hell are we supposed to walk then lol
    tpa / dtm


    Programming is like trying keep a wall of shifting sand up, you fix one thing but somewhere else starts crumbling

  16. #16
    Join Date
    Sep 2010
    Posts
    5,762
    Mentioned
    136 Post(s)
    Quoted
    2739 Post(s)

    Default

    Quote Originally Posted by DannyRS View Post
    tpa / dtm
    Gawd DDTM plugin crashed on me last time I tried to use it.. then TPA is just fooking hard. Guess I'll learn ddtm

  17. #17
    Join Date
    Nov 2012
    Posts
    2,351
    Mentioned
    55 Post(s)
    Quoted
    603 Post(s)

    Default

    TPA would be best imo


    Programming is like trying keep a wall of shifting sand up, you fix one thing but somewhere else starts crumbling

  18. #18
    Join Date
    Mar 2012
    Location
    127.0.0.1
    Posts
    3,383
    Mentioned
    95 Post(s)
    Quoted
    717 Post(s)

    Default

    TPAWalk(12345,Point(1234,1234))
    Not -that- hard.

  19. #19
    Join Date
    Jun 2012
    Posts
    4,867
    Mentioned
    74 Post(s)
    Quoted
    1663 Post(s)

    Default

    I had the crashing problem a few days ago too. I thought it was because I had too many matching points.

  20. #20
    Join Date
    Jun 2007
    Posts
    532
    Mentioned
    1 Post(s)
    Quoted
    68 Post(s)

    Default

    Quote Originally Posted by BMWxi View Post
    I had the crashing problem a few days ago too. I thought it was because I had too many matching points.
    That is more than likely his problem with DDTM.
    Finished B.S. Program in Radiology!!

    Projects: A big one! Total secret! hehe

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
  •