Results 1 to 3 of 3

Thread: Must get help with Radial Walk (picture inside)

  1. #1
    Join Date
    Mar 2012
    Posts
    51
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Must get help with Radial Walk (picture inside)

    Hello, I read some tut about radial walking and i decided to try it.
    I made a script and it doesnt work. pls help me
    here is the pic when I want to walk:




    and here is my code:

    Code:
    program New;
    {$DEFINE SMART}
    {$i srl/srl.simba}
    {$i sps/sps.simba}
    
    {$IFDEF SMART}
        {$i srl/srl/misc/paintsmart.simba}
    {$ENDIF}
    
    Procedure DeclarePlayers;
    begin
      HowManyPlayers:=1;
      NumberOfPlayers(HowManyPlayers);
      CurrentPlayer:=0;
    
    
      Players[0].Name:='
      Players[0].Pass:='
      Players[0].Active:=True;
    end;
    
    
    Procedure WalkToPort;
    begin
         RadialWalk(1126978, 170, 190, 40, -1, 1);
    end;
    
    
    begin
      {$IFDEF SMART}
        Smart_Server := 0;
        Smart_Members := True;
        Smart_Signed := True;
        Smart_SuperDetail := False;
      {$ENDIF}
      SetUpSRL();
      ActivateClient();
      DeclarePlayers();
      LoginPlayer();
      WalkToPort;
    
    end.
    Last edited by Mor; 04-04-2012 at 01:45 PM.

  2. #2
    Join Date
    Mar 2007
    Posts
    5,125
    Mentioned
    275 Post(s)
    Quoted
    901 Post(s)

    Default

    Try changing
    Simba Code:
    RadialWalk(1126978, 170, 190, 40, -1, 1);

    to

    Simba Code:
    RadialWalkTolerance(1126978, 170, 190, 40, -1, 0, 10);

    I also suggest using SPS if you are really stuck with radial walking

  3. #3
    Join Date
    Mar 2012
    Posts
    51
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by [J]ustin View Post
    Try changing
    Simba Code:
    RadialWalk(1126978, 170, 190, 40, -1, 1);

    to

    Simba Code:
    RadialWalkTolerance(1126978, 170, 190, 40, -1, 0, 10);

    I also suggest using SPS if you are really stuck with radial walking
    Thank you its work.
    I tried SPS to walk to this brown area but it doesnt walk, but to other places SPS works fine

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
  •