SCAR Code:
//Script made by T-KUAT(Haxal)//
program StayLogIn;
{.include SRL/SRL.scar}
var
Talk:string;
begin
repeat
wait(50 + random(10000))
case Random(5) of
0: RandomRClick;
1: RandomMovement;
2: PickUpMouse;
3: SetAngle(True);
4: BoredHuman;
5: AlmostLogout;
6: HoverSkill('random',false);
7:case Random(5) of
0:begin
Talk:='hey dudes';
TypeSend(Talk);
end;
1:begin
Talk:='srl pwns rs';
TypeSend(Talk);
end;
2:begin
Talk:='blah blah';
TypeSend(Talk);
end;
3,4,5:begin
Talk:='im bored';
TypeSend(Talk);
end;
end;
end;
until false;
end.
Now you can make the script even better by changing the ratio of chance each option has of being done.
eg/
SCAR Code:
case Random(13) of
0,1,2: RandomRClick;
3,4: RandomMovement;
5: PickUpMouse;
6: SetAngle(True);
7,8,9: BoredHuman;
10: Almost Logout;
11,12,13: HoverSkill(random)
end;