Looks very nice for a first script. But i have one suggestion.
At the end, where you tell the script when to do what:
SCAR Code:
Begin // SKALLA @ SRL FORUMS
BBQ;
Repeat
Signature; // <3
Typing;
Wait(1500+random(1000)) // how many milliseconds from msg 8 to msg 0
Until(False) // Dont touch the "+Random(1000))"
End. // THIS IS MY FIRST SCRIPT \\
in that part, remove the Signature;
Signature; is already done in the BBQ; procedure.
If it keeps repeating it everytime before it starts the Typing procedure, it will
just freak out the Debug box.
Try doing something like this
SCAR Code:
Begin
BBQ;
Repeat
Typing;
Wait(1500+random(1000))
Until (IsFKeyDown(number of F key here))
Signature;
End.
This way you can stop the script by pressing a F key (you decide which), which then shows the progress report.
Thats much more organized and better to use.
Anyway, nice first script, keep on learning, and im sure you'll be a great scripter one day
