From 7c9e95be4739f258ed9be0f7a1805585e072aac0 Mon Sep 17 00:00:00 2001 From: Daylon Janis Date: Mon, 27 Jul 2020 19:04:03 -0400 Subject: [PATCH 1/5] Create README.md --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..a1ac7ba --- /dev/null +++ b/README.md @@ -0,0 +1,14 @@ +# MCCBounceEnable +A program that alters the tick rate of Halo 2 Classic in Halo:MCC to enable super bouncing. +This program utilizes memory pattern searching to ensure that any updates to Halo:MCC will not break this tool. + +[Bounce Demo](https://gfycat.com/totaldarlingcirriped) + +## Warning +This program is not meant to be used with the MCC anticheat. Please ensure that EAC is disabled by selecting the second launch option at runtime. + +## Requirements +.NET Framework 4.6.1 + +## Download +[Download](https://drive.google.com/file/d/1fn04J53QILqpXK5MP5dx_UsxU4VKA3Eh/edit) - Last Updated 7/27/2020 From 0d2181ed6d5ad07f9824628d3b4f2a304100ce79 Mon Sep 17 00:00:00 2001 From: Daylon Janis Date: Mon, 27 Jul 2020 20:02:23 -0400 Subject: [PATCH 2/5] Update README.md --- README.md | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a1ac7ba..e55b8e0 100644 --- a/README.md +++ b/README.md @@ -4,11 +4,16 @@ This program utilizes memory pattern searching to ensure that any updates to Hal [Bounce Demo](https://gfycat.com/totaldarlingcirriped) +## Download +[Download](https://drive.google.com/file/d/1fn04J53QILqpXK5MP5dx_UsxU4VKA3Eh/edit) - Last Updated 7/27/2020 + ## Warning This program is not meant to be used with the MCC anticheat. Please ensure that EAC is disabled by selecting the second launch option at runtime. +### Disclaimer +The following is my analysis of how and why this works the way it does. This has not been confirmed by me personally. +## About +One of the many reasons people play Halo 2 is for the nostalgia of playing the game everyone used to know and love as a kid. In the original Halo 2, the Xbox was capped at 30 frames per second. This meant that the physics engine of the game was also running at 30 ticks per second to match the frame rate. Porting the original game to PC allowed the developers to increase the frame rate and tick rate to 60. This means that the physics engine can match the increased frame rate of 60 frames per second on the Xbox One/PC. Super bounces originally worked because 30 ticks allows for a large enough gap in-between each tick so that if a player hits a surface hard enough and their player falls slightly into a crack of the mesh, the engine will detect this and attempt to "bounce" the player out of the mesh. In certain instances, this can result in the player being bounced very high distances and allows for players to reach parts of the map that aren't normally able to be reached. The increased tick rate of 60 allows for more "checks" per second and it becomes increasingly more difficult to manipulate the physics engine like you were once able to a kid. Dropping the tick rate back down to 30 allows for super bounces to be achieved on PC. + ## Requirements .NET Framework 4.6.1 - -## Download -[Download](https://drive.google.com/file/d/1fn04J53QILqpXK5MP5dx_UsxU4VKA3Eh/edit) - Last Updated 7/27/2020 From c2dd6eb83b80acbfc391a785d487c33efb8f21e4 Mon Sep 17 00:00:00 2001 From: Daylon Janis Date: Mon, 27 Jul 2020 20:09:11 -0400 Subject: [PATCH 3/5] Create LICENSE --- LICENSE | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..fdddb29 --- /dev/null +++ b/LICENSE @@ -0,0 +1,24 @@ +This is free and unencumbered software released into the public domain. + +Anyone is free to copy, modify, publish, use, compile, sell, or +distribute this software, either in source code form or as a compiled +binary, for any purpose, commercial or non-commercial, and by any +means. + +In jurisdictions that recognize copyright laws, the author or authors +of this software dedicate any and all copyright interest in the +software to the public domain. We make this dedication for the benefit +of the public at large and to the detriment of our heirs and +successors. We intend this dedication to be an overt act of +relinquishment in perpetuity of all present and future rights to this +software under copyright law. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR +OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, +ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +OTHER DEALINGS IN THE SOFTWARE. + +For more information, please refer to From 6aa22221c05ceee2d8f69e70a5cea3d0716a21bf Mon Sep 17 00:00:00 2001 From: Daylon Janis Date: Mon, 27 Jul 2020 20:37:55 -0400 Subject: [PATCH 4/5] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index e55b8e0..3944007 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,7 @@ # MCCBounceEnable A program that alters the tick rate of Halo 2 Classic in Halo:MCC to enable super bouncing. This program utilizes memory pattern searching to ensure that any updates to Halo:MCC will not break this tool. +This tool was created after seeing complaints of an existing tool (MCCbounce) that was breaking with hardcoded memory addresses. [Bounce Demo](https://gfycat.com/totaldarlingcirriped) From 8d88b698938a1d744335fd5f0b3df3f5e45325ff Mon Sep 17 00:00:00 2001 From: Daylon Janis Date: Mon, 27 Jul 2020 20:39:44 -0400 Subject: [PATCH 5/5] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 3944007..261a5c6 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,8 @@ # MCCBounceEnable A program that alters the tick rate of Halo 2 Classic in Halo:MCC to enable super bouncing. -This program utilizes memory pattern searching to ensure that any updates to Halo:MCC will not break this tool. +This program utilizes memory pattern matching to ensure that any updates to Halo:MCC will not cause it to malfunction. This tool was created after seeing complaints of an existing tool (MCCbounce) that was breaking with hardcoded memory addresses. +This tool calculates addresses at runtime. [Bounce Demo](https://gfycat.com/totaldarlingcirriped)