For a Anti Random procedure:
1. Does FindFight; (procedure)
> Detect the Evil Chicken
> Detect the Rock Golem (cause it throws rocks at you)
cause ive seen a few scripts using this non-SRL procedure:
SCAR Code:
Function FindEvilChicken: Boolean;
Var
CX, CY: Integer;
Begin
If(EvilChicken= 0)then
EvilChicken:= CreateBitmapMaskFromText('egone,', UpChars);
If(FindName)then
If(FindBitmapMaskTolerance(EvilChicken, CX, CY, 3, 3, 515, 336, 0, 40))then
Begin
Result:= True;
EvilChickens:= EvilChickens + 1;
WriteLn('******** FOUND EVIL CHICKEN RANDOM ********');
WriteFileString(TheFile, '******** FOUND EVIL CHICKEN RANDOM ********' +Chr(13));
End;
End;
If there are any other random events that SRL 3.6 doesn't know about then i would be very thankful if I someone could tell me about then before I find out myself.