[Help]Send Command To Console Function
hey guys i need some help from you cause i want to make a send command to console function xD
but im not pro so i get an error!
Which is:
GAME CRASH!
Well i tried to use the hahaz's function that i saw here, but its the same

Now im using this:
Code:
static DWORD sndTc = 0x4CA0F0;
void SendCommand(char *command)
{
_asm{
push command
push 1
call sndTc
}
}
As i said above im not pro so please don't be so rude like other persons do.

[html]DWORD dwCall = MelEngine.Cmd;
__asm
{
PUSH dCmd;
PUSH 0;
PUSH 0;
CALL dwCall;
ADD ESP, 0x0C;
}[/html]
Enjoy Yourself.
Same Thing, Mine just uses a SigScan.
~Sighs.
You need everything done for you don't yas ?
[html]void SendCommandToConsole(char * dCmd)
{
DWORD dwCall = 0x4CA0F0;
__asm
{
PUSH dCmd;
PUSH 0;
PUSH 0;
CALL dwCall;
ADD ESP, 0x0C;
}
}
[/html]
That's what I Meant was good for you.
WELL!
THANKS A LOT!!!!
I WILL NEVER FORGET YOUR HELP!
if i hoocked IDirect3DDevice9::EndScene()
can i use you function of inputing commands?