I have all these items in my inventory, and I'm using the following script, and it's not detecting any of them as a random reward (Unless my script is wrong). I have reloaded the client several times, about 30 times already.
I'm running Simba 984 if that matters. The only thing I haven't tried yet is checking it on SMART, which I'll do now.
Simba Code:
program new;
{$i srl/srl.simba}
begin
SetupSRL();
ClearDebug();
repeat
WriteLn('Searching for Random rewards...');
if(RD_Detect())then
begin
WriteLn('Found Random reward.');
TerminateScript();
end;
until(IsKeyDown(VK_S));
end.
I have also modified RD_Detect to print out the DTM ID if it's found.
EDIT:
I'm using this script with SMART, and it's still not finding anything.
Simba Code:
program new;
{$DEFINE SMART}
{$i srl/srl.simba}
begin
SMART_Server := 0;
SMART_Members := True;
SMART_Signed := True;
SMART_SuperDetail := False;
SetupSRL();
ClearDebug();
while((not(LobbyScreen)))do
Wait(1000);
if(LobbyScreen)then
MouseBox(270, 450, 490, 470, mouse_left);
Wait(5000);
repeat
WriteLn('Searching for Random rewards...');
if(RD_Detect())then
begin
WriteLn('Found Random reward.');
TerminateScript();
end;
until(IsKeyDown(VK_S));
end.