Thread: ANTI-KICK

Results 1 to 9 of 9
  1. #1
    HaXiNgRuLeZ's Avatar
    Join Date
    Jun 2016
    Gender
    male
    Posts
    443
    Reputation
    40
    Thanks
    3,007
    My Mood
    Cynical

    Thumbs up ANTI-KICK

    Code:
    #include <Windows.h>
    #include <iostream> 
    #include <stdio.h>
    
    DWORD WINAPI LoopFunction(LPVOID lpParam)
    {
    	BYTE Kick[1] =  { 0x85 }; // ON kick
    	BYTE Kick2[1] = { 0x75 };
    	BYTE Kick3[1] = { 0x84 }; // OFF Kick
    	BYTE Kick4[1] = { 0x74 };
    	DWORD address = 0x0051C6A8;
    	DWORD address2 =0x0051C6D2;
    	bool KickAddy = false;
    
    	HANDLE bs2016 = GetCurrentProcess();
    	while (1){
    		 if(GetAsyncKeyState(VK_HOME) & 1){
    			WriteProcessMemory(bs2016, (void*)(address), &Kick, 1, 0);
    			WriteProcessMemory(bs2016, (void*)(address2), &Kick2, 1, 0);
    			KickAddy = false;
    		}
    		if (GetAsyncKeyState(VK_END) & 1){
    			WriteProcessMemory(bs2016, (void*)(address), &Kick3, 1, 0);
    			WriteProcessMemory(bs2016, (void*)(address2), &Kick4, 1, 0);
    			KickAddy = true;
    		}
    	}
    }
    
    void Patch(void *adr, void *ptr, int size)
    {
    	DWORD NewProtection;
    	VirtualProtect(adr, size, PAGE_EXECUTE_WRITECOPY, &NewProtection);
    	memcpy(adr, ptr, size);
    	VirtualProtect(adr, size, NewProtection, &NewProtection);
    }
    
    
    BOOL WINAPI DllMain(HINSTANCE hModule, DWORD dwAttached, LPVOID lpvReserved)
    {
    	if (dwAttached == DLL_PROCESS_ATTACH) {
    		CreateThread(NULL, 0, &LoopFunction, NULL, 0, NULL);
    	}
    	return 1;
    }

    Credits : | ViinnyAndRoots | Bryan | Regards The Troop | HaXiNgRuLeZ |

    Good Luck Have Fun
    Happy Gaming, Happy Hacking!
    Join MPGH : Jun 2016
    ~30/100 Comeback~









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

    RuShi (08-16-2016),ReseviC (01-15-2017),ZhinLoung (08-16-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 HaXiNgRuLeZ View Post
    Code:
    #include <Windows.h>
    #include <iostream> 
    #include <stdio.h>
    
    DWORD WINAPI LoopFunction(LPVOID lpParam)
    {
    	BYTE Kick[1] =  { 0x85 }; // ON kick
    	BYTE Kick2[1] = { 0x75 };
    	BYTE Kick3[1] = { 0x84 }; // OFF Kick
    	BYTE Kick4[1] = { 0x74 };
    	DWORD address = 0x0051C6A8;
    	DWORD address2 =0x0051C6D2;
    	bool KickAddy = false;
    
    	HANDLE bs2016 = GetCurrentProcess();
    	while (1){
    		 if(GetAsyncKeyState(VK_HOME) & 1){
    			WriteProcessMemory(bs2016, (void*)(address), &Kick, 1, 0);
    			WriteProcessMemory(bs2016, (void*)(address2), &Kick2, 1, 0);
    			KickAddy = false;
    		}
    		if (GetAsyncKeyState(VK_END) & 1){
    			WriteProcessMemory(bs2016, (void*)(address), &Kick3, 1, 0);
    			WriteProcessMemory(bs2016, (void*)(address2), &Kick4, 1, 0);
    			KickAddy = true;
    		}
    	}
    }
    
    void Patch(void *adr, void *ptr, int size)
    {
    	DWORD NewProtection;
    	VirtualProtect(adr, size, PAGE_EXECUTE_WRITECOPY, &NewProtection);
    	memcpy(adr, ptr, size);
    	VirtualProtect(adr, size, NewProtection, &NewProtection);
    }
    
    
    BOOL WINAPI DllMain(HINSTANCE hModule, DWORD dwAttached, LPVOID lpvReserved)
    {
    	if (dwAttached == DLL_PROCESS_ATTACH) {
    		CreateThread(NULL, 0, &LoopFunction, NULL, 0, NULL);
    	}
    	return 1;
    }

    Credits : | ViinnyAndRoots | Bryan | Regards The Troop | HaXiNgRuLeZ |

    Good Luck Have Fun
    Happy Gaming, Happy Hacking!
    Instead of this .. Why not use a simple method like = bool toexchange ?
    Nvm , Nice One Buddy !

  4. #3
    HaXiNgRuLeZ's Avatar
    Join Date
    Jun 2016
    Gender
    male
    Posts
    443
    Reputation
    40
    Thanks
    3,007
    My Mood
    Cynical
    Quote Originally Posted by Ein_Silk View Post


    Instead of this .. Why not use a simple method like = bool toexchange ?
    Nvm , Nice One Buddy !
    I Think Simple Method Cant OFF Right :/

    And U Can Add More Hack In This Source

    GOOD LUCK
    Join MPGH : Jun 2016
    ~30/100 Comeback~









  5. #4
    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 HaXiNgRuLeZ View Post
    I Think Simple Method Cant OFF Right :/

    And U Can Add More Hack In This Source

    GOOD LUCK
    LOLOLOLOLOL ...

  6. #5
    RuShi's Avatar
    Join Date
    Jan 2016
    Gender
    male
    Location
    File Not Found 404!
    Posts
    2,531
    Reputation
    210
    Thanks
    13,009
    My Mood
    Innocent
    Quote Originally Posted by HaXiNgRuLeZ View Post
    Code:
    #include <Windows.h>
    #include <iostream> 
    #include <stdio.h>
    
    DWORD WINAPI LoopFunction(LPVOID lpParam)
    {
    	BYTE Kick[1] =  { 0x85 }; // ON kick
    	BYTE Kick2[1] = { 0x75 };
    	BYTE Kick3[1] = { 0x84 }; // OFF Kick
    	BYTE Kick4[1] = { 0x74 };
    	DWORD address = 0x0051C6A8;
    	DWORD address2 =0x0051C6D2;
    	bool KickAddy = false;
    
    	HANDLE bs2016 = GetCurrentProcess();
    	while (1){
    		 if(GetAsyncKeyState(VK_HOME) & 1){
    			WriteProcessMemory(bs2016, (void*)(address), &Kick, 1, 0);
    			WriteProcessMemory(bs2016, (void*)(address2), &Kick2, 1, 0);
    			KickAddy = false;
    		}
    		if (GetAsyncKeyState(VK_END) & 1){
    			WriteProcessMemory(bs2016, (void*)(address), &Kick3, 1, 0);
    			WriteProcessMemory(bs2016, (void*)(address2), &Kick4, 1, 0);
    			KickAddy = true;
    		}
    	}
    }
    
    void Patch(void *adr, void *ptr, int size)
    {
    	DWORD NewProtection;
    	VirtualProtect(adr, size, PAGE_EXECUTE_WRITECOPY, &NewProtection);
    	memcpy(adr, ptr, size);
    	VirtualProtect(adr, size, NewProtection, &NewProtection);
    }
    
    
    BOOL WINAPI DllMain(HINSTANCE hModule, DWORD dwAttached, LPVOID lpvReserved)
    {
    	if (dwAttached == DLL_PROCESS_ATTACH) {
    		CreateThread(NULL, 0, &LoopFunction, NULL, 0, NULL);
    	}
    	return 1;
    }

    Credits : | ViinnyAndRoots | Bryan | Regards The Troop | HaXiNgRuLeZ |

    Good Luck Have Fun
    Happy Gaming, Happy Hacking!
    Lol , WriteProcessMemory with GetCurrentProcess() . Never think to do like that . Anyway good job ! Its would be useful .


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

  7. #6
    HaXiNgRuLeZ's Avatar
    Join Date
    Jun 2016
    Gender
    male
    Posts
    443
    Reputation
    40
    Thanks
    3,007
    My Mood
    Cynical
    Quote Originally Posted by RedHunter View Post
    Lol , WriteProcessMemory with GetCurrentProcess() . Never think to do like that . Anyway good job ! Its would be useful .
    Nah :P , Thank You Buddy, Btw You Stop Making Hack For BS SEA/EU?
    Join MPGH : Jun 2016
    ~30/100 Comeback~









  8. #7
    RuShi's Avatar
    Join Date
    Jan 2016
    Gender
    male
    Location
    File Not Found 404!
    Posts
    2,531
    Reputation
    210
    Thanks
    13,009
    My Mood
    Innocent
    Quote Originally Posted by HaXiNgRuLeZ View Post
    Nah :P , Thank You Buddy, Btw You Stop Making Hack For BS SEA/EU?
    Still do It for EU . Might release later .


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

  9. #8
    failnoobgamer's Avatar
    Join Date
    Dec 2014
    Gender
    male
    Location
    china #1
    Posts
    533
    Reputation
    10
    Thanks
    5,880
    My Mood
    Happy
    Why write process memory in DLL??

  10. #9
    RuShi's Avatar
    Join Date
    Jan 2016
    Gender
    male
    Location
    File Not Found 404!
    Posts
    2,531
    Reputation
    210
    Thanks
    13,009
    My Mood
    Innocent
    Quote Originally Posted by failnoobgamer View Post
    Why write process memory in DLL??
    Hmm , thats why Im confuse . WriteProcessMemory with GetCurrentProcess In DLL . But I think Its might work .


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

Similar Threads

  1. [REQUEST] Address Anti-kick ?
    By nothxfgt in forum WarRock - International Hacks
    Replies: 2
    Last Post: 05-19-2007, 03:45 PM
  2. [Search]Anti-kick
    By M.A.S in forum WarRock - International Hacks
    Replies: 2
    Last Post: 05-19-2007, 06:40 AM
  3. Anyone got an anti kick hack?
    By whomper in forum WarRock - International Hacks
    Replies: 2
    Last Post: 05-07-2007, 02:37 PM
  4. need anti-kick and one position kill!!
    By gmrapno1 in forum WarRock - International Hacks
    Replies: 9
    Last Post: 05-07-2007, 12:17 PM
  5. Anti kick?
    By 1877 in forum WarRock - International Hacks
    Replies: 6
    Last Post: 03-15-2007, 09:18 AM