Skip to content

Commit

Permalink
update patterns for 1.0.0.18
Browse files Browse the repository at this point in the history
  • Loading branch information
Dregu committed Jun 11, 2024
1 parent f2e4c7c commit a47c656
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

MAXWELL is an ingame ImGui overlay for the game ANIMAL WELL, featuring an inventory editor, warping map, cheats etc.

It has been tested on the 2024-05-28 version 1.0.0.16 on Windows 10. This is the only version officially supported by the latest autobuild, but it might work for older or newer versions too. There might also be compatibility releases for older versions available in the release section, but those probably won't have the latest features.
It has been tested on the 2024-06-06 version 1.0.0.18 on Windows 10. This is the only version officially supported by the latest autobuild, but it might work for older or newer versions too. There might also be compatibility releases for older versions available in the release section, but those probably won't have the latest features.

**Please go away if you haven't finished the game, this will spoil everything for you.**

Expand Down
10 changes: 6 additions & 4 deletions search.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -610,9 +610,10 @@ std::unordered_map<std::string_view, AddressRule> g_address_rules{
},
{
"update_state"sv,
PatternCommandBuffer{} // .from_exe_base(0x522d0)
PatternCommandBuffer{}
//.from_exe_base(0x4f720) // .from_exe_base(0x522d0)
.set_optional(true)
.find_inst("74 0c 41 8b 8d 0c 36 09 00"_gh)
.find_inst("8b 80 80 54 07 00 83 f8 02"_gh)
.at_exe()
.function_start(),
},
Expand Down Expand Up @@ -642,9 +643,10 @@ std::unordered_map<std::string_view, AddressRule> g_address_rules{
},
{
"render"sv,
PatternCommandBuffer{} //.from_exe_base(0x4dcc0),
PatternCommandBuffer{}
//.from_exe_base(0x4b550) //.from_exe_base(0x4dcc0),
.set_optional(true)
.find_inst("b8 a8 2a 00 00 e8"_gh)
.find_inst("8d 47 ff 3c 11"_gh)
.at_exe()
.function_start(),
},
Expand Down
2 changes: 1 addition & 1 deletion ui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -951,7 +951,7 @@ void UI::Cheats() {
}

if (options["cheat_godmode"].value && get_address("god")) {
write_mem_recoverable("god", get_address("god"), "E9 79 01 00 00 90"_gh,
write_mem_recoverable("god", get_address("god"), "E9 71 01 00 00 90"_gh,
true);
} else {
recover_mem("god");
Expand Down

0 comments on commit a47c656

Please sign in to comment.