here is my first script, i was wondering if anyone could help me to make it less detectable and help me to insert failsafes and antirandoms because i dont understond them and wonder if anyone could help
SCAR Code:
program fletcher;
{.include SRL/SRL.scar}
Procedure say;
Begin
TypeSend('27');
end;
Begin
SetupSRL;
Repeat
FindBank('veb');
Deposit(2,28,2);
FixBank;
Withdraw (1,1,27);
CloseBank;
Wait(500+random(200));
MouseItem(1,true);
MouseItem(2,true);
Wait(500+random(200));
Mouse(265,402,0,0,false);
Wait(500+random(200));
Mouse(261,473,0,0,true);
Wait(2000+random(300));
say;
Wait (50000+random(1000));
until false;
end.