Looking for "WallArray" without using Cheat Engine

Posts 1–10 of 10 · Page 1 of 1
Looking for "WallArray" without using Cheat Engine
Good day guys!

Is there anyway I can find "WallArray" address in OLLYDBG or IDA? Instead of cheat engine?

Thank you so much in advance!

Anyway, I'm doing hacks for CF PH, it seems like on some other country, there are few players only. But in Philippines, there are a lot of players there even some places in my country is lockdown the game is very alive.
You may use this :
//Crossfire.exe
AOB
Code:
B9 ?? ?? ?? ?? E8 ?? ?? ?? ?? 68 ?? ?? ?? ?? E8 ?? ?? ?? ?? 83 C4 04 E9 ?? ?? ?? ??
can be use like this :

Code:
CGameCon* pGameCon = (CGameCon*)(0x118D8B0);//CFPH

	if ((hAsusWallHack) /*&& (GameStatus == 11)*/)
	{
		if (difftime(time(0), last_run_) > 25)
		{
			if (hAsusWallHack)
				pGameCon->WallHack = 0;
			else
				pGameCon->WallHack = 16777217;			
		}
	}
	else
	{
		last_run_ = time(0);
		pGameCon->WallHack = 16777217;		
         }
Class
Code:
class CGameCon
{
public:
	char pad_0000[16]; //0x0000
	int32_t PhatomLight; //0x0010 value 50
	char pad_0014[144]; //0x0014
	int32_t WallHack; //0x00A4 original value 16777217
	char pad_00A8[12]; //0x00A8	
}; //Size: 0x1078
Quote Originally Posted by malfac009 View Post
You may use this :
//Crossfire.exe
AOB
Code:
B9 ?? ?? ?? ?? E8 ?? ?? ?? ?? 68 ?? ?? ?? ?? E8 ?? ?? ?? ?? 83 C4 04 E9 ?? ?? ?? ??
can be use like this :

Code:
CGameCon* pGameCon = (CGameCon*)(0x118D8B0);//CFPH

	if ((hAsusWallHack) /*&& (GameStatus == 11)*/)
	{
		if (difftime(time(0), last_run_) > 25)
		{
			if (hAsusWallHack)
				pGameCon->WallHack = 0;
			else
				pGameCon->WallHack = 16777217;			
		}
	}
	else
	{
		last_run_ = time(0);
		pGameCon->WallHack = 16777217;		
         }
Class
Code:
class CGameCon
{
public:
	char pad_0000[16]; //0x0000
	int32_t PhatomLight; //0x0010 value 50
	char pad_0014[144]; //0x0014
	int32_t WallHack; //0x00A4 original value 16777217
	char pad_00A8[12]; //0x00A8	
}; //Size: 0x1078

Causes Client Error 18_4
You can use this:
Code:
if (/*Your Variable*/)
	{
		*(BYTE*)(ADDR_WallArray + 0xA7) = 256;
	}
	else
	{
		*(BYTE*)(ADDR_WallArray + 0xA7) = 257;
	}
Array of Bytes:
Code:
FF 34 85 ?? ?? ?? ?? 6A ?? 56 52 FF 91 ?? ?? ?? ?? 8B 44 24 ?? B9 ( Crossfire.exe Module )
I don't know owner of code, but AOB(Array of Bytes) credit to me.

Let me prof if it Works...

Quote Originally Posted by malfac009 View Post
You may use this :
//Crossfire.exe
AOB
Code:
B9 ?? ?? ?? ?? E8 ?? ?? ?? ?? 68 ?? ?? ?? ?? E8 ?? ?? ?? ?? 83 C4 04 E9 ?? ?? ?? ??
can be use like this :

Code:
CGameCon* pGameCon = (CGameCon*)(0x118D8B0);//CFPH

	if ((hAsusWallHack) /*&& (GameStatus == 11)*/)
	{
		if (difftime(time(0), last_run_) > 25)
		{
			if (hAsusWallHack)
				pGameCon->WallHack = 0;
			else
				pGameCon->WallHack = 16777217;			
		}
	}
	else
	{
		last_run_ = time(0);
		pGameCon->WallHack = 16777217;		
         }
Class
Code:
class CGameCon
{
public:
	char pad_0000[16]; //0x0000
	int32_t PhatomLight; //0x0010 value 50
	char pad_0014[144]; //0x0014
	int32_t WallHack; //0x00A4 original value 16777217
	char pad_00A8[12]; //0x00A8	
}; //Size: 0x1078
Is there a CF NA
@mamain2016 and @malfac009 , please use IM as a contact method, outside contact methods are currently not allowed
Quote Originally Posted by Bodvar View Post
@mamain2016 and @malfac009 , please use IM as a contact method, outside contact methods are currently not allowed
This is noted. Thank you for letting us know.

- - - Updated - - -

Quote Originally Posted by malfac009 View Post
You may use this :
//Crossfire.exe
AOB
Code:
B9 ?? ?? ?? ?? E8 ?? ?? ?? ?? 68 ?? ?? ?? ?? E8 ?? ?? ?? ?? 83 C4 04 E9 ?? ?? ?? ??
can be use like this :

Code:
CGameCon* pGameCon = (CGameCon*)(0x118D8B0);//CFPH

	if ((hAsusWallHack) /*&& (GameStatus == 11)*/)
	{
		if (difftime(time(0), last_run_) > 25)
		{
			if (hAsusWallHack)
				pGameCon->WallHack = 0;
			else
				pGameCon->WallHack = 16777217;			
		}
	}
	else
	{
		last_run_ = time(0);
		pGameCon->WallHack = 16777217;		
         }
Class
Code:
class CGameCon
{
public:
	char pad_0000[16]; //0x0000
	int32_t PhatomLight; //0x0010 value 50
	char pad_0014[144]; //0x0014
	int32_t WallHack; //0x00A4 original value 16777217
	char pad_00A8[12]; //0x00A8	
}; //Size: 0x1078
Hey, just a quick question and hopefully, you can help me please. How are you able to find the "0x118D8B0" address?
I really want to know how to find them. Thank you so much.
Quote Originally Posted by heythem96 View Post
Is there a CF NA
yeah, but I think it's called cf west these days
Hey malfac, can you please tell me how did you found this?
B9 ?? ?? ?? ?? E8 ?? ?? ?? ?? 68 ?? ?? ?? ?? E8 ?? ?? ?? ?? 83 C4 04 E9 ?? ?? ?? ??

And how you came up with this address "0x118D8B0", I'm kinda desperate. Hopefully you can response.
I tried searching and followed a tutorial here in MPGH, but it gives me different address instead of "0x118D8B0".
That's the only thing I need so I can release and update my little piece every update. So hopefully you can help me.

Thank you so much in advance!
@mamain2016

here is the latest one on CFPH :0x118D8A0

Also I have made a Private Conversation to you check your inbox
Quote Originally Posted by malfac009 View Post
@mamain2016

here is the latest one on CFPH :0x118D8A0

Also I have made a Private Conversation to you check your inbox
Hi there sir malfac! Yes. That's the latest. I have figured it out yesterday how to find that. Thank you!
Posts 1–10 of 10 · Page 1 of 1

Post a Reply

Similar Threads

Tags for this Thread

None

Need help?