Results 1 to 6 of 6

Thread: I am stumped by mapwalk

  1. #1
    Join Date
    Dec 2011
    Location
    U.S.A.
    Posts
    635
    Mentioned
    5 Post(s)
    Quoted
    249 Post(s)

    Default I am stumped by mapwalk

    Whenever I use RadialWalk or such a function like that, it just lags the SMART client and never actually clicks when I fill out the correct variables for it. It all compiles but never does anything. Should I use SPS walking instead?

  2. #2
    Join Date
    Jul 2012
    Posts
    279
    Mentioned
    5 Post(s)
    Quoted
    46 Post(s)

    Default

    RadialWalk does work. Can you post the function you're using? It might be using your radialwalk function in an endless loop when not finding it causing a lot of lag. Usually, adding a small waiting time as well as a failsafe helps a ton.

  3. #3
    Join Date
    Sep 2008
    Posts
    20
    Mentioned
    0 Post(s)
    Quoted
    8 Post(s)

    Default

    do these work with private servers if i use an older map? so far it does nothing

  4. #4
    Join Date
    Feb 2012
    Location
    DON'T PM ME ASKING FOR STUFF
    Posts
    2,170
    Mentioned
    38 Post(s)
    Quoted
    423 Post(s)

    Default

    Quote Originally Posted by johnlukey View Post
    do these work with private servers if i use an older map? so far it does nothing
    Make your own thread.

    and yes. It does. but once again, go back to your own thread

  5. #5
    Join Date
    Dec 2011
    Location
    U.S.A.
    Posts
    635
    Mentioned
    5 Post(s)
    Quoted
    249 Post(s)

    Default

    Alright. I was using an endless repeat, with no waits. I'll see if it works.

  6. #6
    Join Date
    Jan 2011
    Location
    Denver, CO
    Posts
    1,351
    Mentioned
    2 Post(s)
    Quoted
    72 Post(s)

    Default

    Try using RadialWalkTolerance with dynamic tolerance:

    Simba Code:
    Tol := 0;
      while True do begin
        if not RadialWalkTolerance({Fill these in}, Tol) then begin
          IncEx(Tol, 10);
          if Tol > 100 then begin
            WriteLn('[FAILURE]: Tolerance is over 100');
            Exit;
          end else Continue;
        end else begin
          WriteLn('[SUCCESS]: Completed Radialwalk');
          Break;
        end;
      end;

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
  •