Hi
I`m trying to withdraw a dtm item, It finds the item end open the options screen and choose the X amount, but after that nothing gets send. Any advice with this
Thanks
Simba Code:
If FindDTM(DTM_Flour, x, y, MSX1, MSY1, MSX2, MSY2) then
Begin
WriteLn('We Have Found The Flour');
Mouse(x, y, 3, 3, mouse_right);
WaitOption('X', 1000);
TypeSendEx(IntToStr(14),True);
Wait(randomrange(700, 200));
FreeDTM(DTM_Flour);
End else
Begin
WriteLn('We couldnt find the Flour! Check your DTM, or make sure the flour is visible');
FreeDTM(DTM_Flour);
// GlobalFailsafe('We couldnt find the Flour! Check your DTM, or make sure the flour is visible');
End;
End else
Begin
WriteLn('The inventory isnt full yet.');
FreeDTM(DTM_Flour);
Exit;
End;