Nothing special; I just got fed up of writing + Random(x) and I'm sure many others do.
Simba Code:{*******************************************************************************
procedure RWait(Time, RTime : Integer; Minus : Boolean);
by: Rich
Description: Waits Time + random RTime. Maybe - random RTime if Minus set True
*******************************************************************************}
procedure RWait(Time, RTime : Integer; Minus : Boolean);
begin
Wait(Time + RandomRange(- (Integer(Minus) * RTime), RTime));
end;
I'll be honest I've not got my hopes up for this, but I thought I might as well post it.

