Page 6 of 12 FirstFirst ... 45678 ... LastLast
Results 76 to 90 of 171
  1. #76
    yoel038's Avatar
    Join Date
    Apr 2012
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    0
    wtf do i have to do with that dll file

  2. #77
    cypher09's Avatar
    Join Date
    Oct 2012
    Gender
    male
    Location
    In hell after the perma-ban and death
    Posts
    337
    Reputation
    20
    Thanks
    52
    My Mood
    Dead
    DL an injector, here, here or here again.
    Open the injector, and inject the DLL to your game (iw5mp.exe -only-).

    It will work after it.

  3. #78
    mwxplayer's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Location
    hax
    Posts
    584
    Reputation
    10
    Thanks
    2,928
    My Mood
    Doh
    Might code a new hax.. (not this one..) with a new MENU for TeknoFags.

  4. #79
    yoel038's Avatar
    Join Date
    Apr 2012
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    0
    can somebody say where i have to inject it?

  5. #80
    Kenshin13's Avatar
    Join Date
    May 2011
    Gender
    male
    Location
    Cloud 9
    Posts
    3,470
    Reputation
    564
    Thanks
    6,168
    My Mood
    Psychedelic
    Quote Originally Posted by yoel038 View Post
    can somebody say where i have to inject it?
    IT WAS SAID BEFORE. INJECT IT INTO "iw5mp.exe"

  6. #81
    Kenshin13's Avatar
    Join Date
    May 2011
    Gender
    male
    Location
    Cloud 9
    Posts
    3,470
    Reputation
    564
    Thanks
    6,168
    My Mood
    Psychedelic
    For anyone having problems changing their name.... Or are generally annoyed by the "MW2Player" name...

    Here's the address he uses to change the name: 0x5A7B1B4
    So if you do Method A, you'll need to change your name at this address.

    METHOD A
    Code:
    (When already loaded)
    DllBase+361B -> 90 90 90 90
    DllBase+3625 -> 90 90 90 90
    METHOD B
    Or if you want a permanent method:
    Code:
    (Open in a hex editor)
    2A1B -> 90 90 90 90
    2A25 -> 90 90 90 90
    @mwxplayer put the damn namechanger in ui.ShowList

    Took like 2 minutes to do this. :P
    Last edited by Kenshin13; 03-01-2013 at 11:45 PM.

  7. #82
    mwxplayer's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Location
    hax
    Posts
    584
    Reputation
    10
    Thanks
    2,928
    My Mood
    Doh
    Quote Originally Posted by Kenshin13 View Post
    For anyone having problems changing their name.... Or are generally annoyed by the "MW2Player" name...

    Here's the address he uses to change the name: 0x5A7B1B4
    So if you do Method A, you'll need to change your name at this address.

    METHOD A
    Code:
    (When already loaded)
    DllBase+361B -> 90 90 90 90
    DllBase+3625 -> 90 90 90 90
    METHOD B
    Or if you want a permanent method:
    Code:
    (Open in a hex editor)
    2A1B -> 90 90 90 90
    2A25 -> 90 90 90 90
    @mwxplayer put the damn namechanger in ui.ShowList

    Took like 2 minutes to do this. :P
    too hard to search string on IDA ("mw2player") .
    .............................

  8. #83
    Kenshin13's Avatar
    Join Date
    May 2011
    Gender
    male
    Location
    Cloud 9
    Posts
    3,470
    Reputation
    564
    Thanks
    6,168
    My Mood
    Psychedelic
    Quote Originally Posted by mwxplayer View Post
    too hard to search string on IDA ("mw2player") .
    .............................
    Have you even decompiled your hack? There is no string reference to that name.

  9. #84
    mwxplayer's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Location
    hax
    Posts
    584
    Reputation
    10
    Thanks
    2,928
    My Mood
    Doh
    Quote Originally Posted by Kenshin13 View Post
    Have you even decompiled your hack? There is no string reference to that name.
    huh?
    Code:
    void cMisc::NoName(bool Enabled)
    {
    	if (Enabled)
    	{
    		
    		*(BYTE*)0x4A578C = 0xC3;
    		strcpy ((char*)0x05A7B1B4, "\x0D\x0D\x0D\x0D\x20\x0D");
    	}
    //	else
    //	strcpy ((char*)0x05A7B1B4,"MW2Player");

  10. #85
    Kenshin13's Avatar
    Join Date
    May 2011
    Gender
    male
    Location
    Cloud 9
    Posts
    3,470
    Reputation
    564
    Thanks
    6,168
    My Mood
    Psychedelic
    Quote Originally Posted by mwxplayer View Post
    huh?
    Code:
    void cMisc::NoName(bool Enabled)
    {
    	if (Enabled)
    	{
    		
    		*(BYTE*)0x4A578C = 0xC3;
    		strcpy ((char*)0x05A7B1B4, "\x0D\x0D\x0D\x0D\x20\x0D");
    	}
    //	else
    //	strcpy ((char*)0x05A7B1B4,"MW2Player");
    -_- ........... Dude....it's written as bytes...
    Well shorts and Qwords.

    Code:
    .text:100035EF                 mov     ecx, 5A7B1B4h
    .text:100035F4                 test    al, al
    .text:100035F6                 jz      short loc_10003613
    ..........................................
    .text:10003613 loc_10003613:                           ; CODE XREF: sub_10003450+1A6j
    .text:10003613                 movq    xmm0, ds:qword_10007DE4
    .text:1000361B                 movq    qword ptr [ecx], xmm0 // "MW2Playe"
    .text:1000361F                 mov     ax, ds:word_10007DEC
    .text:10003625                 mov     [ecx+8], ax // "r.",The "." is 0x00
    Now you're probably saying wtf right? Yep. That's some lovely assembly (At least from my knowledge, xmm0 is a 8-byte register and a qword can only fit in an 8-byte register (Which is the size of xmm0 register)). It wasn't as simple finding it as you seem to believe.
    Last edited by Kenshin13; 03-02-2013 at 11:22 AM.

  11. #86
    Enraged Panda's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Posts
    0
    Reputation
    10
    Thanks
    14
    It crashes everytime I inject it into iw5mo.exe... Anyone know how to help?

  12. #87
    cypher09's Avatar
    Join Date
    Oct 2012
    Gender
    male
    Location
    In hell after the perma-ban and death
    Posts
    337
    Reputation
    20
    Thanks
    52
    My Mood
    Dead
    Are you injecting in a server?

  13. #88
    xx1t1xx's Avatar
    Join Date
    Apr 2012
    Gender
    male
    Posts
    3
    Reputation
    10
    Thanks
    0
    @Kenshin13
    I loaded in hex editor but can't find it in the address?
    Attached Thumbnails Attached Thumbnails
    Capture.PNG  

    Last edited by xx1t1xx; 03-02-2013 at 11:39 PM.

  14. #89
    Kenshin13's Avatar
    Join Date
    May 2011
    Gender
    male
    Location
    Cloud 9
    Posts
    3,470
    Reputation
    564
    Thanks
    6,168
    My Mood
    Psychedelic
    Quote Originally Posted by xx1t1xx View Post
    @Kenshin13
    I loaded in hex editor but can't find it in the address?
    If @mwxplayer wants, I'll upload the fixed version....

  15. #90
    mwxplayer's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Location
    hax
    Posts
    584
    Reputation
    10
    Thanks
    2,928
    My Mood
    Doh
    Quote Originally Posted by Kenshin13 View Post
    If @mwxplayer wants, I'll upload the fixed version....
    you're welcome

Page 6 of 12 FirstFirst ... 45678 ... LastLast

Similar Threads

  1. [Outdated] TeknoMW3 MultiHax
    By mwxplayer in forum Call of Duty Modern Warfare 3 Private Server Hacks
    Replies: 61
    Last Post: 01-23-2013, 08:50 AM
  2. [Outdated] TeknoMW3 MultiHax v1.1 (With Aimbot)
    By mwxplayer in forum Call of Duty Modern Warfare 3 Private Server Hacks
    Replies: 59
    Last Post: 01-19-2013, 10:37 AM
  3. [Patched] MultiHax for MW3 v1.5.387 (Sfab)
    By N1pp@ in forum Call of Duty 8 - Modern Warfare 3 (MW3) Hacks & Cheats
    Replies: 295
    Last Post: 03-29-2012, 09:10 AM
  4. [Help Request] Requesting Help For TeknoMW3 Offline LAN Multiplayer
    By dragonsrule121 in forum Call of Duty Modern Warfare 3 Help
    Replies: 0
    Last Post: 01-29-2012, 03:06 AM
  5. [Detected] aIW MultiHax
    By fatjoe2015 in forum Call of Duty Modern Warfare 2 Private Servers
    Replies: 40
    Last Post: 08-07-2011, 10:04 AM