Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v1.14.1 #100

Merged
merged 8 commits into from
Jul 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions BUILD_ENV
Original file line number Diff line number Diff line change
@@ -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
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
# 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
- SpEffect.add / .erase
- Set flask level

## [v1.14.0] - 2024-07-29
### Added
- by [Dasaav](https://github.com/Dasaav-dsv/)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down