From d5c81857c3ea29e560bc96fab7fddc6c83aed895 Mon Sep 17 00:00:00 2001 From: TheRogueArchivist <24215969+TheRogueArchivist@users.noreply.github.com> Date: Wed, 5 Jun 2024 07:37:37 -0600 Subject: [PATCH] Update Roxxe detections (#305) --- BinaryObjectScanner/Protection/Roxxe.cs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/BinaryObjectScanner/Protection/Roxxe.cs b/BinaryObjectScanner/Protection/Roxxe.cs index 50ffac89..bfd0a6b3 100644 --- a/BinaryObjectScanner/Protection/Roxxe.cs +++ b/BinaryObjectScanner/Protection/Roxxe.cs @@ -52,6 +52,14 @@ namespace BinaryObjectScanner.Protection // return "Roxxe (Possibly remnants)"; } + // If any dialog boxes match + // Found in "Data6.OWP" in IA item "game4u-22-cd". + if (pex.FindDialogBoxByItemTitle("SharpTiny Version 1.0").Any()) + return "Roxxe"; + // Found in "Data8.OWP" in IA item "game4u-22-cd". + else if (pex.FindDialogBoxByItemTitle("T32xWin Version 1.0").Any()) + return "Roxxe"; + return null; }