• Stars
    star
    116
  • Rank 303,894 (Top 6 %)
  • Language
    C++
  • License
    MIT License
  • Created almost 7 years ago
  • Updated almost 3 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Speedhack coded in C++, inspired by Cheat Engine's own speedhack.

Speedhack

Lightweight speedhacking source. A "speedhack" is a way of manipulating the time of a program, usually used in games, it can slow down, speed up or even hault an entire program.

Usage

To use this, you must have detours express 3.0. Add it to your include directories and link with the library. The code will only have affect internally, to use on other programs, compile as a DLL and inject the it into the target process.

int main(int argc, char *argv[])
{
	Speedhack::Setup();	//call this once
	Speedhack::SetSpeed(0.5); //call this whenever you like

	return 0;
}