From a78fe0572e1a3378811dbaae89b892fbc6847716 Mon Sep 17 00:00:00 2001 From: ChrisMiuchiz Date: Wed, 11 Sep 2019 21:45:36 -0400 Subject: [PATCH] working on cube 64 --- CubeModLauncher/main.cpp | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/CubeModLauncher/main.cpp b/CubeModLauncher/main.cpp index ce6fde3..efbcd95 100644 --- a/CubeModLauncher/main.cpp +++ b/CubeModLauncher/main.cpp @@ -6,7 +6,7 @@ #include "crc.h" #define CUBE_VERSION "1.0.0-0" -#define CUBE_CRC 0x6AFF99F7 +#define CUBE_CRC 0xDC91320A using namespace std; @@ -18,7 +18,6 @@ bool FileExists(const char* fileName) { int main() { vector modDLLs; - //Cube world is obviously required if (!FileExists("Cube.exe")){ printf("Cube World not found.\n"); @@ -75,16 +74,15 @@ int main() //Inject DLLs - vector threads; for (string S_DLLName : modDLLs){ printf("Loading %s\n", S_DLLName.c_str()); process.InjectDLL(S_DLLName); } - process.Run(); - printf("\nAll available mods have been loaded.\n"); Sleep(1500); + process.Run(); + Sleep(3000); return 0; }