diff --git a/Patcher/ExtraPatches/ChangePickupLimits.txt b/Patcher/ExtraPatches/ChangePickupLimits.txt new file mode 100644 index 0000000..48326cd --- /dev/null +++ b/Patcher/ExtraPatches/ChangePickupLimits.txt @@ -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 \ No newline at end of file diff --git a/Patcher/Patches/IncreaseChatLimit.txt b/Patcher/Patches/IncreaseChatLimit.txt index 1ee64b1..5976658 100644 --- a/Patcher/Patches/IncreaseChatLimit.txt +++ b/Patcher/Patches/IncreaseChatLimit.txt @@ -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) \ No newline at end of file +; 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 \ No newline at end of file diff --git a/Patcher/README.md b/Patcher/README.md index 1f7b991..ae408a4 100644 --- a/Patcher/README.md +++ b/Patcher/README.md @@ -36,10 +36,10 @@ The following types are supported: ## Default Patches These patches are included and active by default. -### IncreaseChatLimit (by Souzooka) +### IncreaseChatLimit (by BlueAmulet, based on Souzooka's patch) IncreaseChatLimit increases the chat character limit from 32 to 128 characters. The limit can be increased up to 255 if desired. -Based on this [guide](https://steamcommunity.com/sharedfiles/filedetails/?id=1814868040) by Souzooka, ported to Patcher by BlueAmulet +Based on this [guide](https://steamcommunity.com/sharedfiles/filedetails/?id=1814868040) by Souzooka, variant by BlueAmulet ### RemoveChatCensor (by Souzooka) RemoveChatCensor removes chat censorship on your messages, and the messages that other players post.