Log in

View Full Version : Can simba be minimize and keep working?



Supreme
09-18-2012, 09:22 PM
Hello SRL Community.

Before anything, I would like to say I just found out about SRL and Simba and I'm having a bit of a problem in the "last step" to have everything working.

I've set an auto talker but (I'm not sure if its possible on simba) I wanted it to "block on a window"... like I run the script and he only auto talks on a particular window.

I've been using 2 scripts that i'll post here for better understanding of what i'm saying:

This opens the window for the auto talker to auto talk on.

program new; {$DEFINE SMART} {$i srl/srl.simba} begin ClearDebug(); SetupSRL(); end.

This is the auto talker script:


program talker;
{.include srl/srl.simba}
begin
repeat
wait(1000+random(3000));
TypeSendEx('Text',true)
wait(1000+random(3000));
TypeSendEx('Text',true)
wait(1000+random(3000));
TypeSendEx('Text',true)
until(false)
end.

What I want is the auto talker to work only on that first window that pops when I run the first script.

If anyone could help me I would be deeply thankful.

Le Jingle
09-18-2012, 09:28 PM
Most people don't approve of auto talking, however since the new detection system is out, I don't feel guilty lending a helping hand with this matter.

So what you want to do is basically combine both of these simba programs into one, no?


program new; {$DEFINE SMART} {$i srl/srl.simba} begin ClearDebug(); SetupSRL(); end.


and


program talker;
{.include srl/srl.simba}
begin
repeat
wait(1000+random(3000));
TypeSendEx('Text',true)
wait(1000+random(3000));
TypeSendEx('Text',true)
wait(1000+random(3000));
TypeSendEx('Text',true)
until(false)
end.


Will end up becoming:


[simba]
program talker;
{$DEFINE SMART} // This was added into our second script, from the first.
{$include srl/srl.simba}

begin
ClearDebug;
Smart_FixSpeed := True; // This was added into our second script, I added to help load smart window.
SetupSRL; // This was added into our second script, from the first.
repeat
wait(1000+random(3000));
TypeSendEx('Text',true)
wait(1000+random(3000));
TypeSendEx('Text',true)
wait(1000+random(3000));
TypeSendEx('Text',true)
until(false)
end.


Cheers,
Lj

Supreme
09-18-2012, 09:38 PM
Its working now but like other bots, is it possible for simba to bypass "Too many connections from your computer?"

P1ng
09-18-2012, 09:57 PM
There was a thread about this not long ago and it is possible to bypass it with any of the bots. Perhaps a google search/hunting around the help section on these forums may yield results for you.

Happy exploding ;)