I just downloaded topblast v1.1 menu base and planned on usin it for my new hack but it has a weired ptc method. it doesnt say anything about what address it uses and i was wondering if anyone knew.
Code:
void __cdecl PushToConsole(char* sVal, float value)
{
	if (Ready(PTC) ){
		DWORD zAddress = WHAT ADDRESS GOES HERE;
		void* szConsole = (void*)*(DWORD*)(zAddress);

		char fullcommand[50];
		sprintf(fullcommand, "%s %d", sVal, value); // Credit to Void (my idea :D)
		_asm
		{
			push fullcommand;	This is a command input
			call szConsole;		
			add esp, 4
		}
	}
}