
Originally Posted by
kingarabian
It's working for me O_o.
If your members.. Go To Zanaris.. Open the bank.. Have any of the DTM items on screen and run this which doesn't work at all.. The uptexts return bad:
Simba Code:
program TestingUptexts;
{$DEFINE SMART}
{$I SRL/SRL.Simba}
Function FindItems: boolean;
var
X, Y, DTM: Integer;
begin
//Pouch
//DTM := DTMFromString('m1gAAAHic42JgYDjIxMBwjAlC70PCIP4RKD4JxJyMDAxcQMwLxSA+GxIGiXEAcWFJPENxeSKDv78tGOcXxzIUlMQxFJUlMGSkhYDFyqqSGbiAdhODGYnECAAAECwT5g==');
//Prayer
//DTM:= DTMFromString('mQwAAAHicY2ZgYJjKyMAwC4inAXEOkF8ExFVAbLmzm0GrNRnIYmJgB5IwzIiEgQAAB8EFzQ==');
//Scrolls
//DTM:= DTMFromString('mWAAAAHicY2FgYPjAyMDwB4h/AvF7IP4MFHsHxH+A+DsQe3oYAEkmMI6Ims/ADmQhY0Y0DAIAeJ4J5w==');
//SummoningPotion
DTM:= DTMFromString('mWAAAAHicY2FgYHBigmBXIPYEYn1GBgYrILaE4vz8Ega5a3cZZC/dBKpmYkgBkuxImBENgwAAgewHaA==');
Result:= FindDTM(DTM, X, Y, MBX1, MBY1, MBX2, MBY2);
if Result then
MMouse(X, Y, 0, 0);
wait(1000);
FreeDTM(DTM);
Writeln(GetUptext);
end;
begin
Smart_Server := 72;
Smart_Members := True;
Smart_Signed := True;
Smart_SuperDetail := False;
SetupSRL;
ClearDebug;
FindItems;
end.