From 51194f8e161ff0c5a480b11505af0a98f5e5cdcf Mon Sep 17 00:00:00 2001 From: TheRogueArchivist <24215969+TheRogueArchivist@users.noreply.github.com> Date: Wed, 5 Jun 2024 00:23:24 -0600 Subject: [PATCH] Update Roxxe detections --- 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 @@ public class Roxxe : IPathCheck, IPortableExecutableCheck // 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; }