I was looking through the AntiRandom source code and I came across this:
Everything seemed to make sense except for this ambiguous "Respond;" function, so I searched some more until I found it in a file called "CAutoRespond.scar". This is the entire function:Code:function FindNormalRandoms: Boolean; var i: Integer; begin for i := 1 to 8 do begin case I of 1: Result := SolveNonTalkingRandoms; 2: Respond; 3: Result := FindTalk; 4: Result := FindDead; 5: Result := FindLamp('Woodcutting'); 6: if FindBox then Result := SolveBox; 7: Result := RC; 8: Result := FindMod; end; if Result then Break; //Wait(1); end; end;
What exactly is this supposed to do? Is this function deprecated or something?Code:function Respond:Boolean; Begin Result := False; end;


Reply With Quote














