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.
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.
Last edited by masterBB; 06-06-2014 at 10:18 PM. Reason: no buying
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
Creds to DannyRS for this wonderful sig!
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;
Last edited by Clarity; 06-06-2014 at 07:32 PM.
Scripts: ClarityNex | ClaritySlayer | ClarityElfThief | ClarityBurialArmour | ClarityMudRunes | ClarityWells | ClarityProTables | ClarityArmadyl | ClarityHarps
ClarityDominonTower | ClarityAltar | ClarityCitadel | ClarityBarrows | ClarityEsswraith | ChampionScrollCamperTools & Extensions: OpenGL ID Highlight Tool | SRL-6 Messaging System | SRL Companion | Item DTM Generator | BBCode Converter
Didn't they make an auto-typer built into the game?
Anti-Leech Movement Prevent Leeching Spread the word
Insanity 60 Days (Killer workout)
XoL Blog (Workouts/RS/Misc)
Scripts: ClarityNex | ClaritySlayer | ClarityElfThief | ClarityBurialArmour | ClarityMudRunes | ClarityWells | ClarityProTables | ClarityArmadyl | ClarityHarps
ClarityDominonTower | ClarityAltar | ClarityCitadel | ClarityBarrows | ClarityEsswraith | ChampionScrollCamperTools & Extensions: OpenGL ID Highlight Tool | SRL-6 Messaging System | SRL Companion | Item DTM Generator | BBCode Converter
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.
This script will run until you press the stop button.
Last edited by Clarity; 06-06-2014 at 08:38 PM.
Scripts: ClarityNex | ClaritySlayer | ClarityElfThief | ClarityBurialArmour | ClarityMudRunes | ClarityWells | ClarityProTables | ClarityArmadyl | ClarityHarps
ClarityDominonTower | ClarityAltar | ClarityCitadel | ClarityBarrows | ClarityEsswraith | ChampionScrollCamperTools & Extensions: OpenGL ID Highlight Tool | SRL-6 Messaging System | SRL Companion | Item DTM Generator | BBCode Converter
There are currently 1 users browsing this thread. (0 members and 1 guests)