Memory CQC Prone [Addie + Source]

Posts 16 of 6 · Page 1 of 1
Memory CQC Prone [Addie + Source]
I was bored so I decided to release my Memory CQC Prone source + address. This is for a menu but can easily be used in a NoMenu with some changes.

Place this where ever you put your addies:
#define ADR_CQCPRONE 0x8A9840
Place this where ever you put your states:
int sProne = 0;
Place this where ever you put your hack functions at:
{
switch(sProne)
{
case 1:if(GetAsyncKeyState('C'))
{
*(int*)(ADR_CQCPRONE) = 3;break;
}
}
}
If used, wouldn't mind a little credit.

BTW: I know their is no need for break after last case but I forgot to remove it.
Oh I can use it in nomenu, this is good fuctions. CQC Prome is the BEST.
Looks great.
@Terell. Thanks @SizeMan yeah, very fun to use, no one expects it and I barely see it in any hacks
You can also make it more simply as

Code:
void Hacks();
{
*(DWORD*) ADR_BLABLA = 10000;
}
Auto change

or with hotkey
Code:
void hack();
{
if(GetAsyncKeyState('C')) 
{
*(DWORD*) ADR_BLABLA = 10000;
}
}
Posts 16 of 6 · Page 1 of 1
This thread is closed for replies.

Similar Threads

Tags for this Thread

None

Need help?