Can we please get on topic? This isnt helping me at all.
RunConsoleCommand is a CLTClient member function, so either call it from the class or reference it directly with a function pointer, as such:
Code:
typedef VOID (WINAPIV *tRunConsoleCommand) (const char *);
tRunConsoleCommand RunConsoleCommand = (tRunConsoleCommand) 0x490610 //RunConsoleCommand address (Why do people call it LTClientEXE?)
//And how to call it
RunConsoleCommand("+SkelModelStencil 1");
i don't know why you are passing the integer....
EDIT: It also depends what commands you are running from RCC, IIRC if you call NoFog then you will crash. What commands are you passing to RCC?
Originally Posted by Timboy67678
RunConsoleCommand is a CLTClient member function, so either call it from the class or reference it directly with a function pointer, as such:
EDIT: It also depends what commands you are running from RCC, IIRC if you call NoFog then you will crash. What commands are you passing to RCC?
This still isn't working. No matter what I try it crashes. I have tried everything I could think of. I also used your example and it crashed. Then I encrypted it and tried, then it still crashed.
Originally Posted by Skaterforeva1
This still isn't working. No matter what I try it crashes. I have tried everything I could think of. I also used your example and it crashed. Then I encrypted it and tried, then it still crashed.
which commands are you using with RCC?
Originally Posted by Timboy67678
which commands are you using with RCC?
"SkelModelStencil 1"
"WindowMode 1"
I was trying to use "+FullBright 1" but I figured out a different way to do that.
Originally Posted by Skaterforeva1
"SkelModelStencil 1"
"WindowMode 1"
I was trying to use "+FullBright 1" but I figured out a different way to do that.
you do know that calling SkelModelStencil without the little plus sign will crash you, as it detects it without the plus sign, Silly i know, but what do you expect from dumbic stoodios.
just call it like so: RunConsoleCommand("+SkelModelStencil 1");
Originally Posted by Timboy67678
you do know that calling SkelModelStencil without the little plus sign will crash you, as it detects it without the plus sign, Silly i know, but what do you expect from dumbic stoodios.
just call it like so: RunConsoleCommand("+SkelModelStencil 1");
Still crashes. I honestly have no idea why. Everything else works fine.
Originally Posted by Skaterforeva1
Still crashes. I honestly have no idea why. Everything else works fine.
are you encrypting your strings?
Originally Posted by Timboy67678
are you encrypting your strings?
Yes, I have everything encrypted.
Originally Posted by J
Come on man. You have to encrypt your strings, else the hack will be detected after a minute.
Don't just do SetConsoleVariable("+SkelModelStencil 1");