Hey , im looking for an Autotyping script that will be done on the client and i can browse other programs while the autotyper is going on my rs3 client on simba
Mod edit: Script buying is not allowed on this forum.
Printable View
Hey , im looking for an Autotyping script that will be done on the client and i can browse other programs while the autotyper is going on my rs3 client on simba
Mod edit: Script buying is not allowed on this forum.
Rofl offering $30 for a auto typer script I wish we could do this for him
saw @Ashaman88; browsing this thread, surprised he didn't remove it yet?
OP: read the rules: no selling/buying scripts
Can't tell if troll or just too lazy to script like 5 lines of code?
Simba Code:repeat
typeSend('I like cheese');
wait(gaussRangeInt(250, 750));
until false;
Didn't they make an auto-typer built into the game?
Idk if you really donated but I am feeling helpful today.
Simba Code:program ClarityAutotyper;
{$DEFINE SMART}
{$I SRL-6/SRL.simba}
const
message = 'Hello, how are you?'; //message to autotype
timeBetweenMessages = 500; //ms to wait between messages (center of normal distribution randomization, minimum 500)
var
messageCount: Integer;
procedure declarePlayers;
begin
setLength(players, 1);
with players[0] do
begin
loginName := 'Username';
password := 'Password';
isActive := true;
isMember := false;
world := -1;
end;
currentPlayer := 0;
end;
procedure ClarityDebug(message: string);
begin
writeln('== ClarityDebug == | ' + message);
end;
procedure mainLoop;
begin
typeSend(message, true);
wait(gaussRangeInt(timeBetweenMessages - 500, timeBetweenMessages + 500));
inc(messageCount);
ClarityDebug('Message send count: ' + ToStr(messageCount));
end;
begin
setupsrl;
declarePlayers;
while players.getActive > 0 do
mainLoop;
end.
Make sure chat's "Always-On" mode is active as shown in the picture below.
http://i.gyazo.com/105fd5e679783654d5a9d4d847e648dc.png
This script will run until you press the stop button.