I'm posting this just because I've seen this mistake ever since the stone age of SRL.
The only times you need to use randomness is when you interact with RS.
Things like these are pointless and harmfull:
Simba Code:T := GetSystemTime + 2000 + Random(200); //baaaaad
while (GetSystemTime < T) do
begin
if (FlagPresent) or (IsMoving) then
Break;
Wait(20);
end;
Why pointless? - Because NOBODY is monitoring this
Why Harmful? - Because it is randomizing the rhythm of your script, making it harder to fine tune!
~RM









Reply With Quote




