This is the very first script I have ever made, please comment and help me out!
This is the very first script I have ever made, please comment and help me out!
not bad not bad...
You need to learn standards though...read up on some tutorials for the correct standards. You also forgot to put SetupSRL in your main loop. If you run this it will give a runtime error. You dont need to put ActivateClient in the repeat loop either, just call it once after SetupSRL...
Other than that it looks good, so keep up the good work![]()
Your script with fixed standards and stuff:
SCAR Code:program AutoTalking;
{.include srl/srl.scar}
var
TimesTyped: Integer;
const
TypedToTimes = 3;
Message1 = 'glow3:this my bones';
Message2 = 'these your bones';
Message3 = 'mine your bones';
Procedure Talk;
begin
wait(1000 + Random(600))
typesend(Message1);
wait(1000 + Random(600))
typesend(Message2);
wait(1000 + Random(600))
typesend(Message3);
wait(1000 + Random(600))
end;
begin
SetupSRL;
ActivateClient;
repeat
Talk;
TimesTyped := TypedToTimes + 1;
until(TimesTyped >= TypedToTimes);
end.
METAL HEAD FOR LIFE!!!
Yea, its prety good. Next I recomend adding Anti Ban (just because it is easy also fun to do), then Anti Randoms (because it is vital and also not that hard).
If you want to go for something hard try making your own function for human like typing (yes, you can use Typesend2 but that has a little too many misstakes I think).
yes! Thanks for the edits, right now im gonna do study up on the standards more. Hopefully soon ill be able to add the anti bans and etc.
cool, fun to use lol
[-----------------------------------]
[ GREEN LINEN SHIRT.....cloth..]
[ chest...................................]
[ armor 3...............................]
[ required lvl 5........................]
[............................................]
[-----------------------------------]
Nice Job,.
There are currently 1 users browsing this thread. (0 members and 1 guests)