Hello,
I am currently having issue with my bot, i am trying to have it click the shrimp in my inventory.
I am using DTM's and it is able to find the range, it just wont click on the shrimp. I made sure that the DTM was found but it would not happen!!!!
here is the issue
Simba Code:
procedure UseRange;
var
rawshrimp, x, y: integer;
begin
repeat
FindNormalRandoms;
MakeCompass('N');
SetAngle(SRL_ANGLE_HIGH);
rawshrimp := DTMFromString('mAAEAAHic42FgYOABYlkoZgViXigtAMSSDBAAojmAWASIuaDynFC9YkDMCFUHkmODskWh6mOcTIAkEwmYNMBIIkYGAJOpAjA=');
if FindDTM(rawshrimp, x, y, MIX1, MIY1, MIX2, MIY2) then
begin
MMouse(x,y, 7,7)
Mouse(x,y,5,5,false)
ChooseOption('Use')
Mouse(258, 422, 0, 0, true);
wait (67356+random(2435));
Antiban;
end;
until(InvFull);
end;
Please help,
THanks,
StickToTheScript