Log in

View Full Version : Need help - new to simba



4444RS
10-22-2012, 09:41 AM
The sheer stupidity of this question may cause nausea and vomiting, but I have no idea what I'm doing :)

I am trying to set up an advertiser (not for RWT or anything like that) and I need to have 3 going at the same time on one laptop, that's why I downloaded simba.

I found a basic script that seems to work, but when I press the green arrow it inserts the text into the script box instead of opening SMART.

Here is the script:


program QazsAutoTyper;
{$DEFINE SMART}
{$i srl/srl.simba}

Const
Message0=('insert message here');

Begin
Repeat
Wait(1000+Random(50)); //increase number to slow down. decrease to speed up
TypeSend(message0);
Until(False)
end.

I would like to know how to get the client up and running, log in and start the script.

I am sorry for such an amateur question, I assure you that I have watched many video and read many guides but I can't find anything related to a script this simple.

I wont be using simba for botting, just auto typing.

These are the steps I am taking:

1: Open simba

2: Copy script

3: Press the green arrow

I know this is wrong, I just don't know how to get the client going to run the script.

Many thanks,
4444RS.

Gucci
10-23-2012, 01:32 AM
I've been gone for a while but I think this should work

program QazsAutoTyper;
{$DEFINE SMART}
{$i srl/srl.simba}

const
Message0=('insert message here');

begin
Smart_Signed := TRUE;
Smart_Members := MEMBERS;
Smart_SuperDetail := FALSE;
ActivateClient;
SetupSRL;
repeat
Wait(1000+Random(50)); //increase number to slow down. decrease to speed up
TypeSend(Message0);
until(False)
end.

(s)okkr7
10-23-2012, 01:44 AM
I've been gone for a while but I think this should work

program QazsAutoTyper;
{$DEFINE SMART}
{$i srl/srl.simba}

const
Message0=('insert message here');

begin
Smart_FixSpeed := True;
SRL_SixHourFix := True;
ActivateClient;
SetupSRL;
repeat
Wait(1000+Random(50)); //increase number to slow down. decrease to speed up
TypeSend(Message0);
until(False)
end.

Added a few changes to Gucci's message. Should work!