Page 8 of 8 FirstFirst ... 678
Results 106 to 119 of 119
  1. #106
    qq250463's Avatar
    Join Date
    Jun 2017
    Gender
    male
    Posts
    20
    Reputation
    10
    Thanks
    0
    I am a novice, after reading the source code roughly, I would like to modify it as you suggested, but found that some variables do not exist.
    DWORD dwLocalPlayer; //will be scanned
    DWORD dwEntityList; //will be scanned
    DWORD dwGlow; //will be scanned

    DWORD dwTeam = 0xF4;
    DWORD dwDormant = 0xED;
    dwTeam & dwDormant has been modified.

    update_local_player();
    update_entity_list();
    update_glow();
    In addition, if I force the assignment of these variables, should I cancel the execution of these three functions? My English is a little poor, I hope you can answer my questions.

  2. #107
    davidoukos's Avatar
    Join Date
    Jan 2019
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    Can someone change it so it works health based? or how we can change the colors!

  3. #108
    KF1337's Avatar
    Join Date
    Apr 2019
    Gender
    male
    Posts
    35
    Reputation
    10
    Thanks
    2
    My Mood
    Bored

    Question

    Quote Originally Posted by Sandwich View Post


    1. Open the solution in Visual Studio
    2. Locate and update the offsets
    Code:
    //3-7-19
    ClientState = 0x58BCFC;
    LocalPlayer = 0xCCB774;
    EntityList = 0x4CDC19C;
    GlowObjectManager = 0x521C388;
    GlowIndex = 0xA3F8;
    Team = 0xF4;
    Health = 0x100;
    Dormant = 0xED;
    3. Press CRTL + SHIFT + B
    4. Open the executable
    5. Have fun
    Updated LocalPlayer, EntityList, Team and Dormant. I assume now that i hardcoded the offsets into the code i could delete the whole offset class?
    Code:
    class offset
    {
    private:
    	static void update_local_player() {
    		DWORD lpStart = mem->FindPatternArray(modClient.dwBase, modClient.dwSize, "xxx????xx????xxxxx?", 19, 0x8D, 0x34, 0x85, 0x0, 0x0, 0x0, 0x0, 0x89, 0x15, 0x0, 0x0, 0x0, 0x0, 0x8B, 0x41, 0x8, 0x8B, 0x48, 0x0);
    		DWORD lpP1 = mem->Read<DWORD>(lpStart + 3);
    		BYTE lpP2 = mem->Read<BYTE>(lpStart + 18);
    		dwLocalPlayer = (lpP1 + lpP2) - modClient.dwBase;
    	}
    
    	static void update_entity_list() {
    		DWORD elStart = mem->FindPatternArray(modClient.dwBase, modClient.dwSize, "x????xx?xxx", 11, 0x5, 0x0, 0x0, 0x0, 0x0, 0xC1, 0xE9, 0x0, 0x39, 0x48, 0x4);
    		DWORD elP1 = mem->Read<DWORD>(elStart + 1);
    		BYTE elP2 = mem->Read<BYTE>(elStart + 7);
    		dwEntityList = (elP1 + elP2) - modClient.dwBase;
    	}
    
    	static void update_glow() {
    		DWORD gpStart = mem->FindPatternArray(modClient.dwBase, modClient.dwSize, "xxx????xxxxx????????", 20, 0x0F, 0x11, 0x05, 0x0, 0x0, 0x0, 0x0, 0x83, 0xC8, 0x01, 0xC7, 0x05, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0);
    		dwGlow = mem->Read<DWORD>(gpStart + 3) - modClient.dwBase;
    	}
    
    public:
    	static void get_offset(process* m) {
    		mem = m;
    		modClient = mem->GetModule("client.dll");
    		update_local_player();
    		update_entity_list();
    		update_glow();
    	}
    
    	//constantly scanning & updating our offsets
    	static DWORD WINAPI scan_offsets(LPVOID PARAM)
    	{
    		Entity players[64];
    		while (true) {
    			Sleep(1);
    			DWORD playerBase = memory.Read<DWORD>(GetClientModule()->dwBase + dwLocalPlayer);
    			int cp = 0;
    
    			update_entity_data(&me, playerBase);
    			for (int i = 1; i < 64; i++) {
    				DWORD entBase = memory.Read<DWORD>((GetClientModule()->dwBase + dwEntityList) + i * 0x10);
    
    				if (entBase == NULL)
    					continue;
    
    				update_entity_data(&players[cp], entBase);
    
    				cp++;
    			}
    
    			int cf = 0, ce = 0;
    
    			for (int i = 0; i < cp; i++) {
    				if (players[i].team == me.team) {
    					entFriendlies[cf] = players[i];
    					cf++;
    				}
    				else {
    					entEnemies[ce] = players[i];
    					ce++;
    				}
    			}
    
    			iEnemies = ce;
    			iFriendlies = cf;
    		}
    	}
    };
    Second question: where do i find the clientstate offset in this code as well as the GlowIndex? As a beginner i can't quite see it.

    EDIT:
    Offsets were outdated aswell as i just recognized LOL
    I had to get new offsets with hazedumper and hardcoded them into the source.
    Also: client.dll has to be replaced with client_panorama.dll.
    Its working now! (in -insecure mode though).

    EDIT2:
    Was able to play on Valve DM Servers without an instant ban.
    Last edited by KF1337; 04-28-2019 at 10:55 AM.

  4. #109
    elbio12's Avatar
    Join Date
    Jul 2016
    Gender
    male
    Posts
    24
    Reputation
    10
    Thanks
    0
    work again??

  5. #110
    Sandwich's Avatar
    Join Date
    Mar 2014
    Gender
    male
    Location
    client_panorama.dll
    Posts
    1,512
    Reputation
    98
    Thanks
    23,162
    My Mood
    Psychedelic
    Quote Originally Posted by KF1337 View Post
    EDIT:
    Offsets were outdated aswell as i just recognized LOL
    I had to get new offsets with hazedumper and hardcoded them into the source.
    Also: client.dll has to be replaced with client_panorama.dll.
    Its working now! (in -insecure mode though).

    EDIT2:
    Was able to play on Valve DM Servers without an instant ban.
    Awesome job!

  6. The Following User Says Thank You to Sandwich For This Useful Post:

    KF1337 (04-29-2019)

  7. #111
    KF1337's Avatar
    Join Date
    Apr 2019
    Gender
    male
    Posts
    35
    Reputation
    10
    Thanks
    2
    My Mood
    Bored
    Quote Originally Posted by Sandwich View Post


    Awesome job!
    Thanks! Feeling like Neo seeing through the Matrix for the first time

    Also your posts in this one and other threads were quite helpful, so thanks a lot again.

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

    Sandwich (04-29-2019)

  9. #112
    minhtran1112's Avatar
    Join Date
    May 2019
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    where's exe file? i dont know this code

  10. #113
    KF1337's Avatar
    Join Date
    Apr 2019
    Gender
    male
    Posts
    35
    Reputation
    10
    Thanks
    2
    My Mood
    Bored
    Well you have to know C++ for this. There is no .exe



  11. #114
    asuna039's Avatar
    Join Date
    Nov 2017
    Gender
    female
    Posts
    1
    Reputation
    10
    Thanks
    0
    how to compile and what is compile wtf is this cheat im so confused

  12. #115
    KF1337's Avatar
    Join Date
    Apr 2019
    Gender
    male
    Posts
    35
    Reputation
    10
    Thanks
    2
    My Mood
    Bored
    Quote Originally Posted by asuna039 View Post
    how to compile and what is compile wtf is this cheat im so confused
    It's easy.
    Learn CPP.
    Learn VS17.

    Ctrl+Shift+B.



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

    Future (01-05-2020)

  14. #116
    Future's Avatar
    Join Date
    Oct 2015
    Gender
    male
    Location
    Skies of blue
    Posts
    1,299
    Reputation
    428
    Thanks
    14,336
    This cheat is easy to maintance. Just make sure to update offsets once in a while.
    MPGH's Rules | Marketplace | How IM works | Report Scam Attempt
    In case you need me : IM | PM

    Middleman from 29/01/2021 - present
    Minion+ from 12/04/2020 - present.
    Minion from 09/01/2020 - 12/04/2020.
    MPGH News Force from 02/11/2019 - not sure anymore.
    Resource Team from 02/11/2019 - 12/04/2020.
    Premium Member since 16/09/2019.
    Member since 13/10/2015.


  15. #117
    esenkaa's Avatar
    Join Date
    Oct 2015
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    Where can find last offsets , thanks in advance

  16. #118
    KF1337's Avatar
    Join Date
    Apr 2019
    Gender
    male
    Posts
    35
    Reputation
    10
    Thanks
    2
    My Mood
    Bored
    You can use "hazedumper" for this.



  17. #119
    LASTBOSS312's Avatar
    Join Date
    Mar 2016
    Gender
    male
    Posts
    10
    Reputation
    10
    Thanks
    1
    this is not working anymore ,
    is there someone get the idea?

Page 8 of 8 FirstFirst ... 678

Similar Threads

  1. [Tutorial] C++ Glow ESP Source (automatically updates offsets)
    By ZER0MEM0RY in forum Counter-Strike 2 Coding & Resources
    Replies: 47
    Last Post: 12-07-2018, 07:20 PM
  2. [Patched] "465" | External | Glow ESP & Radar
    By VanityF in forum Counter-Strike 2 Hacks
    Replies: 10
    Last Post: 12-09-2016, 12:02 AM
  3. [Request] Old glow esp source
    By HexMurder in forum Counter-Strike 2 Coding & Resources
    Replies: 3
    Last Post: 03-25-2016, 12:33 PM
  4. [Outdated] Nexcat - just an external [ Glow ESP/ Triggerbot/ Bunnyhop ]
    By nexcat in forum Counter-Strike 2 Hacks
    Replies: 20
    Last Post: 03-19-2016, 04:12 PM
  5. [Outdated] Internal / External Glow ESP + Radar.
    By viking911 in forum Counter-Strike 2 Hacks
    Replies: 18
    Last Post: 02-21-2016, 02:50 AM

Tags for this Thread