Results 1 to 8 of 8
  1. #1
    ReseviC's Avatar
    Join Date
    May 2016
    Gender
    male
    Location
    BEClient.dll
    Posts
    354
    Reputation
    10
    Thanks
    3,430
    My Mood
    Busy

    Question Create DLL For Beginner

    > Download [ Visual Studio 2015 ] , Search Google , U Can Search VS 2012 Too
    [ RECOMMENDED ]
    > Install It Fully
    > Once Done , Run Visual Studio [ If Dont Know , Search At Taskbar ]

    Here The Vid :


    Code:
    #include <Windows.h>
    
    void HACK()
    {
    	while (1)
    	{
    		*(BYTE*)0x0042E646 = 0xEB; // Memory is modified. BlackShot SEA
    		Sleep(50);
    	}
    }
    
    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, "Put Your Credits", "Put Your Title", MB_YESNO);// MessageBox
    	}
    	return TRUE;
    }
    Thanks

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

    Anju01 (12-01-2016),sohs02 (08-01-2016)

  3. #2
    sohs02's Avatar
    Join Date
    Apr 2015
    Gender
    male
    Posts
    49
    Reputation
    10
    Thanks
    40
    Nice.. but how to create no recoil and no spread for all weapons?

  4. #3
    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 sohs02 View Post
    Nice.. but how to create no recoil and no spread for all weapons?
    Find Address on Cheat Engine 6.5.1 , while running BlackShot SEA

    The Method are same , but address are diff , just change the address to ur address etc = Norecoil or NoSpread .
    Just To Loop All Weps . i Cant Share at here , not this time

    like this =
    #include <windows.h>

    void HACK()
    {
    while (1)
    {
    *(BYTE*)0xAddressOfNorecoil = 0x65; // Norecoil
    *(BYTE*)0xAddressOfNoSpred = 0xValue // NoSpread
    }
    Sleep(50);
    }

  5. #4
    meerunmaltoo's Avatar
    Join Date
    Dec 2015
    Gender
    male
    Posts
    10
    Reputation
    10
    Thanks
    0
    Ok so actually i've been looking for a injection method for 32bit. i've actually tried this basic method of injection but wont work. (i guess.. or maybe i did something wrong).. im not sure about the hooking method coz my level of programming is still low to do that method. Any suggestions on how to inject on 32bit?

  6. #5
    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 meerunmaltoo View Post
    Ok so actually i've been looking for a injection method for 32bit. i've actually tried this basic method of injection but wont work. (i guess.. or maybe i did something wrong).. im not sure about the hooking method coz my level of programming is still low to do that method. Any suggestions on how to inject on 32bit?
    Yes there is But not now ..

  7. #6
    amoda's Avatar
    Join Date
    Oct 2014
    Gender
    male
    Posts
    3
    Reputation
    10
    Thanks
    1
    thank u very much but the vid don't work :/

  8. #7
    gmpopo's Avatar
    Join Date
    Nov 2015
    Gender
    male
    Posts
    3
    Reputation
    10
    Thanks
    0
    can you send video back on because he can not be viewed

  9. #8
    COD3RIN's Avatar
    Join Date
    May 2013
    Gender
    male
    Location
    Posts
    5,309
    Reputation
    468
    Thanks
    28,779
    My Mood
    Angelic
    Quote Originally Posted by gmpopo View Post
    can you send video back on because he can not be viewed
    many tutorials on youtube you can watch how to make a dll in c ++
    ᚛C☢dℝin3᚜
    Love you.
    ~Kenshit13
    Quote Originally Posted by cheaterman26 View Post
    COD3RIN PUT A BACKDOOR ON HIS OWN CHEAT HE HACK MY COMPUTER AND MY STEAM, DON'T TRUST THIS GUYS !



  10. The Following User Says Thank You to COD3RIN For This Useful Post:

    akukanpro8 (12-16-2016)

Similar Threads

  1. [C/C++ Tutorial] How to create a DLL for Newbie
    By Heroes in forum Blackshot Coding & Hacking Tutorials
    Replies: 24
    Last Post: 10-09-2018, 04:56 AM
  2. WPE for Beginners (Flash Games)
    By Zededarian in forum Game Hacking Tutorials
    Replies: 9
    Last Post: 03-19-2016, 11:59 AM
  3. Can anyone help me out using C++ for creating Dll files ?
    By quanganhtbnet in forum Warface Discussions & Help
    Replies: 9
    Last Post: 09-05-2014, 07:05 PM
  4. [Source Code] I have created a memory read class for beginners
    By evilimprint in forum Visual Basic Programming
    Replies: 9
    Last Post: 05-19-2013, 04:04 AM
  5. best c++ tutorial for beginners!
    By WacKer in forum C++/C Programming
    Replies: 31
    Last Post: 12-05-2009, 06:30 AM