Results 1 to 7 of 7
  1. #1
    xboxhax's Avatar
    Join Date
    Apr 2017
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0

    Looking for a dll base

    I'm bringing my Xbox knowledge to PC. I'm just looking for a DLL base that is ready for my start hooking stuff.

  2. #2
    Silent's Avatar
    Join Date
    Jan 2015
    Gender
    male
    Location
    Melbourne, Australia
    Posts
    5,070
    Reputation
    2172
    Thanks
    8,474
    My Mood
    Bitchy
    You mean a memory class? You can find one in my signature
    Click Here to visit the official MPGH wiki! Keep up with the latest news and information on games and MPGH! To check out pages dedicated to games, see the links below!











    dd/mm/yyyy
    Member - 31/01/2015
    Premium - 12/09/2016
    Call of Duty minion - 05/11/2016 - 05/11/2019
    BattleOn minion - 28/02/2017 - 05/11/2019
    Battlefield minion - 30/05/2017 - 05/11/2019
    Other Semi-Popular First Person Shooter Hacks minion - 21/09/2017 - 17/09/2019
    Publicist - 07/11/2017 - 02/08/2018
    Cock Sucker - 01/12/2017 - Unknown
    Minion+ - 06/03/2018 - 05/11/2019
    Fortnite minion - 08/05/2018 - 05/11/2019
    Head Publicist - 08/10/2018 - 10/01/2020
    Developer Team - 26/10/2019 - 10/01/2020
    Former Staff - 10/01/2020



  3. #3
    affe2626's Avatar
    Join Date
    Apr 2015
    Gender
    male
    Location
    Sweden
    Posts
    552
    Reputation
    146
    Thanks
    151
    My Mood
    Angelic
    Quote Originally Posted by JamesBond View Post
    You mean a memory class? You can find one in my signature
    Using memory classes for DLL's (internals) is retarded. I mean you can just write to memory like this:
    Code:
    *(int*)(dwPlayerBase + HealthOffset) = 9999;
    and read from memory like this:
    Code:
    int myHealth = *(int*)(dwPlayerBase + HealthOffset);
    I think he wants a hooking base.

    @OP I haven't really looked in to MW3 that much but I think that you should be fine just hooking the game with jumphooks (Jump to your function in the middle of a game function). As for a base, write your own as I don't think many bases exists. The player's size is 38EC bytes large in hexadecimals. One strange thing that differs from other games like Counter Strike is that you have the position offset: 0x01C2945C and the player offset is 38EC * index instead of having a entitylist and adding offsets onto the entities bases' like [[[iw5mp.exe + dwEntityList] + 0x38EC * index] + positionoffset] where as "positionoffset" is usually a small number like 0x104 you do it like this:
    Code:
    Vector3 CEntity::Pos()
    {
    	return *(Vector3*)(DWORD(Offsets::Pos + (this->m_nIndex * 0x38EC)));
    }
    I don't know if this is normal as I'm new to gamehacking and coding but it's a bit different from other games that I've tried to hack.

    A very small "base" I wrote
    Code:
    class CEntity
    {
    public:
    	DWORD Base = 0;
    	int m_nIndex = 0;
    	Vector3 Pos();
    	void GiveNoclip();
    	CEntity::CEntity(int nIndex);
    	void CEntity::SetPos(Vector3 Position);
    	void CEntity::SetUAV();
    };
    
    CEntity::CEntity(int nIndex)
    {
    	this->m_nIndex = nIndex;
    	this->Base = Modules::dwBase + 0x38EC * nIndex;
    }
    
    void CEntity::GiveNoclip()
    {
    
    }
    
    Vector3 CEntity::Pos()
    {
    	return *(Vector3*)(DWORD(Offsets::Pos + (this->m_nIndex * 0x38EC)));
    }
    
    void CEntity::SetPos(Vector3 Position)
    {
    	*(Vector3*)(DWORD(Offsets::Pos + (this->m_nIndex * 0x38EC))) = Position;
    }
    
    void CEntity::SetUAV()
    {
    	*(int*)(DWORD(Offsets::UAV + (this->m_nIndex * 0x38EC))) = 1;
    }
    
    
    namespace Offsets
    {
    	DWORD Lazer = 0x47CDF6;
    	DWORD Stats = 0x18E1078;
    	DWORD Pos = 0x01C2945C;
    	DWORD Fov = 0x59E4EC4;
    	DWORD UAV = 0x1C2C8BC;
    	DWORD ViewAngles = 0x1061C84;
    
    }
    
    
    void GiveNoclip(int nIndex)
    {
    	0x01C2C778 + 0x38EC * nIndex;
    }
    
    int nGetLocalIndex()
    {
    	return *(int*)0x08FD0F0;
    }
    
    bool bIsInGame()
    {
    	return *(bool*)0x08DBD84;
    }
    
    void ForceHost()
    {
    	*(int*)(0xC + *(int*)0x132FD24) = 1;
    }
    
    void SetFov(float FOV)
    {
    	*(float*)Offsets::Fov = FOV;
    }
    The CEntity::GiveUAV() is for yourself. I made this very fast and there's probably shit not working.


    Example of hack (aimbot is not working but teleport(host-only) and UAV does work):
    Code:
    while (!bIsInGame())
    		{
    			ForceHost();
    			Sleep(10);
    		}
    		pLocal = new CEntity(nGetLocalIndex());
    		if (GetAsyncKeyState(VK_INSERT) & 1)
    			savedPos = pLocal->Pos();
    		if (GetAsyncKeyState(VK_HOME) & 1)
    		{
    			pLocal->SetPos(savedPos);
    		}
    		SetFov(80);
    		pLocal->SetUAV();
    		Sleep(1);
    		for (int i = 0; i < 18; i++)
    		{
    			CEntity *pEntity = new CEntity(i);
    			if (pEntity->m_nIndex = pLocal->m_nIndex)
    				continue;
    			
    			Vector3 AimbotAngle = CalcAngle(pLocal->Pos(), pEntity->Pos());
    			if (!AimbotAngle.bIsZero())
    				SetViewAngles(AimbotAngle);
    		}
    Last edited by affe2626; 05-30-2017 at 08:56 AM.

    Always PM me when trading, I've been hacked on my Skype previously
    [img]https://**********.com/addskype/affe2626.png[/img]

  4. #4
    Silent's Avatar
    Join Date
    Jan 2015
    Gender
    male
    Location
    Melbourne, Australia
    Posts
    5,070
    Reputation
    2172
    Thanks
    8,474
    My Mood
    Bitchy
    Quote Originally Posted by affe2626 View Post
    Using memory classes for DLL's (internals) is retarded
    From my little understanding, People who make cheats for consoles, don't make them internal, that would require great knowledge of the architecture specifically used for said console(doubt it has a gcc compiler), and when he said dll, he meant dependency for an external program which connects to the consoles' jtag.
    Click Here to visit the official MPGH wiki! Keep up with the latest news and information on games and MPGH! To check out pages dedicated to games, see the links below!











    dd/mm/yyyy
    Member - 31/01/2015
    Premium - 12/09/2016
    Call of Duty minion - 05/11/2016 - 05/11/2019
    BattleOn minion - 28/02/2017 - 05/11/2019
    Battlefield minion - 30/05/2017 - 05/11/2019
    Other Semi-Popular First Person Shooter Hacks minion - 21/09/2017 - 17/09/2019
    Publicist - 07/11/2017 - 02/08/2018
    Cock Sucker - 01/12/2017 - Unknown
    Minion+ - 06/03/2018 - 05/11/2019
    Fortnite minion - 08/05/2018 - 05/11/2019
    Head Publicist - 08/10/2018 - 10/01/2020
    Developer Team - 26/10/2019 - 10/01/2020
    Former Staff - 10/01/2020



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

    CrypticMods (05-30-2017)

  6. #5
    affe2626's Avatar
    Join Date
    Apr 2015
    Gender
    male
    Location
    Sweden
    Posts
    552
    Reputation
    146
    Thanks
    151
    My Mood
    Angelic
    Quote Originally Posted by JamesBond View Post


    From my little understanding, People who make cheats for consoles, don't make them internal, that would require great knowledge of the architecture specifically used for said console(doubt it has a gcc compiler), and when he said dll, he meant dependency for an external program which connects to the consoles' jtag.
    I'm bringing my Xbox knowledge to PC.
    Yeah, but it looks like he's gonna play on PC, not Xbox.

    Always PM me when trading, I've been hacked on my Skype previously
    [img]https://**********.com/addskype/affe2626.png[/img]

  7. #6
    Silent's Avatar
    Join Date
    Jan 2015
    Gender
    male
    Location
    Melbourne, Australia
    Posts
    5,070
    Reputation
    2172
    Thanks
    8,474
    My Mood
    Bitchy
    Quote Originally Posted by affe2626 View Post
    Yeah, but it looks like he's gonna play on PC, not Xbox.
    Click Here to visit the official MPGH wiki! Keep up with the latest news and information on games and MPGH! To check out pages dedicated to games, see the links below!











    dd/mm/yyyy
    Member - 31/01/2015
    Premium - 12/09/2016
    Call of Duty minion - 05/11/2016 - 05/11/2019
    BattleOn minion - 28/02/2017 - 05/11/2019
    Battlefield minion - 30/05/2017 - 05/11/2019
    Other Semi-Popular First Person Shooter Hacks minion - 21/09/2017 - 17/09/2019
    Publicist - 07/11/2017 - 02/08/2018
    Cock Sucker - 01/12/2017 - Unknown
    Minion+ - 06/03/2018 - 05/11/2019
    Fortnite minion - 08/05/2018 - 05/11/2019
    Head Publicist - 08/10/2018 - 10/01/2020
    Developer Team - 26/10/2019 - 10/01/2020
    Former Staff - 10/01/2020



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

    CrypticMods (05-30-2017)

  9. #7
    affe2626's Avatar
    Join Date
    Apr 2015
    Gender
    male
    Location
    Sweden
    Posts
    552
    Reputation
    146
    Thanks
    151
    My Mood
    Angelic
    Quote Originally Posted by JamesBond View Post


    Do you mean yourself or me? I'm feeling a bit retarded lol

    Always PM me when trading, I've been hacked on my Skype previously
    [img]https://**********.com/addskype/affe2626.png[/img]

Similar Threads

  1. Looking for good .dll injector.
    By Schnorpa in forum Member Introduction & Return
    Replies: 21
    Last Post: 01-19-2013, 06:13 AM
  2. Looking for private, subscription based bypass.
    By hobjeebjob in forum DayZ Mod & Standalone Hacks & Cheats
    Replies: 2
    Last Post: 11-01-2012, 11:06 PM
  3. Looking for three text based tutorials
    By Lehsyrus in forum Programming Tutorial Requests
    Replies: 4
    Last Post: 10-23-2012, 08:42 AM
  4. [Solved] Idk where to look for hack dlls
    By bulldog959 in forum CrossFire Help
    Replies: 9
    Last Post: 09-17-2012, 05:16 AM
  5. [Request] Looking for A .dll that has most of hacks listed below.
    By domocorn in forum Combat Arms Mod Request
    Replies: 0
    Last Post: 07-17-2012, 05:52 PM