How could I add something like
if 10000+random(3000) passed then begin Gametabs; etc.
I'd definedly need to learn this to make my scripts antiban effective.
So please, if someone could bother to help me up ?
Printable View
How could I add something like
if 10000+random(3000) passed then begin Gametabs; etc.
I'd definedly need to learn this to make my scripts antiban effective.
So please, if someone could bother to help me up ?
Well, I assume this is to easy to be what you ned but, couldn;t you just use
Code:wait(10000+random(3000));
gametabs;
I think he means more about the count times, where its 10000+random 3000, from the time a function started? where other things are happening in the time that the 13000 time happened. i dont know how to use that systemcount/start/marktime features, so you will have to wait for some1 else to post about it or maybe there is a tutorial on it.
To set up a timer you need 3 things. An integer to use as the counter and two functions.
MarkTime resets the timer. TimeFromMark checks the time without resetting it. And you need a unique integer variable to use for each timer you want to set up.Code:Program new;
{.include SRL/SRL.scar}
var TabTimer:integer;
begin
SetupSRL;
MarkTime(TabTimer);
repeat
if TimeFromMark(TabTimer) > 10000 then
begin
GameTab(2);
Wait(500);
GameTab(3);
MarkTime(TabTimer);
end else Wait(500);
until false;
end.