Skip to content

Commit

Permalink
1.2.1 just more excludes
Browse files Browse the repository at this point in the history
  • Loading branch information
user95401 committed Dec 21, 2023
1 parent 76c7ff9 commit 862ccd0
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ cmake_policy(SET CMP0057 NEW)

project ("ONEMR_Loader")
set(developer "user95401")
set(version "v1.2.0")
set(version "v1.2.1")
set(description "load dlls in all ur game directory")
set(repository "https://github.com/user95401/ONEMR_Loader")
set(issues_url "https://discord.gg/89VGJH6QQg")
Expand Down
Binary file modified ONEMR_Loader_dist.zip
Binary file not shown.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ Made with curly-eureka, only for Windows.
- geode
- minhook
- MinHook
- websockets.dll
- msvcp
- msvcr

## Install for geode
put .geode file to GeometryDash/geode/mods
Expand Down
Binary file modified geode/release/user95401.ONEMR_Loader.geode
Binary file not shown.
7 changes: 5 additions & 2 deletions src/_main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,11 @@ DWORD WINAPI LoadMods(void* hModule) {
bool loadit = false;
if (entry.path().extension().string() == std::string(".dll")) loadit = true;//is dll
if (strstr(entry.path().string().c_str(), "geode")) loadit = false;//in geode/unzipped
if (strstr(entry.path().string().c_str(), "minhook")) loadit = false;//minhook.
if (strstr(entry.path().string().c_str(), "MinHook")) loadit = false;//MinHook.
if (strstr(entry.path().string().c_str(), "minhook")) loadit = false;//minhook
if (strstr(entry.path().string().c_str(), "MinHook")) loadit = false;//MinHook
if (strstr(entry.path().string().c_str(), "websockets.dll")) loadit = false;//websockets.dll
if (strstr(entry.path().string().c_str(), "msvcp")) loadit = false;//msvcp
if (strstr(entry.path().string().c_str(), "msvcr")) loadit = false;//msvcr
if (GetModuleHandleA(entry.path().string().c_str())) loadit = false;
if (loadit) {
Sleep(10);
Expand Down
Binary file modified src/version.rc
Binary file not shown.

0 comments on commit 862ccd0

Please sign in to comment.