Results 1 to 9 of 9
  1. #1
    Kenshin13's Avatar
    Join Date
    May 2011
    Gender
    male
    Location
    Cloud 9
    Posts
    3,470
    Reputation
    564
    Thanks
    6,168
    My Mood
    Psychedelic

    TeknoMW3 Name Faker [Inside Server] (Programmers Only)

    Again, this is another one of my snippets, that I use and isn't mine. :P

    So firstly, we define out functions:
    Code:
    	int SendCommandToConsole( char* Cmd )
    	{
    		DWORD dwFunc = 0x004C1030;
    		__asm
    		{
    			push Cmd;
    			push 0;
    			call dwFunc;
    		}
    		return 0;
    	}
    	
    	bool ChangeName(char* Name)
    	{
    		char buf[100];
    		sprintf_s(buf, "userinfo \"\\name\\%s\"", Name);
    		if(SendCommandToConsole(buf))
    			SendCommandToConsole("rate 20000");
    		return TRUE;
    	}
    Bingo, now just send it a name, either in hex or normal letters: (Hex below)
    Code:
    	char Name[] = {\x11\x12\x13\x0A\x0A\x1F\x1F\x13\x0A"};
    	ChangeName(Name);
    Yadda yadda yadda. You might need these also:
    Code:
    // 			\x Followed by byte to indicate Letter, Number Or Other [31 MAX]
    // 			30 - 39 :: Ranges from 0 to 9
    // 			41 - 5A :: Ranges from A to Z
    // 			61 - 7A :: Ranges form a to z
    // 			11 - 1F :: Shows HIDDEN Name
    // 			00 :: Unknown Player :: 0A :: Go Down A Line :: 0D :: Move back to First Position
    Have fun.

    Credits: Origional person who I saw with this code: BaberZz
    Last edited by Kenshin13; 09-29-2012 at 05:04 PM.

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

    jim246 (09-29-2012),mwxplayer (10-27-2012)

  3. #2
    Horror's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Location
    51,4.
    Posts
    6,920
    Reputation
    574
    Thanks
    5,050
    My Mood
    Twisted
    Your going ham Now i dont get why its only inside a server ... And not outside of a server ...
     

    Minion+ : February 2014 - January 2015
    Counter Strike: Global Offensive Minion : November 2014 - January 2015
    Alliance of Valiant Arms Minion : August 2014 - January 2015
    Need For Speed World Minion : January 2014 - January 2015
    Rust Minion : January 2014 - January 2015
    Call of Duty Minion : January 2013 - January 2015
    Editor : December 2012 - April 2013
    Donator : March 2014 - Current
    Member : October 2010 - Current

    Previously known as "Isaakske".

  4. #3
    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 Isaakske View Post
    Your going ham Now i dont get why its only inside a server ... And not outside of a server ...
    See those "Name Stealers" in either barata's hook or -InSaNe-'s? This is the basic code behind it. This only changes the name the server refers to you as.
    To change your general name, you don't need this but it's as simple as writing the name to the correct address.

  5. #4
    XiAtomikiX's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Posts
    141
    Reputation
    22
    Thanks
    31
    Quote Originally Posted by Kenshin13 View Post
    See those "Name Stealers" in either barata's hook or -InSaNe-'s? This is the basic code behind it. This only changes the name the server refers to you as.
    To change your general name, you don't need this but it's as simple as writing the name to the correct address.
    i thanks for this i was trying to figure this out for a while. lol

    I added 6 different names to a menu so in game i bring up my menu and choose one of the names i want to change too.
    kinda helps with servers who watch for your name.

  6. #5
          ( ° ͜ʖ͡°)╭∩╮
    Former Staff
    MarkHC's Avatar
    Join Date
    Nov 2011
    Gender
    male
    Location
    127.0.0.1
    Posts
    2,750
    Reputation
    66
    Thanks
    14,529
    My Mood
    Angelic
    Where are the credits?

    Yes I'm annoying.. but that's because someone worked hard to find this stuff... And, no offense, it wasn't you Am I right @intervention61?


    CoD Minion from 09/19/2012 to 01/10/2013

  7. #6
    intervention61's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    285
    Reputation
    10
    Thanks
    875
    My Mood
    Cool
    Quote Originally Posted by -InSaNe- View Post
    Where are the credits?

    Yes I'm annoying.. but that's because someone worked hard to find this stuff... And, no offense, it wasn't you Am I right @intervention61?
    Excatly, thanks for letting me know. This guy's leeching goes on and on lol

    also OP btw
    Code:
    bool ChangeName(char* Name)
    {
    	char buf[100];
    	sprintf_s(buf, "userinfo \"\\name\\%s\"", *Name);
    	if(SendCommandToConsole(buf))
    		SendCommandToConsole("rate 20000");
    	return TRUE;
    }
    that will crash. Don't dereference. Use this.
    Code:
    sprintf_s(buf, "userinfo \"\\name\\%s\"", Name);
    Last edited by intervention61; 09-29-2012 at 10:26 AM.
    "Joker: why the hakcer are steaklign us name it´s the greatest asshole and motherfucker and i fuck him or her mother"

  8. The Following User Says Thank You to intervention61 For This Useful Post:

    Kenshin13 (09-29-2012)

  9. #7
    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 intervention61 View Post
    Excatly, thanks for letting me know.

    also OP btw
    Code:
    bool ChangeName(char* Name)
    {
    	char buf[100];
    	sprintf_s(buf, "userinfo \"\\name\\%s\"", *Name);
    	if(SendCommandToConsole(buf))
    		SendCommandToConsole("rate 20000");
    	return TRUE;
    }
    that will crash. Don't dereference. Use this.
    Code:
    sprintf_s(buf, "userinfo \"\\name\\%s\"", Name);
    Poop, I forgot to add credits, however, I didn't get this from you.
    And thx for the fix, will update it now.

  10. #8
          ( ° ͜ʖ͡°)╭∩╮
    Former Staff
    MarkHC's Avatar
    Join Date
    Nov 2011
    Gender
    male
    Location
    127.0.0.1
    Posts
    2,750
    Reputation
    66
    Thanks
    14,529
    My Mood
    Angelic
    Quote Originally Posted by Kenshin13 View Post
    however, I didn't get this from you.
    He IS BaberZz


    CoD Minion from 09/19/2012 to 01/10/2013

  11. The Following User Says Thank You to MarkHC For This Useful Post:

    Kenshin13 (09-29-2012)

  12. #9
    Kenshin13's Avatar
    Join Date
    May 2011
    Gender
    male
    Location
    Cloud 9
    Posts
    3,470
    Reputation
    564
    Thanks
    6,168
    My Mood
    Psychedelic
    Oops.....my bad bro...... Major props for this
    I need to stop forgetting my credits....Like you -InSaNe-
    :troll:

  13. The Following User Says Thank You to Kenshin13 For This Useful Post:

    Jorndel (09-29-2012)

Similar Threads

  1. [Patched] MPGH Name Faker v4.0 [Updated]
    By Jorndel in forum Call of Duty 8 - Modern Warfare 3 (MW3) Hacks & Cheats
    Replies: 53
    Last Post: 05-31-2012, 01:05 PM
  2. [Help Request] MPGH Name Faker V2
    By forest lee in forum Call of Duty Modern Warfare 3 Help
    Replies: 3
    Last Post: 04-27-2012, 04:05 PM
  3. [Patched] MPGH Name Faker v4.0
    By Jorndel in forum Call of Duty 8 - Modern Warfare 3 (MW3) Hacks & Cheats
    Replies: 25
    Last Post: 04-17-2012, 08:16 PM
  4. [Patched] MPGH Name Faker V2
    By Coridus in forum Call of Duty 8 - Modern Warfare 3 (MW3) Hacks & Cheats
    Replies: 20
    Last Post: 04-01-2012, 12:38 PM
  5. [Patched] MPGH Name Faker
    By Jorndel in forum Call of Duty 8 - Modern Warfare 3 (MW3) Hacks & Cheats
    Replies: 38
    Last Post: 03-16-2012, 10:41 AM