When I remove the procedures SetupSRL and Bank from the script I get the message - you found the DTM, so yay success, but when I try to add the parts together it will open the bank but I never get the message (I also try to right click the DTM but that fails also)
Any idea why it seems to detect it w/o SetupSRL but can't with ??
Simba Code:
Procedure Copp;
var
SeX, SeY, CopDTM: Integer;
Begin
CopDTM := DTMFromString('mbQAAAHicY2VgYJgBxEuBeBEQTwPidiBWYGRgkARidSDWBWJlIN6TZQGUYUTDmABdBVwVALQOBR4=');
If FindDTM(CopDTM, SeX, SeY,1, 1, 600, 400) then
writeln('Congratz! You have just found your first DTM!');
FreeDTM(copDTM);
End;
Begin
SetupSRL;
Bank;
Copp;
End.