Change the code to this:
Simba Code:
Procedure WithdrawEssence;
var
x, y, essence: Integer;
Begin
essence := DTMFromString('mwQAAAHic42RgYIgD4gAgDgTiMCBOAOIMIM6B4kwg9gdiTyAOAuJIII4G4gioPi8gdgXi2tJSIMmIF3MxEAb4TYBgOAAAebwHvw==');
if FindDTM(essence, x, y, MSX1, MSY1, MSX2, MSY2) then
begin
MMouse(x, y, 0, 0);
Mouse(x, y, 0, 0, false);
wait(200);
P07_ChooseOptionMulti(['w A','All']);
end else
Writeln('Failed to find essence DTM');
FreeDTM(essence);
End;
And it works now. Thanks for the help! Can I PM you if I need further help?