From 333755cfdadff19e099f5c7fa0a0eb0a20bf2793 Mon Sep 17 00:00:00 2001 From: Lily Date: Sun, 12 Jan 2025 22:51:30 -0600 Subject: [PATCH] Only give Messmer's Kindling if the player does not already have it --- .../Scripts/Seamless Co-op/Invisible Romina Fix.cea | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/CheatTable/CheatEntries/Open - The Grand Archives - Elden Ring/Scripts/Seamless Co-op/Invisible Romina Fix.cea b/CheatTable/CheatEntries/Open - The Grand Archives - Elden Ring/Scripts/Seamless Co-op/Invisible Romina Fix.cea index 374f062a..d891e747 100644 --- a/CheatTable/CheatEntries/Open - The Grand Archives - Elden Ring/Scripts/Seamless Co-op/Invisible Romina Fix.cea +++ b/CheatTable/CheatEntries/Open - The Grand Archives - Elden Ring/Scripts/Seamless Co-op/Invisible Romina Fix.cea @@ -8,10 +8,11 @@ local flagsBase = { } local messmerFlag = 9146 --Defeat the boss Messmer, the Impaler (this is the flag for his loot, not his death) +local kindlingId = 0x401EA3D5 local flags = {flagsBase} ef.batchSetFlags(flags, 0, "SealingTreeThread") -if ef.getFlag(messmerFlag):getValue() then --Messmer's given his loot - ItemGive(0x401EA3D5, 1, 0, 0, -1) --Give Messmer's Kindling to prevent a softlock +if ef.getFlag(messmerFlag):getValue() and not getItemIdx(kindlingId, 2) then --Messmer's given his loot before, but we don't have Messmer's Kindling + ItemGive(kindlingId, 1, 0, 0, -1) --Give Messmer's Kindling to prevent a softlock end local t = createTimer(nil) t.interval = 100