Results 1 to 10 of 10
  1. #1
    mamain2016's Avatar
    Join Date
    Nov 2016
    Gender
    male
    Posts
    21
    Reputation
    10
    Thanks
    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.

  2. #2
    malfac009's Avatar
    Join Date
    May 2016
    Gender
    male
    Posts
    68
    Reputation
    10
    Thanks
    15
    My Mood
    Cheeky
    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

  3. The Following User Says Thank You to malfac009 For This Useful Post:

    mamain2016 (07-07-2020)

  4. #3
    Bodvar's Avatar
    Join Date
    Nov 2013
    Gender
    male
    Location
    Blank
    Posts
    2,893
    Reputation
    734
    Thanks
    1,324
    @mamain2016 and @malfac009 , please use IM as a contact method, outside contact methods are currently not allowed

    minion: 2019-yes
    minion+: 2020-2022
    inactive as shit sorry boys

  5. The Following User Says Thank You to Bodvar For This Useful Post:

    mamain2016 (07-09-2020)

  6. #4
    TheGe2k's Avatar
    Join Date
    Mar 2020
    Gender
    male
    Posts
    58
    Reputation
    31
    Thanks
    269
    My Mood
    Cynical
    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...


  7. #5
    mamain2016's Avatar
    Join Date
    Nov 2016
    Gender
    male
    Posts
    21
    Reputation
    10
    Thanks
    1
    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.

  8. The Following User Says Thank You to mamain2016 For This Useful Post:

    Bodvar (07-12-2020)

  9. #6
    heythem96's Avatar
    Join Date
    Oct 2015
    Gender
    male
    Posts
    5
    Reputation
    10
    Thanks
    0
    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

  10. #7
    vaisefud3's Avatar
    Join Date
    Jun 2017
    Gender
    male
    Posts
    955
    Reputation
    10
    Thanks
    150
    My Mood
    Bored
    Quote Originally Posted by heythem96 View Post
    Is there a CF NA
    yeah, but I think it's called cf west these days
    Last edited by vaisefud3; 07-13-2020 at 03:25 PM.

  11. #8
    mamain2016's Avatar
    Join Date
    Nov 2016
    Gender
    male
    Posts
    21
    Reputation
    10
    Thanks
    1
    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!

  12. #9
    malfac009's Avatar
    Join Date
    May 2016
    Gender
    male
    Posts
    68
    Reputation
    10
    Thanks
    15
    My Mood
    Cheeky
    @mamain2016

    here is the latest one on CFPH :0x118D8A0

    Also I have made a Private Conversation to you check your inbox

  13. The Following User Says Thank You to malfac009 For This Useful Post:

    mamain2016 (07-22-2020)

  14. #10
    mamain2016's Avatar
    Join Date
    Nov 2016
    Gender
    male
    Posts
    21
    Reputation
    10
    Thanks
    1
    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!

Similar Threads

  1. [Request] Looking for someone who specialist on making cheat engine hacks
    By alanrl05 in forum Trainers and Cheats
    Replies: 1
    Last Post: 12-04-2018, 07:59 AM
  2. Looking for someone who specialist on making cheat engine hacks.
    By alanrl05 in forum Reverse Engineering
    Replies: 3
    Last Post: 12-04-2018, 07:58 AM
  3. [Solved] Looking for ways to use cheat engine on AVA
    By MannyPacquiao in forum Alliance of Valiant Arms (AVA) Help
    Replies: 9
    Last Post: 11-02-2013, 03:48 PM
  4. [Help Request] // Need a Tutorial for 1 Hit Kill [OHK] using Cheat engine Only ?? //
    By AlvinGenius in forum Alliance of Valiant Arms (AVA) Help
    Replies: 19
    Last Post: 10-14-2012, 10:56 AM
  5. [Tutorial] Using Cheat Engine for MW2 Challenges
    By adstar82 in forum Call of Duty Modern Warfare 2 Tutorials
    Replies: 6
    Last Post: 01-01-2010, 08:41 PM