Results 1 to 8 of 8

Thread: Whats the best form of walking

  1. #1
    Join Date
    Jan 2012
    Posts
    48
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Whats the best form of walking

    I was just wondering what the best form of walking was? and if there is a good script i can learn the method from. Thanks

  2. #2
    Join Date
    Oct 2008
    Location
    behind you!
    Posts
    1,688
    Mentioned
    2 Post(s)
    Quoted
    40 Post(s)

    Default

    Quote Originally Posted by MattL191 View Post
    I was just wondering what the best form of walking was? and if there is a good script i can learn the method from. Thanks
    Depends...

    You should try SPS or DDTMs or just got for old school and try radialWalk.
    Hi

  3. #3
    Join Date
    Jan 2012
    Posts
    48
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Thanks. I think i'm going to try sps found a tut for it. so i'm give it a look over thanks.

  4. #4
    Join Date
    Jan 2012
    Posts
    48
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Is there anyway to randomize where he clicks maybe like 5 of or something so its not same click in the path everytime? using sps that is.

  5. #5
    Join Date
    Dec 2006
    Location
    Sydney, New South Wales, Australia
    Posts
    4,603
    Mentioned
    15 Post(s)
    Quoted
    42 Post(s)

    Default

    Quote Originally Posted by MattL191 View Post
    Is there anyway to randomize where he clicks maybe like 5 of or something so its not same click in the path everytime? using sps that is.
    Simba Code:
    + Random(5);

    or

    Simba Code:
    + RandomRange(-5, 5);

    You may contact me with any concerns you have.
    Are you a victim of harassment? Please notify me or any other staff member.

    | SRL Community Rules | SRL Live Help & Chat | Setting up Simba | F.A.Q's |

  6. #6
    Join Date
    Jan 2012
    Posts
    27
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    y := RandomRange(-Bir * 60000, Bir * 60000);
    z := RandomRange(-Bfr * 60000, Bfr * 60000);

    := [Point(3020, 4640), Point(3285, 4575), Point(3305, 4590)];

    Would this code ^ randomise all the points above because I need a way for the script to randomise all the points apart from the last one "(3305, 4590)];" as it needs to be accurate.

    This is somebody else's script however I plan on editing it only for personal use.

  7. #7
    Join Date
    Oct 2011
    Posts
    805
    Mentioned
    21 Post(s)
    Quoted
    152 Post(s)

    Default

    Just example

    Simba Code:
    function RandomiseAllPoints (TPA : TPointArray ; MaxOffset : integer) : TPointArray;
    var
    a : integer;
    begin
      for a :=0 to High(TPA) do
      begin
        TPA[a].x := TPA[a].x - random(MaxOffset) + random(MaxOffset);
      TPA[a].y := TPA[a].y - random(MaxOffset) + random(MaxOffset);
      end;
    end;


    Example of use:

    Simba Code:
    var
    PathArray : TPointArrya;
    begin
    PathArray:=[Point(3020, 4640), Point(3285, 4575), Point(3305, 4590)];

    PathArray:=RandomiseAllPoints(PathArray,5);
    end.
    Last edited by bg5; 01-29-2012 at 01:54 PM.

  8. #8
    Join Date
    Nov 2011
    Posts
    1,532
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Didn't SPS already have randomised clicking built in?

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
  •