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
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
Thanks. I think i'm going to try sps found a tut for it. so i'm give it a look over thanks.
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.
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 |
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.
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.
Didn't SPS already have randomised clicking built in?
There are currently 1 users browsing this thread. (0 members and 1 guests)