i use this in my firemaking script to make it randomly step north or south when get msg (cant light fire here). so here is how it looks like
Simba Code:
if FindBlackChatMessage('here') then
begin
case random(1) of
1: begin
WriteLn('Stepping North.');
Mouse(258, 150, 3, 3, True);
While IsMoving do
wait(10);
end;
2: begin
WriteLn('Stepping South.');
Mouse(259, 213, 3, 3, True);
While IsMoving do
wait(10);
end;
end;
end;
the problem is it never steps south(always north) or doesnt move at all
enyone knows why?