Introducing MPGH's AIGA. The latest advancement in artificial intelligence. Click here now to learn more!
Page 1 of 2 12 LastLast
Results 1 to 15 of 25
  1. #1
    RuShi's Avatar
    Join Date
    Jan 2016
    Gender
    male
    Location
    File Not Found 404!
    Posts
    2,531
    Reputation
    210
    Thanks
    13,008
    My Mood
    Innocent

    How to create a DLL for Newbie

    Hi , The title say It all . How to create a DLL for Newbie . So, the first thing u need is "Microsoft Visual Studio 2015 / 2013 / 2012 / 2010 / 2008."

    1 - Open your Visual Studio .
    2 - Click File > New > Project > Visual C++ > Win32 Project .
    3 - Name your project [What ever u want]
    4 - Then Click Ok .
    5 - Click Next , Application Type > DLL
    6 - Addition Option > Empty Project .
    7 - Click Finish .
    8 - At solution configuration [behind x86] .
    9 - Change Debug to Release .
    10 - Then Click Project > Properties > General > Character Set .
    11 - Change "Use Unicode Character Set" to "Use Multi-Byte Character Set".
    12 - Now , at solution explorer Right Click at Source Files > Add > New Item > C++ File(.cpp)
    13 - Rename your .cpp to whatever you want .
    14 - Then click Add , Done .

    Now here some source code thats will work for BlackShot SEA . You can copy and paste at all on your .cpp.

    How to build It ?
    -At the top, Click Build > Build Solution .

    Does this DLL work and safe to use ?
    -Yes because the Address and Offset are Updated .

    List of virtual key . Click Here .

    -Instead of copy and paste u need to learn the function and how to find / updated the address .
    -Feel free to copy and paste .

    Have any problem or question ?
    -Reply above .

    Code:
    #include <Windows.h> // Must always include this .
    
    // --- > Address < --- //
    #define ADR_PlayerPointer 0x00A37600  //Player Pointer
    
    // --- > Offset < --- //
    #define OFS_Ghost 0xB8  //Ghost Mode Offset
    
    void HACK()
    {
    	while (1) //While true
    	{
    		if (GetAsyncKeyState(VK_INSERT) & 1)//Set your hotkey
    		{
    			*(BYTE*)(*(DWORD*)(ADR_PlayerPointer) + OFS_Ghost) = 0;//Set your Address and Value
    		}
    	}
    }
    
    BOOL WINAPI DllMain(HMODULE hDll, DWORD dwReason, LPVOID lpReserved)
    {
    	if (dwReason == DLL_PROCESS_ATTACH)//Process Attach
    	{
    		CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)HACK, NULL, NULL, NULL);
    		MessageBoxA(0, "Tutorial how to create DLL for Newbie .", "Themida", MB_YESNO);//Set your MsgBox text and caption
    	}
    	return TRUE;
    }
    Credits : RedHunter , CyraxSector .
    Last edited by Heroes; 12-19-2016 at 02:13 AM.


    MPGH History:
    Member: 02/1/2016
    Contributor: 29/6/2016
    Minion: 25/8/2016
    Former Staff: 07/02/2017
    Minion: 21/9/2017

  2. The Following 5 Users Say Thank You to RuShi For This Useful Post:

    Anju01 (09-05-2016),jomarenot (12-29-2017),Slayinnnn_ (10-09-2018),yashine59fr (04-23-2017),[GM]Luffy (09-13-2016)

  3. #2
    ReseviC's Avatar
    Join Date
    May 2016
    Gender
    male
    Location
    BEClient.dll
    Posts
    354
    Reputation
    10
    Thanks
    3,430
    My Mood
    Busy
    Quote Originally Posted by Akem125zr View Post
    Hi , The title say It all . How to create a DLL for Newbie . So, the first thing u need is "Microsoft Visual Studio 2015 / 2013 / 2012 / 2010 / 2008."

    1 - Open your Visual Studio .
    2 - Click File > New > Project > Visual C++ > Win32 Project .
    3 - Name your project [What ever u want]
    4 - Then Click Ok .
    5 - Click Next , Application Type > DLL
    6 - Addition Option > Empty Project .
    7 - Click Finish .
    8 - At solution configuration [behind x86] .
    9 - Change Debug to Release .
    10 - Then Click Project > Properties > General > Character Set .
    11 - Change "Use Unicode Character Set" to "Use Multi-Byte Character Set".
    12 - Now , at solution explorer Right Click at Source Files > Add > New Item > C++ File(.cpp)
    13 - Rename your .cpp to whatever you want .
    14 - Then click Add , Done .

    Now here some source code thats will work for BlackShot SEA . You can copy and paste at all on your .cpp.

    How to build It ?
    -At the top, Click Build > Build Solution .

    Does this DLL work and safe to use ?
    -Yes because the Address and Offset are Updated .

    -Instead of copy and paste u need to learn the function and how to find / updated the address .
    -Feel free to copy and paste .

    Have any problem or question ?
    -Reply above .

    Code:
    #include <Windows.h> // Must always include this .
    
    // --- > Address < --- //
    #define ADR_PlayerPointer 0x00A37600  //Player Pointer
    
    // --- > Offset < --- //
    #define OFS_Ghost 0xB8  //Ghost Mode Offset
    
    void HACK()
    {
    	while (1) //While true
    	{
    		if (GetAsyncKeyState(VK_INSERT) & 1)//Set your hotkey
    		{
    			*(float*)(ADR_PlayerPointer + OFS_Ghost) = 0.0f;//Set your Address and Value
    		}
    	}
    }
    
    BOOL WINAPI DllMain(HMODULE hDll, DWORD dwReason, LPVOID lpReserved)
    {
    	if (dwReason == DLL_PROCESS_ATTACH)//Process Attach
    	{
    		CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)HACK, NULL, NULL, NULL);
    		MessageBoxA(0, "Tutorial how to create DLL for Newbie .", "Themida", MB_YESNO);//Set your MsgBox text and caption
    	}
    	return TRUE;
    }
    Credits : RedHunter , CyraxSector .
    You did great ! keep it up

  4. The Following User Says Thank You to ReseviC For This Useful Post:

    jhoowqwe (08-01-2016)

  5. #3
    abdallah1963's Avatar
    Join Date
    Jul 2016
    Gender
    male
    Posts
    16
    Reputation
    10
    Thanks
    0
    Explain how video

    - - - Updated - - -

    To understand it better

  6. #4
    popadapy's Avatar
    Join Date
    Feb 2016
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    0
    do u have anything to contact u ? bcouse im not understand

  7. #5
    ananth121's Avatar
    Join Date
    Feb 2016
    Gender
    male
    Posts
    5
    Reputation
    10
    Thanks
    0
    My Mood
    Amazed
    Good Tutorial

  8. #6
    RuShi's Avatar
    Join Date
    Jan 2016
    Gender
    male
    Location
    File Not Found 404!
    Posts
    2,531
    Reputation
    210
    Thanks
    13,008
    My Mood
    Innocent
    Quote Originally Posted by abdallah1963 View Post
    Explain how video

    - - - Updated - - -

    To understand it better
    Yeah , I know Its better but Im buzy so I only came with text tutorial . If u have Visual Studio just follow the step .

    - - - Updated - - -

    Quote Originally Posted by popadapy View Post
    do u have anything to contact u ? bcouse im not understand
    You already have Visual Studio ? If NO , download It first. If YES , just follow the step . Also copy and paste that source code below.


    MPGH History:
    Member: 02/1/2016
    Contributor: 29/6/2016
    Minion: 25/8/2016
    Former Staff: 07/02/2017
    Minion: 21/9/2017

  9. #7
    popadapy's Avatar
    Join Date
    Feb 2016
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    0
    yes .. VS Express Desktop 2012 . will i work?

  10. #8
    RuShi's Avatar
    Join Date
    Jan 2016
    Gender
    male
    Location
    File Not Found 404!
    Posts
    2,531
    Reputation
    210
    Thanks
    13,008
    My Mood
    Innocent
    Quote Originally Posted by popadapy View Post
    yes .. VS Express Desktop 2012 . will i work?
    Yes , follow the step and copy paste the source code.


    MPGH History:
    Member: 02/1/2016
    Contributor: 29/6/2016
    Minion: 25/8/2016
    Former Staff: 07/02/2017
    Minion: 21/9/2017

  11. #9
    HLShack's Avatar
    Join Date
    Aug 2016
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    erm so where do u put the code and the virtual key?

    - - - Updated - - -

    cant paste it in the build?

    - - - Updated - - -

    maybe more specific steps?
    thanks

  12. #10
    RuShi's Avatar
    Join Date
    Jan 2016
    Gender
    male
    Location
    File Not Found 404!
    Posts
    2,531
    Reputation
    210
    Thanks
    13,008
    My Mood
    Innocent
    Quote Originally Posted by HLShack View Post
    erm so where do u put the code and the virtual key?

    - - - Updated - - -

    cant paste it in the build?

    - - - Updated - - -

    maybe more specific steps?
    thanks
    --- > if (GetAsyncKeyState(VK_INSERT) & 1)//Set your hotkey


    MPGH History:
    Member: 02/1/2016
    Contributor: 29/6/2016
    Minion: 25/8/2016
    Former Staff: 07/02/2017
    Minion: 21/9/2017

  13. #11
    dhia662's Avatar
    Join Date
    Jul 2016
    Gender
    male
    Posts
    8
    Reputation
    10
    Thanks
    1
    please viedo ned past how i Get Dll ?

  14. #12
    rushil69's Avatar
    Join Date
    Nov 2014
    Gender
    male
    Location
    ❗❶❷❼.⓿.⓿.❶❗
    Posts
    435
    Reputation
    10
    Thanks
    825
    My Mood
    Devilish
    Quote Originally Posted by dhia662 View Post
    please viedo ned past how i Get Dll ?
    Follow what red hunter said
    RUSHIL69 == rE-BoOt

  15. #13
    ale ale jdt's Avatar
    Join Date
    Mar 2016
    Gender
    male
    Posts
    20
    Reputation
    10
    Thanks
    0
    My Mood
    Devilish
    at the code must delete the green text ?? like 'SET YOUR HOTKEYS'
    Last edited by ale ale jdt; 10-22-2016 at 09:26 AM.

  16. #14
    RuShi's Avatar
    Join Date
    Jan 2016
    Gender
    male
    Location
    File Not Found 404!
    Posts
    2,531
    Reputation
    210
    Thanks
    13,008
    My Mood
    Innocent
    Quote Originally Posted by ale ale jdt View Post
    at the code must delete the green text ?? like 'SET YOUR HOTKEYS'
    Well, no need to delete It because Its doest effect anything.


    MPGH History:
    Member: 02/1/2016
    Contributor: 29/6/2016
    Minion: 25/8/2016
    Former Staff: 07/02/2017
    Minion: 21/9/2017

  17. #15
    ale ale jdt's Avatar
    Join Date
    Mar 2016
    Gender
    male
    Posts
    20
    Reputation
    10
    Thanks
    0
    My Mood
    Devilish
    Quote Originally Posted by Luffy View Post
    Well, no need to delete It because Its doest effect anything.
    ok,thnks..but how to get the offset ??

Page 1 of 2 12 LastLast

Similar Threads

  1. How To Create A .DLL File For Krelay (IPLUGIN) (Pictures)
    By ruusey in forum Realm of the Mad God Tutorials & Source Code
    Replies: 3
    Last Post: 10-25-2015, 06:44 AM
  2. [Tutorial] How to create a DLL hack ---> for you ( Enjoy Niggas make a hack and put a credit )
    By Dark Side in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 12
    Last Post: 08-08-2011, 05:20 PM
  3. How to Create .BIK videos (for intro mods)
    By flameswor10 in forum Combat Arms Mod Tutorials
    Replies: 12
    Last Post: 10-22-2010, 01:41 AM
  4. how to create a hack for combat arms eu?
    By d4n13l in forum Combat Arms Help
    Replies: 2
    Last Post: 05-12-2010, 05:59 AM
  5. How to create a DLL Injector in VB6 ?
    By SteeL in forum Visual Basic Programming
    Replies: 1
    Last Post: 12-12-2008, 05:03 PM