Coder Social home page Coder Social logo

crush-crush-cheat's Introduction

Hello, I am Omega and welcome to my GitHub profile.

  • I make game hacks/cheats and mods for single player/non-competitive games as well as other random tools and things
  • Iโ€™m looking to collaborate on any project where you think my skills might be helpful
  • Contact me:
    • Discord: @omega172 (If you contact me here my first message to you will most likely be "Reason for add?"
    • Email: [email protected]

Check out my framework

My stats

Top Langs Top Langs

crush-crush-cheat's People

Contributors

omega172 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

crush-crush-cheat's Issues

identifier is undefinied

#pragma once
#include <MinHook.h>

#define CreateHook(a) \
	checkStatus(#a, MH_CreateHook(a, &h ## a, reinterpret_cast<LPVOID*>(&o ## a)), "Created");

#define EnableHook(a) \
	checkStatus(#a, MH_EnableHook(a), "Enabled");

#define DisableHook(a) \
	checkStatus(#a, MH_DisableHook(a), "Disabled");

#define HOOK_DEF(a, b, c) \
	typedef a (*t ## b) c; \
	static inline t ## b o ## b = NULL; \
	static a h ## b ## c

inline bool checkStatus(std::string name, MH_STATUS status, std::string reason)
{
	if (status != MH_ERROR_ALREADY_CREATED && status != MH_ERROR_ALREADY_INITIALIZED)
		return true;

	if (status != MH_OK)
	{
		cout << "Error: " << MH_StatusToString(status) << endl;
		return false;
	}
	else
		cout << MH_StatusToString(status) << endl;

	return true;
}

/* Example:
inline void* pAlbumClassInstance = nullptr;
void* Album_Update = nullptr;

Album_Update = mono.GetCompiledMethod("Album", "Update", 0);
if (Album_Update == nullptr)
	return;

CreateHook(Album_Update);
EnableHook(Album_Update);

HOOK_DEF(void, Album_Update, (void* __this))
{
	// Do stuff

	pAlbumClassInstance = __this;
	return oAlbum_Update(__this);
}
*/

Idk why, but this header is always show this error "identifier any_function is undefinied"!!! Need help!!!

Flawless, Could use another cheat though.

Works as expected but if possible could there be a cheat added to unlock the three jobs locked behind a paywall?
Otherwise diamonds, speed manipulator and instant phone message all work perfectly.

Thanks!
image_2024-06-02_001017966

in-app purchases

Can it be updated to have free in-app purchases or unlock the content within?(peanut dx date)

Where is the .dll file? Or how do I get it?

I downloaded everything, and I don't get any .dll file, just a .sln file. I downloaded all the dependencies and restarted. Looked at every folder and no .dll, maybe I am asking a silly question because I was looking for a solution everywhere and Im the only one with this issue. So please, if anyone knows, please tell me, thank you.

I injected the dll but it doesnt work

I used process hacker 2 as suggested in the blush blush cheat but when I inject the dll nothing happens when I press insert, and the dll is not in the modules of the process. I'm using the latest release and playing in the steam version. I also installed all dependecies.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.