-
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.
Add new variant of chat limit patch Add example patch for changing various pickup limits
- Loading branch information
1 parent
b7673f7
commit bb6bb4c
Showing
3 changed files
with
11 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
; Author: BlueAmulet | ||
198599: u32! 128 ; Maximum number of pickups on a map at one time. Default 128 | ||
|
||
1990CC: u32! 1024 ;Maximum number of pickups per mission. Default 1024 | ||
1990EC: 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,3 +1,4 @@ | ||
; Author: Souzooka | ||
491480: B0[80]0F B6 C0 90 ; Maximum amount of characters in chat message. Default 0x80 (128) | ||
49546E: 41 B8[A8 02 00 00]90 44 89 86 40 09 00 00 ; Width of the chat dialog. Default 0x2A8 (680) | ||
; Author: BlueAmulet, inspired by Souzooka's chat length patch | ||
495465: 31 C9 90 | ||
49546A: u32! 680 ; Width of the text input dialog. Default 400 | ||
4FCF38: u8! 128 ; Maximum amount of characters in chat message. Default 32 |
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