Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions AdjustTheFov/DllMain.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#include <thread>
#include <Windows.h>
#include <xmmintrin.h>

Expand Down Expand Up @@ -33,6 +34,9 @@ void ReadConfig()

DWORD WINAPI MainThread(LPVOID lpParam)
{
using namespace std::chrono_literals;
std::this_thread::sleep_for(5s);

Log("Activating AdjustTheFov...");
std::string aob = "8d ? ? ? ? 0f 28 ? e8 ? ? ? ? 80 ? ? ? ? ? ? ? 0f 28 ? f3 ? 0f 10 ? ? ? ? ? ? 0f 57 ? f3 ? 0f 59";
uintptr_t hookAddress = AobScan(aob);
Expand Down
4 changes: 4 additions & 0 deletions CameraFix/DllMain.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#include <thread>
#include <Windows.h>

#include "ModUtils.h"
Expand Down Expand Up @@ -31,6 +32,9 @@ void ReadConfig()

DWORD WINAPI MainThread(LPVOID lpParam)
{
using namespace std::chrono_literals;
std::this_thread::sleep_for(5s);

Log("Activating camera fixes...");

ReadConfig();
Expand Down
4 changes: 4 additions & 0 deletions DisableRuneLoss/DllMain.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#include <thread>
#include <Windows.h>

#include "ModUtils.h"
Expand All @@ -6,6 +7,9 @@ using namespace ModUtils;

DWORD WINAPI MainThread(LPVOID lpParam)
{
using namespace std::chrono_literals;
std::this_thread::sleep_for(5s);

Log("Activating DisableRuneLoss...");
std::string aob = "b0 01 ? 8b ? e8 ? ? ? ? ? 8b ? ? ? 32 c0 ? 83 ? 28 c3";
std::string expectedBytes = "e8";
Expand Down
4 changes: 4 additions & 0 deletions IncreaseAnimationDistance/DllMain.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#include <thread>
#include <Windows.h>

#include "ModUtils.h"
Expand All @@ -6,6 +7,9 @@ using namespace ModUtils;

DWORD WINAPI MainThread(LPVOID lpParam)
{
using namespace std::chrono_literals;
std::this_thread::sleep_for(5s);

Log("Activating IncreaseAnimationDistance...");
std::string aob = "c7 ? ? ? 01 00 00 00 f3 ? 0f 10 ? ? ? f3 ? 0f 10 ? ? ? f3 0f 59 ? ? ? ? ? ? 0f 28 ? f3 ? 0f 5c ? ? 58";
std::string expectedBytes = "f3 ? 0f 5e ? ? ?";
Expand Down
4 changes: 4 additions & 0 deletions PauseTheGame/DllMain.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#include <thread>
#include <Windows.h>
#include <xinput.h>

Expand Down Expand Up @@ -134,6 +135,9 @@ void ReadConfig()

DWORD WINAPI MainThread(LPVOID lpParam)
{
using namespace std::chrono_literals;
std::this_thread::sleep_for(5s);

Log("Activating PauseTheGame...");
std::string aob = "0f 84 ? ? ? ? c6 ? ? ? ? ? 00 ? 8d ? ? ? ? ? ? 89 ? ? 89 ? ? ? 8b ? ? ? ? ? ? 85 ? 75";
patchAddress = AobScan(aob);
Expand Down
4 changes: 4 additions & 0 deletions RemoveChromaticAberration/DllMain.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#include <thread>
#include <Windows.h>

#include "ModUtils.h"
Expand All @@ -6,6 +7,9 @@ using namespace ModUtils;

DWORD WINAPI MainThread(LPVOID lpParam)
{
using namespace std::chrono_literals;
std::this_thread::sleep_for(5s);

Log("Activating RemoveChromaticAberration...");
std::string aob = "0f 11 ? 60 ? 8d ? 80 00 00 00 0f 10 ? a0 00 00 00 0f 11 ? f0 ? 8d ? b0 00 00 00 0f 10 ? 0f 11 ? 0f 10 ? 10";
std::string expectedBytes = "0f 11 ? ?";
Expand Down
4 changes: 4 additions & 0 deletions RemoveVignette/DllMain.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#include <thread>
#include <Windows.h>

#include "ModUtils.h"
Expand All @@ -6,6 +7,9 @@ using namespace ModUtils;

DWORD WINAPI MainThread(LPVOID lpParam)
{
using namespace std::chrono_literals;
std::this_thread::sleep_for(5s);

Log("Activating RemoveVignette...");
std::string aob = "f3 0f 10 ? 50 f3 0f 59 ? ? ? ? ? e8 ? ? ? ? f3 ? 0f 5c ? f3 ? 0f 59 ? ? 8d ? ? a0 00 00 00";
std::string expectedBytes = "f3 ? 0f 59 ?";
Expand Down
4 changes: 4 additions & 0 deletions UltrawideFix/DllMain.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#include <thread>
#include <Windows.h>

#include "ModUtils.h"
Expand All @@ -6,6 +7,9 @@ using namespace ModUtils;

DWORD WINAPI MainThread(LPVOID lpParam)
{
using namespace std::chrono_literals;
std::this_thread::sleep_for(5s);

Log("Activating ultrawide fix...");
std::string aob = "48 c7 45 b8 fe ff ff ff 48 89 58 10 48 89 70 18 48 89 78 20 0f 29 70 c8 48 8b";
std::string expectedBytes = "74";
Expand Down
4 changes: 4 additions & 0 deletions UnlockTheFps/DllMain.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#include <Windows.h>
#include <algorithm>
#include <thread>

#include "ModUtils.h"

Expand Down Expand Up @@ -28,6 +29,9 @@ void ReadConfig()

DWORD WINAPI MainThread(LPVOID lpParam)
{
using namespace std::chrono_literals;
std::this_thread::sleep_for(5s);

Log("Activating UnlockTheFps...");
{
ReadConfig();
Expand Down