question on PTC commands...
i've been teachin myself C++ lately so i can start making DLL injectable hacks
my question on PTC is this...
some PTC Commands you see when u dump CShell.dll look like this (i put em in PTC format just cuz)
PushToConsole("TestBleedingFX "0.000000");
when i put the PTC command in my DLL program, can i put it in like any other PTC...
PushToConsole("TestBleedingFX 0.000000");
or does it have to be
PushToConsole("TestBleedingFX "0.000000");
you will be thanked when i get an answer
it should be just like this
PushToConsole("TestBleedingFX 0.000000");