How to use PustToConsole commands? :/

Posts 1–14 of 14 · Page 1 of 1
How to use PustToConsole commands? :/
Hi i see So Much Codes discover for me "think"

like:


C4PlantTime
C4DefuseTime
MaxCanDefuseDistance
JumpVelocity
JumpTime
MovementSpeed
killmiself
WeaponPower
ReloadTime



thinks lie that But i dont know how to use i try to use it like this:

Code:

if (Reloadtime) {
PushToConsole ("ReloadTime 9")
}
else {
PushToConsole ("ReloadTime 1")
}


But Dont Work :/

anyone can help me?
Some of these involve more coding than that, but I don't know i have never used those
i know hot to get that codes from "Cheat engine" and it say all codes!

like

Wireframe
DrawGun
DrawSky
ParticclesPerEmmision

and i think that codes work but we dont know how to use it :/
for these

Code:
DrawGun
DrawSky
The code you would make

Code:
if  (nogun) {
	PushToConsole("DrawGuns 0");
}
else {
	PushToConsole("DrawGuns 1");
}


if  (nosky) {
	PushToConsole("DrawSky 0");
}
else {
	PushToConsole("DrawSky 1");
}
Is that what you are asking?
yeah i know that codes but i want how to code this codes xD like:


C4PlantTime
C4DefuseTime
MaxCanDefuseDistance
JumpVelocity
JumpTime
MovementSpeed
killmiself
WeaponPower
ReloadTime
there is no way to kill ur self, nor maxcandefusedistance.. if u wanted that i think u might have to rez mod but im not sure
MaxCanDefuseDistance can be useb but we dont know maybe "Lauwy *-* xD" But i remenber the "************" hack

that hack have a opttion u can defuse C4 in every part of the map :/

Mayby MaxCanDefuseDistance can be used :/
Code:
#include <windows.h>
#include <iostream>

using namespace std;

void __cdecl PushToConsole(char* szVal ) {
	DWORD dwCShell = (DWORD)GetModuleHandleA("CShell.dll");
	if( dwCShell != NULL )
	{
		DWORD *LTClient = ( DWORD* )( (dwCShell +  0x2AAE80) );
		void* CONoff = ( void* )*( DWORD* )( *LTClient + 0x1F8 );
		_asm
		{
			push szVal;
			call CONoff;
			add esp, 4;
		}
	}
}


DWORD WINAPI hello(LPVOID) {
	while(GetModuleHandleA("CShell.dll") == NULL ) {
	Sleep(100); //100ms
}


	bool ReloadTime = false;



for(;;) {
	__asm pushad;

			if(GetAsyncKeyState(VK_F7)&1) {
				ReloadTime = !ReloadTime;
			}


	if (Reloadtime) {
PushToConsole ("ReloadTime 9")
}
else {
PushToConsole ("ReloadTime 1")
}

			Sleep(100);
			__asm popad;
	}
}

BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
{
	DisableThreadLibraryCalls(hDll);
	if ( dwReason == DLL_PROCESS_ATTACH )
	{
		MessageBoxA(0, "", "Injected", 0);
      
       CreateThread(NULL, NULL,hello, NULL, NULL, NULL);
	}
	return TRUE;
}

so? Hotkey on F7
yeah hotkey on f7 but i prove that code and it dont work :/
NO... i see that codes if u want i gonna show u where are that codes :/
Quote Originally Posted by elmoi0010 View Post
NO... i see that codes if u want i gonna show u where are that codes :/
ENGLISH PLEASE /
xD yeah sorry for mi bad inglish. XD
Posts 1–14 of 14 · Page 1 of 1

Post a Reply

Similar Threads

Tags for this Thread

None

Need help?