Results 1 to 6 of 6
  1. #1
    zakwanhero019's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    70
    Reputation
    10
    Thanks
    14
    My Mood
    Relaxed

    Anybody Can post work C++ code ?

    I want try make dll myself

  2. #2
    failnoobgamer's Avatar
    Join Date
    Dec 2014
    Gender
    male
    Location
    china #1
    Posts
    533
    Reputation
    10
    Thanks
    5,880
    My Mood
    Happy
    Look through in Blackshot Source Code section, there are already a lot of basic source code you need for DLL.

  3. #3
    Coder.ExCrysis³'s Avatar
    Join Date
    Apr 2016
    Gender
    male
    Location
    multiplay_sg.dll
    Posts
    248
    Reputation
    10
    Thanks
    86
    My Mood
    Yeehaw
    WTF do you think, almost all hacks are patched now, just try t find the address yourself and find the source and replace the address line to your own address

  4. #4
    Minerva's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Posts
    2,152
    Reputation
    380
    Thanks
    7,740
    My Mood
    Relaxed
    Quote Originally Posted by zakwanhero019 View Post
    I want try make dll myself
    OFC:

    Code:
    #include <windows.h>
    
    void __stdcall Main()
    {
    	while(true)
          {
             if(GetAsyncKeyState(VK_INSERT)&1)
    	    {
    		*(DWORD*)0x101E15B0 = 999;
    		*(DWORD*)0x101E13B4 = 255;
    
    		Sleep(50);
                 }
    	}
    }
    
    bool __stdcall DllMain(HINSTANCE hModule, DWORD dwAttached, LPVOID lpvReserved)
    {
    	DisableThreadLibraryCalls(hModule);
    
    	if(dwAttached == 1)
    	{
    		CreateThread(0,0,(LPTHREAD_START_ROUTINE)&Main,0,0,0);
    	}
    	
    	return TRUE;
    }
    Credits: Source section MPGH.
    https://www.mpgh.net/forum/showthread.php?t=899380

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

    Aprediz_do_hamilton (05-29-2016)

  6. #5
    Coder.ExCrysis³'s Avatar
    Join Date
    Apr 2016
    Gender
    male
    Location
    multiplay_sg.dll
    Posts
    248
    Reputation
    10
    Thanks
    86
    My Mood
    Yeehaw
    Quote Originally Posted by Minerva View Post


    OFC:

    Code:
    #include <windows.h>
    
    void __stdcall Main()
    {
    	while(true)
          {
             if(GetAsyncKeyState(VK_INSERT)&1)
    	    {
    		*(DWORD*)0x101E15B0 = 999;
    		*(DWORD*)0x101E13B4 = 255;
    
    		Sleep(50);
                 }
    	}
    }
    
    bool __stdcall DllMain(HINSTANCE hModule, DWORD dwAttached, LPVOID lpvReserved)
    {
    	DisableThreadLibraryCalls(hModule);
    
    	if(dwAttached == 1)
    	{
    		CreateThread(0,0,(LPTHREAD_START_ROUTINE)&Main,0,0,0);
    	}
    	
    	return TRUE;
    }
    Credits: Source section MPGH.
    https://www.mpgh.net/forum/showthread.php?t=899380
    For HP?

  7. #6
    zakwanhero019's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    70
    Reputation
    10
    Thanks
    14
    My Mood
    Relaxed
    Quote Originally Posted by Minerva View Post


    OFC:

    Code:
    #include <windows.h>
    
    void __stdcall Main()
    {
    	while(true)
          {
             if(GetAsyncKeyState(VK_INSERT)&1)
    	    {
    		*(DWORD*)0x101E15B0 = 999;
    		*(DWORD*)0x101E13B4 = 255;
    
    		Sleep(50);
                 }
    	}
    }
    
    bool __stdcall DllMain(HINSTANCE hModule, DWORD dwAttached, LPVOID lpvReserved)
    {
    	DisableThreadLibraryCalls(hModule);
    
    	if(dwAttached == 1)
    	{
    		CreateThread(0,0,(LPTHREAD_START_ROUTINE)&Main,0,0,0);
    	}
    	
    	return TRUE;
    }
    Credits: Source section MPGH.
    https://www.mpgh.net/forum/showthread.php?t=899380
    Thanks You

Similar Threads

  1. [Help] Can someone help me work this code
    By Jordyr in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 8
    Last Post: 09-25-2011, 11:55 AM
  2. [Solved] Can someone post work source code?
    By gta4 in forum CrossFire Help
    Replies: 3
    Last Post: 09-06-2011, 03:43 PM
  3. Can som 1 post working wh or aim bot
    By emptyss in forum Combat Arms Hacks & Cheats
    Replies: 3
    Last Post: 10-13-2008, 03:50 PM
  4. Working chams.. and heaps of other hacks. for free! checking if i can post
    By bomberau in forum Combat Arms Hacks & Cheats
    Replies: 38
    Last Post: 10-08-2008, 08:38 PM
  5. Working chams...need to know if i can post it
    By death_lord in forum Combat Arms Hacks & Cheats
    Replies: 20
    Last Post: 10-08-2008, 01:42 PM