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?
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?
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.
do these work with private servers if i use an older map? so far it does nothing
Tutorials:
| Utilizing the tools in Villavu | How to create Pythagoras theorem calculator in JavaScript | How to make a live signature of your Pascal Script | Concepts of Programming Tutorial | Worked on Frog Random with Justin for RS07
Alright. I was using an endless repeat, with no waits. I'll see if it works.
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;
There are currently 1 users browsing this thread. (0 members and 1 guests)