-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Pointer scan to locate EDF6 patch points Adjust current patches to work for EDF6 EGS Switch initialization to CPP_OnBoot, initterm is in EDF.dll's DllMain Use C++17 for LightningScanner Don't add Mods folder hook if std::wstring::assign is missing Fix debug builds failing Fix game crashing if a problem occurs in the ModLoader Should only crash now if system winmm.dll fails to load Workaround LightningScanner bug if AOB scan fails Fix missing labels for aob/alloc commands failure
- Loading branch information
1 parent
d3788d8
commit ec25e19
Showing
7 changed files
with
139 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
; Author: demonized and redone | ||
2C7709: u32! 128 ; Maximum pickups on a map at once. Default 128 | ||
aob maxOnMap 288000000089 | ||
aob maxMission1 00040000735B | ||
aob maxMission2 00040000730EFF | ||
|
||
2C737A: u32! 1024 ;Maximum pickups per mission. Default 1024 | ||
2C73C7: u32! 1024 ;Synchronize with above value | ||
maxOnMap+1: u32! 128 ; Maximum pickups on a map at once. Default 128 | ||
|
||
maxMission1: u32! 1024 ;Maximum pickups per mission. Default 1024 | ||
maxMission2: u32! 1024 ;Synchronize with above value |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
; Author: BlueAmulet | ||
702CC2: 90 E9 | ||
aob EOSCheck 200F845E | ||
EOSCheck+1: 90 E9 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
; Author: Souzooka | ||
71E4A2: 90 E9 | ||
aob ChatFilter 604885C90F84BF | ||
ChatFilter+4: 90 E9 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters