Results 1 to 11 of 11
  1. #1
    X3renox's Avatar
    Join Date
    Feb 2021
    Gender
    male
    Posts
    21
    Reputation
    10
    Thanks
    0

    Glow source code

    Hay Guys why my code give me error while inject it i use it in x32

    Code:
    typedef void(WINAPI* oGlowESP)(bool value);
    #define GlowAddr 0x00B54DB0
    
    void functions()
    {
        
        DWORD dwCShell = (DWORD)GetModuleHandleA("CShell.dll");
        oGlowESP pSetGlowColor = (oGlowESP)((DWORD)dwCShell + GlowAddr);
    
        if( Variable[ 2 ] )
        {
    
            pSetGlowColor(true);
    
        }
        else
        {
            pSetGlowColor(false);
    
        }
    
    }

  2. #2
    winiciosrocha's Avatar
    Join Date
    Mar 2017
    Gender
    male
    Posts
    50
    Reputation
    10
    Thanks
    2
    try this 0xB54DB0

  3. #3
    X3renox's Avatar
    Join Date
    Feb 2021
    Gender
    male
    Posts
    21
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by winiciosrocha View Post
    try this 0xB54DB0
    same it gives me error Do you want to report Sad

  4. #4
    raichfighter22's Avatar
    Join Date
    Oct 2020
    Gender
    male
    Posts
    7
    Reputation
    10
    Thanks
    1

    Red face

    [QUOTE=X3renox;15076124]same it gives me error Do you want to report Sad

    Last edited by raichfighter22; 03-07-2021 at 05:47 AM.

  5. #5
    KNXN's Avatar
    Join Date
    Mar 2021
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    Code:
    void CHacks::Glow()
    {
    	oGlowColor GlowFn = (oGlowColor)(CEngine::get()->GetCShell() + 0xB05DE0); // CF PH
    	if (!IsBadReadPtr(GlowFn, 4) && GlowFn != nullptr && GlowFn != NULL)
    	{
    		if (CVars::get()->glow)
    		{
    			GlowFn(true);
    		}
    		else
    		{
    			GlowFn(false);
    		}
    	}
    }
    Last edited by KNXN; 03-07-2021 at 01:44 AM.

  6. #6
    X3renox's Avatar
    Join Date
    Feb 2021
    Gender
    male
    Posts
    21
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by raichfighter22 View Post
    call me on disc0rd. I will pass on the last glowESP code that I made anti-ban. Disc: dspallkg# 5615
    ok i will send to you. give me error when i send it`s wrong you can send to me XahmedX_YT#4990

    - - - Updated - - -

    Quote Originally Posted by KNXN View Post
    Code:
    void CHacks::Glow()
    {
    	oGlowColor GlowFn = (oGlowColor)(CEngine::get()->GetCShell() + 0xB05DE0); // CF PH
    	if (!IsBadReadPtr(GlowFn, 4) && GlowFn != nullptr && GlowFn != NULL)
    	{
    		if (CVars::get()->glow)
    		{
    			GlowFn(true);
    		}
    		else
    		{
    			GlowFn(false);
    		}
    	}
    }
    doesnt work :/
    Last edited by X3renox; 03-07-2021 at 02:33 AM.

  7. #7
    DarkArtistry02's Avatar
    Join Date
    Oct 2020
    Gender
    male
    Posts
    11
    Reputation
    10
    Thanks
    0
    My Mood
    Amazed
    Quote Originally Posted by X3renox View Post
    Hay Guys why my code give me error while inject it i use it in x32

    Code:
    typedef void(WINAPI* oGlowESP)(bool value);
    #define GlowAddr 0x00B54DB0
    
    void functions()
    {
        
        DWORD dwCShell = (DWORD)GetModuleHandleA("CShell.dll");
        oGlowESP pSetGlowColor = (oGlowESP)((DWORD)dwCShell + GlowAddr);
    
        if( Variable[ 2 ] )
        {
    
            pSetGlowColor(true);
    
        }
        else
        {
            pSetGlowColor(false);
    
        }
    
    }
    Can you send me the CShell I'll try to find it

  8. #8
    SpiderEater420's Avatar
    Join Date
    Jan 2021
    Gender
    male
    Posts
    18
    Reputation
    10
    Thanks
    2

    This is a pretty easy fix

    Code:
    void GlowFixed()
    {
        #define GlowAddr69420 0xB9B3D0
        auto CShell = (DWORD)GetModuleHandleA("CShell.dll");
        typedef void(WINAPI* oGlowESP)(bool value);
        oGlowESP pSetGlowColor = (oGlowESP)((DWORD)CShell + GlowAddr69420);
    
        if( Variable[ 2 ] )
        {
    
            pSetGlowColor(true);
    
        }
        else
        {
            pSetGlowColor(false);
    
        }
    
    }
    Should work now!

  9. The Following User Says Thank You to SpiderEater420 For This Useful Post:

    X3renox (03-07-2021)

  10. #9
    vaisefud3's Avatar
    Join Date
    Jun 2017
    Gender
    male
    Posts
    955
    Reputation
    10
    Thanks
    150
    My Mood
    Bored
    Quote Originally Posted by SpiderEater420 View Post
    Code:
    void GlowFixed()
    {
        #define GlowAddr69420 0xB9B3D0
        auto CShell = (DWORD)GetModuleHandleA("CShell.dll");
        typedef void(WINAPI* oGlowESP)(bool value);
        oGlowESP pSetGlowColor = (oGlowESP)((DWORD)CShell + GlowAddr69420);
    
        if( Variable[ 2 ] )
        {
    
            pSetGlowColor(true);
    
        }
        else
        {
            pSetGlowColor(false);
    
        }
    
    }
    Should work now!
    nice performance drop using this function every frame

  11. #10
    Anger5K's Avatar
    Join Date
    May 2020
    Gender
    male
    Posts
    151
    Reputation
    10
    Thanks
    70
    My Mood
    Lurking
    Quote Originally Posted by X3renox View Post
    Hay Guys why my code give me error while inject it i use it in x32

    Code:
    typedef void(WINAPI* oGlowESP)(bool value);
    #define GlowAddr 0x00B54DB0
    
    void functions()
    {
        
        DWORD dwCShell = (DWORD)GetModuleHandleA("CShell.dll");
        oGlowESP pSetGlowColor = (oGlowESP)((DWORD)dwCShell + GlowAddr);
    
        if( Variable[ 2 ] )
        {
    
            pSetGlowColor(true);
    
        }
        else
        {
            pSetGlowColor(false);
    
        }
    
    }
    my bro address glow wrong try add this and become working 0xB9B3D0
    Enjoy and have fun
    My Own Hack!!!



  12. The Following User Says Thank You to Anger5K For This Useful Post:

    X3renox (03-07-2021)

  13. #11
    X3renox's Avatar
    Join Date
    Feb 2021
    Gender
    male
    Posts
    21
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by vaisefud3 View Post
    nice performance drop using this function every frame
    thank you for helping but , i detect that the menu was the problem not my code :'D

    - - - Updated - - -

    Quote Originally Posted by SpiderEater420 View Post
    Code:
    void GlowFixed()
    {
        #define GlowAddr69420 0xB9B3D0
        auto CShell = (DWORD)GetModuleHandleA("CShell.dll");
        typedef void(WINAPI* oGlowESP)(bool value);
        oGlowESP pSetGlowColor = (oGlowESP)((DWORD)CShell + GlowAddr69420);
    
        if( Variable[ 2 ] )
        {
    
            pSetGlowColor(true);
    
        }
        else
        {
            pSetGlowColor(false);
    
        }
    
    }
    Should work now!
    thank you for helping but , i detect that the menu was the problem not my code :'D

Similar Threads

  1. [Outdated] polyLight v1.0 // Aimbot, Glow, Trigger, Auto FFA // source code
    By voziak in forum Counter-Strike 2 Hacks
    Replies: 38
    Last Post: 09-20-2016, 03:02 PM
  2. [Detected] [Source code + Compile] m3mer external v1.4 | Aimbot | Trigger | Radar | Bhop | Glow
    By cdrizzle in forum Counter-Strike 2 Hacks
    Replies: 74
    Last Post: 10-29-2015, 04:11 PM
  3. [Release] ****** DLL Source Code
    By OneWhoSighs in forum WarRock - International Hacks
    Replies: 20
    Last Post: 10-25-2007, 07:41 AM
  4. keylogger source code
    By obsedianpk in forum WarRock - International Hacks
    Replies: 8
    Last Post: 10-24-2007, 02:31 PM
  5. HALO 2 (XBOX) Source Code
    By mirelesmichael in forum General Game Hacking
    Replies: 12
    Last Post: 09-23-2006, 04:35 AM