From 58cebeac5f3318038563e8a8747ba101c3a9626d Mon Sep 17 00:00:00 2001 From: inuNorii <19881900+inuNorii@users.noreply.github.com> Date: Mon, 29 Jul 2024 20:11:09 +0200 Subject: [PATCH 1/5] Fix Invasion Regions --- CHANGELOG.md | 2 ++ .../Event Flags/Invasion Regions.cea | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3748fc3f3..aa8a6153b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ # Changelog ## [Unreleased] +### Fixed + - A copypaste error in Invasion Regions that prevent the script from working ## [v1.14.0] - 2024-07-29 ### Added diff --git a/CheatTable/CheatEntries/Open - The Grand Archives - Elden Ring/Event Flags/Invasion Regions.cea b/CheatTable/CheatEntries/Open - The Grand Archives - Elden Ring/Event Flags/Invasion Regions.cea index c5632c4dd..aebedd02c 100644 --- a/CheatTable/CheatEntries/Open - The Grand Archives - Elden Ring/Event Flags/Invasion Regions.cea +++ b/CheatTable/CheatEntries/Open - The Grand Archives - Elden Ring/Event Flags/Invasion Regions.cea @@ -343,7 +343,7 @@ wex.PlayRegions = { {Map = "Stormveil Castle", Name = "Liftside Chamber, Secluded Cell", PlayRegion = 1000005, BonfireFlags = {71006, 71007}, isBoss = true}, {Map = "Stormveil Castle", Name = "Godrick the Grafted", PlayRegion = 1000000, BonfireFlags = {71000}, isBoss = true}, {Map = "Liurnia of the Lakes", Name = "Liurnia South-East", PlayRegion = 6200001, BonfireFlags = {76217, 76200, 76201, 76202, 76203, 76244, 76221, 76222}, isOpenWorld = true}, -{Map = "Liurnia of the Lakes", Name v= "Liurnia East", PlayRegion = 6200004, BonfireFlags = {76223, 76234, 76224, 76225, 76226}, isOpenWorld = true}, +{Map = "Liurnia of the Lakes", Name = "Liurnia East", PlayRegion = 6200004, BonfireFlags = {76223, 76234, 76224, 76225, 76226}, isOpenWorld = true}, {Map = "Liurnia of the Lakes", Name = "Behind Caria Manor", PlayRegion = 6200008, BonfireFlags = {76247, 76228, 76238}}, {Map = "Liurnia of the Lakes", Name = "Slumbering Wolf's Shack", PlayRegion = 3105090, BonfireFlags = {76215}}, {Map = "Liurnia of the Lakes", Name = "Liurnia South", PlayRegion = 6200000, BonfireFlags = {76205, 76204, 76216, 76236, 76241, 76243, 76242, 76233}, isOpenWorld = true}, From 5ec8cb67dfdf1c830e7bafad1982b50cb08b31a9 Mon Sep 17 00:00:00 2001 From: inuNorii <19881900+inuNorii@users.noreply.github.com> Date: Tue, 30 Jul 2024 15:29:18 +0200 Subject: [PATCH 2/5] Fix ItemGib for v1.13 --- CHANGELOG.md | 1 + .../MiscWIP/Dependencies/Global Functions/ItemGive_code.cea | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index aa8a6153b..d14d76322 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ ## [Unreleased] ### Fixed - A copypaste error in Invasion Regions that prevent the script from working + - ItemGib, getGoodsAddr_func AOB broke ## [v1.14.0] - 2024-07-29 ### Added diff --git a/CheatTable/CheatEntries/Open - The Grand Archives - Elden Ring/MiscWIP/Dependencies/Global Functions/ItemGive_code.cea b/CheatTable/CheatEntries/Open - The Grand Archives - Elden Ring/MiscWIP/Dependencies/Global Functions/ItemGive_code.cea index 3c080082c..67ba724bf 100644 --- a/CheatTable/CheatEntries/Open - The Grand Archives - Elden Ring/MiscWIP/Dependencies/Global Functions/ItemGive_code.cea +++ b/CheatTable/CheatEntries/Open - The Grand Archives - Elden Ring/MiscWIP/Dependencies/Global Functions/ItemGive_code.cea @@ -6,7 +6,7 @@ local item_table_mem = ItemGive_data + 32 local ItemGive_func = AOBScanModuleUnique(process,"8B 02 83 F8 0A") - 0x52 local getWeaponAddr_func = AOBScanModuleUnique(process,"8B EA 48 8B F1 33 DB 41 83 CE FF 85 D2") - 0x22 -local getGoodsAddr_func = AOBScanModuleUnique(process,"8b fa ?? 8b f1 33 db 85 d2 0f 88 ?? ?? ?? ?? ?? 8b 0d c4 8a") - 0x1E +local getGoodsAddr_func = AOBScanModuleUnique(process,"41 8d 50 03 e8 ?? ?? ?? ?? ?? 85 c0 0f 84 ?? ?? ?? ?? ?? 8b ?? ?? ?? ?? ?? ?? 8b ?? ?? ?? ?? ?? 48") - 0x6a local getQuantity_func = AOBScanModuleUnique(process,"?? 8b f9 ?? 8d 44 ?? 48 ?? 89 44 ?? ?? 8b 01") - 0x14 function ItemGive(table_or_id, quantity, reinforceLv, upgrade,gem) From 3299efa2b73b987b0a50b9a77c79a7280aeee02b Mon Sep 17 00:00:00 2001 From: inuNorii <19881900+inuNorii@users.noreply.github.com> Date: Tue, 30 Jul 2024 15:31:59 +0200 Subject: [PATCH 3/5] Fix silly mistake in SpEffect_code --- CHANGELOG.md | 1 + .../Dependencies/Global Functions/SpEffect_code.cea | 10 +++++----- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d14d76322..ff10726d5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ ### Fixed - A copypaste error in Invasion Regions that prevent the script from working - ItemGib, getGoodsAddr_func AOB broke + - SpEffect.add / .erase ## [v1.14.0] - 2024-07-29 ### Added diff --git a/CheatTable/CheatEntries/Open - The Grand Archives - Elden Ring/MiscWIP/Dependencies/Global Functions/SpEffect_code.cea b/CheatTable/CheatEntries/Open - The Grand Archives - Elden Ring/MiscWIP/Dependencies/Global Functions/SpEffect_code.cea index 73b1f8b8f..9fa6d43fe 100644 --- a/CheatTable/CheatEntries/Open - The Grand Archives - Elden Ring/MiscWIP/Dependencies/Global Functions/SpEffect_code.cea +++ b/CheatTable/CheatEntries/Open - The Grand Archives - Elden Ring/MiscWIP/Dependencies/Global Functions/SpEffect_code.cea @@ -46,11 +46,11 @@ function SpEffect.remove(id, ptr) end -- temporary for backwards compat -SpEffect.add = SpEffect_addForSelf -SpEffect.add = SpEffect_add -SpEffect.erase = SpEffect_eraseAll -SpEffect.erase = SpEffect_erase -SpEffect.remove = SpEffect_remove +SpEffect_addForSelf = SpEffect.addForSelf +SpEffect_add = SpEffect.add +SpEffect_eraseAll = SpEffect.eraseAll +SpEffect_erase = SpEffect.erase +SpEffect_remove = SpEffect.remove [DISABLE] SpEffect = nil From aff143ff7c4acc0bf7166c9da0f45d112c272053 Mon Sep 17 00:00:00 2001 From: inuNorii <19881900+inuNorii@users.noreply.github.com> Date: Tue, 30 Jul 2024 15:35:53 +0200 Subject: [PATCH 4/5] Fix Set flask level --- CHANGELOG.md | 1 + .../Scripts/Build Creation/Set flask level.cea | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ff10726d5..e42f5663c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ - A copypaste error in Invasion Regions that prevent the script from working - ItemGib, getGoodsAddr_func AOB broke - SpEffect.add / .erase + - Set flask level ## [v1.14.0] - 2024-07-29 ### Added diff --git a/CheatTable/CheatEntries/Open - The Grand Archives - Elden Ring/Scripts/Build Creation/Set flask level.cea b/CheatTable/CheatEntries/Open - The Grand Archives - Elden Ring/Scripts/Build Creation/Set flask level.cea index 74bed7bd8..ab08c5ff1 100644 --- a/CheatTable/CheatEntries/Open - The Grand Archives - Elden Ring/Scripts/Build Creation/Set flask level.cea +++ b/CheatTable/CheatEntries/Open - The Grand Archives - Elden Ring/Scripts/Build Creation/Set flask level.cea @@ -22,7 +22,7 @@ local function ReplaceTool(EquipGameData, currentId,replaceId) end local function SaveRequest() - local GameMan = getPointer("GameMan") + local GameMan = readPointer("GameMan") writeByte(GameMan + 0xB72, 1) end From c318495dd4df30517498c7c932e27938f4349a7c Mon Sep 17 00:00:00 2001 From: inuNorii <19881900+inuNorii@users.noreply.github.com> Date: Tue, 30 Jul 2024 15:46:06 +0200 Subject: [PATCH 5/5] Update versions --- BUILD_ENV | 4 ++-- CHANGELOG.md | 4 ++++ 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/BUILD_ENV b/BUILD_ENV index 01067a9e9..590c2c5d3 100644 --- a/BUILD_ENV +++ b/BUILD_ENV @@ -1,3 +1,3 @@ -TABLE_VERSION=1.14.0 -GAME_VERSION=1.12.3 +TABLE_VERSION=1.14.1 +GAME_VERSION=1.13.0 MIN_CE_VERSION=7.4 \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index e42f5663c..5f9aa46ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog ## [Unreleased] + +## [v1.14.1] - 2024-07-30 +### Changed + - Supported version to 1.13.0 ### Fixed - A copypaste error in Invasion Regions that prevent the script from working - ItemGib, getGoodsAddr_func AOB broke