Hi,
I want to check if Talent Scount is calling me.
His text color is
How do i find he is talking ?
Simba Code:function FindScout: Boolean;
var
i: Integer;
message: string;
begin
for i:= 1 to 8 do
begin
message:= GetChatBoxText(i, WHAT_I_PUT_HERE);
if (Pos('over', Lowercase(message)) > 0) then
begin
Result:= True;
Break;
end;
end;
end;
Is there any other easy way to detect him talking ?



Reply With Quote





REP +





