NO RECOIL ︻デ═一一一 ▸

Posts 115 of 42 · Page 1 of 3
NO RECOIL ︻デ═一一一 ▸
Code:
No recoil address for update 1.3.4: 

0x644FFB

Sig start = 00A45FFB
Sig end = 00A46001
Modulebase = 00401000
Signature = \x74\x3C\x80\x7C\x24\x17\x00
Mask = xxxxxx?

HOW TO UPDATE OUTDATED ADDRESS:
- OPEN GhostReconPhantoms
- OPEN Ollydbg (ollydbg.de)
- FILE - ATTACH - find & select ghostreconphantoms.exe
- CTRL + B - paste this hex/pattern (74 3C 80 7C 24 17)
- TICK SEARCH MODE: "Entire block"
- CONGRATS YOU HAVE FOUND NEW NORECOIL ADDRESS
HOW TO CREATE DLL HACK: mpgh.net/forum/showthread.php?t=559567

SIMPLE HOTKEY BASE C++:
Code:
#include <Windows.h>

#define norecoiladdress 0x644FFB

void norecoil()
{
	while(1)
	{
		if(GetAsyncKeyState(VK_F3)) memcpy((VOID*)norecoiladdress, "\xEB", 1); //ON
		if(GetAsyncKeyState(VK_F4)) memcpy((VOID*)norecoiladdress, "\x75", 1); //OFF
		
		Sleep(250);
	}
}

BOOL WINAPI DllMain(HINSTANCE hModule, DWORD dwReason, LPVOID lpvReserved)
{
	if(dwReason == DLL_PROCESS_ATTACH)
	{
		CreateThread(0, 0, (LPTHREAD_START_ROUTINE)norecoil, 0, 0, 0);
	}
	return TRUE;
}
COMPILE IT AND INJECT!

CREDIT: PICOBELLO
hhhhhhhhh banned just for attaching ghost recon phantom.exe to ollydebg. i didnt know that
Quote Originally Posted by psa47 View Post
hhhhhhhhh banned just for attaching ghost recon phantom.exe to ollydebg. i didnt know that
LOL NOOB! YOU DONT HAVE TO LOGIN YOUR ACCOUNT HHHHHHHHHHHHHHHHHHHHHHHHH !

HERE HOW TO ATTACH GRP TO OLLY:
1. GO TO FOLDER: Program Files (x86)/Steam/steamapps/common/Tom Clancy's Ghost Recon Phantoms NA/Game/NCSA-Live/
2. DOUBLE CLICK GhostReconPhantoms.exe
3. YOU WILL GET ERROR "Please start the game using the launcher"
4. OPEN OLLYDBG
5. ATTACH THE GAME
6. PROFIT

I HAD BEEN DOING IT FOR 2 MONTHS, NO BAN

*EDIT: I REMEMBER WEEKS AGO I ATTACHED GRP TO OLLY ONCE THROUGH LAUNCHER AFTER LOGIN MY ACCOUNT & NO BAN UNTIL TODAY. I THINK YOU JUST POST SHIT HERE AND LIE, YOU ****** HHHHHHHHHHHHHHHHHHH
Quote Originally Posted by Ubisoft****** View Post
LOL NOOB! YOU DONT HAVE TO LOGIN YOUR ACCOUNT HHHHHHHHHHHHHHHHHHHHHHHHH !

HERE HOW TO ATTACH GRP TO OLLY:
1. GO TO FOLDER: Program Files (x86)/Steam/steamapps/common/Tom Clancy's Ghost Recon Phantoms NA/Game/NCSA-Live/
2. DOUBLE CLICK GhostReconPhantoms.exe
3. YOU WILL GET ERROR "Please start the game using the launcher"
4. OPEN OLLYDBG
5. ATTACH THE GAME
6. PROFIT

I HAD BEEN DOING IT FOR 2 MONTHS, NO BAN

*EDIT: I REMEMBER WEEKS AGO I ATTACHED GRP TO OLLY ONCE THROUGH LAUNCHER AFTER LOGIN MY ACCOUNT & NO BAN UNTIL TODAY. I THINK YOU JUST POST SHIT HERE AND LIE, YOU ****** HHHHHHHHHHHHHHHHHHH
wow bro,use cheat engine, make an auto assemble script. why follow such a long method every time. If you want i can post a sig that runs the game directly and doesnot give error. altough any noob can see that in the exe. lol.

