Results 1 to 14 of 14
  1. #1
    axnus's Avatar
    Join Date
    May 2015
    Gender
    male
    Posts
    5
    Reputation
    10
    Thanks
    0

    Unhappy No Recoil for last update

    Hi all,
    I see still not found no recoil code for last update.

    I ask for cheatengine player.dllxxxxx;
    How can i find this code?

    In every update this code is change (look recoil topics ), but who found it? and how can?

    Sory fo my eng.
    Thanks in advance.

  2. #2
    lala's Avatar
    Join Date
    Apr 2015
    Gender
    female
    Location
    surfing inside code
    Posts
    494
    Reputation
    57
    Thanks
    8,194
    My Mood
    Cheerful
    theres soo many ways to find it ^^.
    one is to find similar bytes.
    seccond is to find it from scanning ammo and debugging addr. its on this forum too .. first no recoil post.
    image shows how it work right now .. at address: player.dll+1F5C71.
    (remove dot after "m")m.ediafire.com/view/48tadca3hh13p1z/hng_no_recoil.png

    if you want to get chams plus little aimbot thingy then email me: l4v4ph0x@riseup.net .. ill send .. i have nothing to do with it ^^ .. source code is in this forum too.
    Last edited by lala; 05-25-2015 at 01:15 PM.

  3. #3
    Threadstarter
    New Member
    axnus's Avatar
    Join Date
    May 2015
    Gender
    male
    Posts
    5
    Reputation
    10
    Thanks
    0
    Thanks m friend.
    Dont need aimbot just a norecoil.

    And i use this method and take a player dll but
    when comn cheatengine to add adress for norecoil (as 117 to 235) its not work.


    Edit:

    Now i try again.
    Take my adress.
    And add manually, its give me value15 arrayofbytes, i change any value and crashed

    Think i ask wrong question, i need adress yup but i need how to use this adress.
    Reading all topics and try 4-5 method, every update this value is changed.
    I need learn; how to found true value for norecoil, who can find it and how?
    Last edited by axnus; 05-26-2015 at 04:56 AM.

  4. #4
    MrRyan96521's Avatar
    Join Date
    Jun 2014
    Gender
    male
    Posts
    13
    Reputation
    10
    Thanks
    0
    My Mood
    Worried

    Thumbs up

    http : // www . mpgh . net / forum / showthread . p h p ? t = 9 5 1 8 3 1
    I cant post links

    Works for me
    __________
    Thanks me if I helped ya out

  5. #5
    Threadstarter
    New Member
    axnus's Avatar
    Join Date
    May 2015
    Gender
    male
    Posts
    5
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by MrRyan96521 View Post
    http : // www . mpgh . net / forum / showthread . p h p ? t = 9 5 1 8 3 1
    I cant post links

    Works for me
    __________
    Thanks me if I helped ya out

    I know this. My one account banned for this. I dont wnna use exe

  6. #6
    lala's Avatar
    Join Date
    Apr 2015
    Gender
    female
    Location
    surfing inside code
    Posts
    494
    Reputation
    57
    Thanks
    8,194
    My Mood
    Cheerful
    heres c++ console app code(vc++ 2010):
    put character set to multi byte.

    Code:
    #include <windows.h>
    #include <stdio.h>
    #include <tlhelp32.h>
    #include <tchar.h>
    #include <string>
    
    HWND hwnd;
    DWORD pid;
    HANDLE handle;
    
    DWORD playerDLL;
    
    DWORD getPlayer(DWORD pid) {
    	HANDLE hModuleSnap = CreateToolhelp32Snapshot(TH32CS_SNAPMODULE, pid); 
    	MODULEENTRY32 me32;
    	me32.dwSize = sizeof(MODULEENTRY32);
    
    	for (;;) {
    		Module32Next(hModuleSnap, &me32);
    
    		std::string compare = me32.szModule;
    		printf("\n%s", me32.szModule);
    
    		if (compare == "player.dll") {
    			printf(" <<-- found you ^^\n");
    
    			break;
    		}
    	}
    
        return (DWORD)me32.modBaseAddr;
    }
    
    
    int main() {
    	hwnd = FindWindowA(0, "H&G");
    	GetWindowThreadProcessId(hwnd, &pid);
    	handle = OpenProcess(PROCESS_VM_OPERATION | PROCESS_VM_READ | PROCESS_VM_WRITE, 0, pid);
    
    	if (handle) {
    		playerDLL = getPlayer(pid);
    
    		WriteProcessMemory(handle, (LPVOID)(playerDLL + 0x1F5C71), &"\x90\x90\x90\x90\x90", 5, 0);
    
    		printf("there you go .. it should work now.\n");
    	} else printf("you dont have enough power to control this pc ^^\n");
    
    	printf("press enter to exit ...");
    	getchar();
    	
    	return 0;
    }

  7. #7
    Threadstarter
    New Member
    axnus's Avatar
    Join Date
    May 2015
    Gender
    male
    Posts
    5
    Reputation
    10
    Thanks
    0
    flowing, its give me a player dll code ya?

    ill found ok.
    then how can i do no recoil?

  8. #8
    lala's Avatar
    Join Date
    Apr 2015
    Gender
    female
    Location
    surfing inside code
    Posts
    494
    Reputation
    57
    Thanks
    8,194
    My Mood
    Cheerful
    this code i posted is source code for c++ win32 console program.
    compile and run it as admin and you got no recoil ^^.
    i think you can compile this with devcpp too(i think its easyer there too because in visual studio u need to change character set from unicode to multibyte).

    email me ur skype or some im ill try to teach you ^^.(i dont accept facebook sorry).
    its hard to just make tutorial, because making cheats arent just following some way .. at least it seems to me .

  9. #9
    electroduck's Avatar
    Join Date
    Nov 2014
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    My Mood
    Bored
    Changing the memory address from 1F5C71 to 001F5071 gave me about 30 sec of no recoil before the game crashed with "Data corruption detected".
    Is there any way to stop that message?
    Last edited by electroduck; 05-28-2015 at 06:40 PM.

  10. #10
    lala's Avatar
    Join Date
    Apr 2015
    Gender
    female
    Location
    surfing inside code
    Posts
    494
    Reputation
    57
    Thanks
    8,194
    My Mood
    Cheerful
    Quote Originally Posted by electroduck View Post
    Changing the memory address from 1F5C71 to 001F5071 gave me about 30 sec of no recoil before the game crashed with "Data corruption detected".
    Is there any way to stop that message?
    yup.
    i have modded player.dll: (remove dot after "m")m.ediafire.com/download/8ukxul79ll66i46/player.dll
    ill try to make tut with pics ^^. im pretty sure they delete this dll soon, soo when u see m.ediafire link ur with luck ^^.
    Last edited by lala; 05-29-2015 at 08:41 AM.

  11. #11
    Threadstarter
    New Member
    axnus's Avatar
    Join Date
    May 2015
    Gender
    male
    Posts
    5
    Reputation
    10
    Thanks
    0
    Ill give mail but cant use pm

  12. #12
    lala's Avatar
    Join Date
    Apr 2015
    Gender
    female
    Location
    surfing inside code
    Posts
    494
    Reputation
    57
    Thanks
    8,194
    My Mood
    Cheerful
    Quote Originally Posted by axnus View Post
    Ill give mail but cant use pm
    heres mine: l4v4ph0x@riseup.net

  13. #13
    MadMas's Avatar
    Join Date
    Nov 2014
    Gender
    male
    Posts
    47
    Reputation
    10
    Thanks
    117
    folowing_around what you use to decompile player.dll I try Justdecompile and JetBrains dotPeek and not work any sugestion? and thx
    Last edited by MadMas; 05-30-2015 at 12:08 PM.

  14. #14
    lala's Avatar
    Join Date
    Apr 2015
    Gender
    female
    Location
    surfing inside code
    Posts
    494
    Reputation
    57
    Thanks
    8,194
    My Mood
    Cheerful
    Quote Originally Posted by MadMas View Post
    folowing_around what you use to decompile player.dll I try Justdecompile and JetBrains dotPeek and not work any sugestion? and thx
    actually its not .net dll.
    i use modded ollydbg.
    little pic abut it: (remove dot after "m")m.ediafire.com/view/l9ad0cyou1a4d4i/monsters loop.PNG

Similar Threads

  1. [Request] Blackshot aimbot for taking after last update ?
    By ludgerogabriel in forum Blackshot Hacks & Cheats
    Replies: 8
    Last Post: 11-08-2012, 07:59 PM
  2. [Source Code] UPDATED NO RECOIL SOURCE CODE + UPDATED OFFSETS FOR IT
    By mohamed09 in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 6
    Last Post: 04-18-2012, 08:08 PM
  3. link for public hacks that work after last update please
    By bampro222 in forum Combat Arms Hack Requests
    Replies: 2
    Last Post: 01-08-2012, 05:52 PM
  4. [Release] AiW No Recoil for Version 1.0-209 Update
    By Littlemann in forum Call of Duty Modern Warfare 2 Private Servers
    Replies: 29
    Last Post: 08-08-2011, 12:23 AM
  5. Last Update (Feature?!)
    By webtijn in forum WarRock - International Hacks
    Replies: 5
    Last Post: 06-07-2007, 01:42 PM