InfoWhat programs would i need to pull apart a hack to grab a bhop script?

Posts 1–9 of 9 · Page 1 of 1
What programs would i need to pull apart a hack to grab a bhop script?
Hi, I'm trying to pull apart T_T's 3.0 CSGO Hack (Julia's Beta) to try and extract a (can't reveal my idea) script to have just for myself, but cant seem to find the right program to extract the code. I have tried using 'Universal Extractor', but that wont let me put all the files into 'Resource Hacker'. Just wondering which programs I would need to pull apart an .exe, grab some code, and put it back together as an external .cmd or .exe script. Any help is kindly appreciated and I'll let you know how I'm getting along.

Lol, with Universal Extractor you can extract .rar and .zip files but not .exe files... Its not possible to get the full sourcecode of a program, if that would be possible, everybody would steels everybody's programs. The sourcecode to T_T's hack was released, so look into that one or open all files with Notepad and search with Ctrl/Strg + F for "bunny/bhop/bunnyhop" whatever.
lulwut, VB is a coding language, don't you mean the program Visual Studio?
w/e Im new bro

Thanks Though
was it released in this forum?

- - - Updated - - -

I just went through all of the code and found two instances of the work 'hop' both were bunnyhop and one was for the check box to enable the hack in the menu and the other was

Code:
{
	srand(time(NULL));

	HCRYPTPROV hProvider = 0;

	if (::CryptAcquireContextW(&hProvider, 0, 0, PROV_RSA_FULL, CRYPT_VERIFYCONTEXT | CRYPT_SILENT))
	{
		const DWORD dwLength = 16;
		BYTE pbBuffer[dwLength] = {};
		__asm nop __asm nop __asm nop __asm nop
		if (!::CryptGenRandom(hProvider, dwLength, pbBuffer))
		{
			::CryptReleaseContext(hProvider, 0);
		}
	}


	Shit();
	


	CreateThread(0, 0, (LPTHREAD_START_ROUTINE)MyMainWindow, 0, 0, 0);

	while (!GlobalVariables::ExitCheat)
	{

		Radar->Update();
		CEngine::BunnyHop();
		Sleep(10);
	};
	return TRUE;
}
Not entirely sure what that does, but it seems to have some sort of loop in it. Not sure how exactly he has made it to bind space to a ever spamming middle mouse button though. Thats what is confusing me here....

- - - Updated - - -

From what i have gone through on this forum post [link]http://www.mpgh.net/forum/showthread.php?t=953854&highlight=T_T[/link]
I have gone through all the files that are in this package and still cannot find any mouse3/space/spacebar or any hex referring to a bhop macro button...
while (!GlobalVariables::ExitCheat)
{

Radar->Update();
CEngine::BunnyHop();
Sleep(10);
};
return TRUE;
}

well, while the hack isn't exited the radar keeps updating and in CEngine the BunnyHop loop runs. look into Engine.cpp there you find a voic CEngine::Bunnyhop
Quote Originally Posted by Sen66 View Post
while (!GlobalVariables::ExitCheat)
{

Radar->Update();
CEngine::BunnyHop();
Sleep(10);
};
return TRUE;
}

well, while the hack isn't exited the radar keeps updating and in CEngine the BunnyHop loop runs. look into Engine.cpp there you find a voic CEngine::Bunnyhop
Cheers man, Thanks for the help
y r u proud of being banned more than 100 times lol?
@jkfauvel Cause he likes getting banned Anyways, I think you can find bhop scripts all over the web, you don't necessarily need the T_T bhop script haha
Posts 1–9 of 9 · Page 1 of 1

Post a Reply

Similar Threads

Tags for this Thread

None

Need help?