Just search for the error that occurs in olly and make a the exe jump over the error.
Quote Originally Posted by fire100 View Post
wow bro,use cheat engine, make an auto assemble script. why follow such a long method every time. If you want i can post a sig that runs the game directly and doesnot give error. altough any noob can see that in the exe. lol.

Just search for the error that occurs in olly and make a the exe jump over the error.
WHAT YOU MEAN BY LONG METHOD EVERY TIME???

OPEN GRP + OLLY + SIGMAKER = ALL THESE UNDER A MINUTE.

ONCE YOU GET THE SIGNATURE/PATTERN, CODE IT IN YOUR HACK WITH FINDPATTERN AND MAKE IT UNPATCHABLE FOREVER.
Quote Originally Posted by Ubisoft****** View Post
LOL NOOB! YOU DONT HAVE TO LOGIN YOUR ACCOUNT HHHHHHHHHHHHHHHHHHHHHHHHH !

HERE HOW TO ATTACH GRP TO OLLY:
1. GO TO FOLDER: Program Files (x86)/Steam/steamapps/common/Tom Clancy's Ghost Recon Phantoms NA/Game/NCSA-Live/
2. DOUBLE CLICK GhostReconPhantoms.exe
3. YOU WILL GET ERROR "Please start the game using the launcher"
4. OPEN OLLYDBG
5. ATTACH THE GAME
6. PROFIT

I HAD BEEN DOING IT FOR 2 MONTHS, NO BAN

*EDIT: I REMEMBER WEEKS AGO I ATTACHED GRP TO OLLY ONCE THROUGH LAUNCHER AFTER LOGIN MY ACCOUNT & NO BAN UNTIL TODAY. I THINK YOU JUST POST SHIT HERE AND LIE, YOU ****** HHHHHHHHHHHHHHHHHHH
can you pls create a video how to use ?
Keep calm, he don't even know what this code does.
You go to redefine a memory address by entering in some areas excess data, so processing takes longer, but it could result in some processes a sudden crash.
Keep calm, he don't even know what this code does.
You go to redefine a memory address by entering in some areas excess data, so processing takes longer, but it could result in some processes a sudden crash.

Solution:
Reduce sleep time, dear ignorant.
Thanks for the update Ubisoft******
Do I have to change something in this code?


#include <Windows.h>

#define norecoiladdress 0x644FFB

void norecoil()
{
while(1)
{
if(GetAsyncKeyState(VK_F3)) memcpy((VOID*)norecoiladdress, "\xEB", 1); //ON
if(GetAsyncKeyState(VK_F4)) memcpy((VOID*)norecoiladdress, "\x75", 1); //OFF

Sleep(250);
}
}

BOOL WINAPI DllMain(HINSTANCE hModule, DWORD dwReason, LPVOID lpvReserved)
{
if(dwReason == DLL_PROCESS_ATTACH)
{
CreateThread(0, 0, (LPTHREAD_START_ROUTINE)norecoil, 0, 0, 0);
}
return TRUE;
}
Quote Originally Posted by xenononex View Post
Do I have to change something in this code?


#include <Windows.h>

#define norecoiladdress 0x644FFB

void norecoil()
{
while(1)
{
if(GetAsyncKeyState(VK_F3)) memcpy((VOID*)norecoiladdress, "\xEB", 1); //ON
if(GetAsyncKeyState(VK_F4)) memcpy((VOID*)norecoiladdress, "\x75", 1); //OFF

Sleep(250);
}
}

BOOL WINAPI DllMain(HINSTANCE hModule, DWORD dwReason, LPVOID lpvReserved)
{
if(dwReason == DLL_PROCESS_ATTACH)
{
CreateThread(0, 0, (LPTHREAD_START_ROUTINE)norecoil, 0, 0, 0);
}
return TRUE;
}
Sleep(250);
I said all.
I've got 1 more question I am bad in programming but where did he get these numbers?

0x644FFB
xEB'', 1)
x75", 1)
Quote Originally Posted by xenononex View Post
I've got 1 more question I am bad in programming but where did he get these numbers?

0x644FFB
xEB'', 1)
x75", 1)
At this point do nothing. Close all that you are doing. Use a hack already created.
but when this code will get outdated, how can I update it?

- - - Updated - - -

that's what I've got http://prntscr.com/6e8k21

- - - Updated - - -

is this gone work on EU?
Oh, a noobie copied it from UC, wow, you're sooooooo skilled I can't even believe u lil skiddie.
Posts 115 of 42 · Page 1 of 3

Post a Reply

Similar Threads

Tags for this Thread

Need help?