The current one checks for the music playing, but the song changes every time RS is loaded (it may rotate between 4 or five songs, I'm not 100% sure). I've tested this after reloading multiple times.
SCAR Code:
{*******************************************************************************
function arnav_InRandom: Boolean;
by: Coh3n
Description: Returns true if in the Cap'n Arnav random.
*******************************************************************************}
function arnav_InRandom: Boolean;
begin
if (InRange(CountDots('npc'), 4, 5)) then // Sometimes a shark goes off the screen
if (CountColorTolerance(10010053, MMX1, MMY1, MMX2, MMY2, 25) > 300) then // The island color
Result := True;
end;
I apologize if this has already been posted somewhere (like a lot of my suggestions in the past), but I did search around.
Coh3n