Hi all.
I would like to know how I can overcoem the uptext issue at the moment without having to hardcode the coordinates and without haveing to write new procedures to do the same thing
Lets say I Use the following.
Simba Code:
procedure WithDrawItems;
var
Temp:Integer;
Begin
DTM_SoftClay := DTMFromString('mlwAAAHicY2dgYGgF4gogrgPibiCeAsRdQFwDxCyMDAwcQMwPxYxA/Aso/heIQ+14gCQTDowbMOLBUAAA/WYGgQ==');
DTM_Clay := DTMFromString('mggAAAHicY2NgYGBnBBKMEJoXiIWAmAuIHYDYBYjdgdgZiG2A2AKIazJcgRqYsGDsgBEHhgAACIsDBQ==');
OpenbankFast('db');
Wait(500 + random(400));
// Withdraw Soft Clay From Bank
While (not(InvFull)) do
Begin
{ WithDraw(2,2,28);
Wait(500 + random(400));}
If WithDrawItem(DTM_SoftClay, 'dtm', 28, 'soft', []) then // WithDraw item From Bank
Begin
WriteLn('Success');
CloseBank;
FreeDTM(DTM_SoftClay);
FreeDTM(DTM_Clay);
End;
End;
End;
I still want to use WithDrawItem which gets it up text from rs_GetUpText, now Wizzup has made a post here about how to fix it. But I just don`t find rs_GetUpText in the srl dir. In which file is rs_GetUpText so that I can edit it.
And if it is not edible because it is harcoded and part of the ocr engine, how can I overcome this issue without hardcoding and a new procedure or function? Is it possible?
Or should i Just use WithDraw at the moment and harcode everything, but then afterwards all hardcoded scripts would have to be changed again, it`s just double work, and is it really necessary?