Introducing MPGH's AIGA. The latest advancement in artificial intelligence. Click here now to learn more!
Page 1 of 2 12 LastLast
Results 1 to 15 of 19
  1. #1
    New's Avatar
    Join Date
    Jun 2014
    Gender
    male
    Location
    Location:
    Posts
    2,605
    Reputation
    386
    Thanks
    4,708
    My Mood
    Angelic

    Name changer plugin

    I remember back in the day I made a help&request thread on how to change your name using krelay and I got answers pointing me to cheat engine and client manipulation.

    I made a plugin that lets you change your name, it stays through out server & realm changing, here is the needed code for you to remake it

    Code:
     
            public void Initialize(Proxy proxy)
            {
                proxy.HookPacket(PacketType.CHOOSENAME, onName);
            }
    
            private void onName(Client client, Packet packet)
            {
                try
                {
                    ChooseNamePacket load = (ChooseNamePacket)packet;
                    load.Send = false;
                    NameResultPacket name = (NameResultPacket)Packet.Create(PacketType.NAMERESULT);
                    name.Success = true;
                    name.ErrorText = "";
                    client.SendToClient(name);
                }
                catch(Exception ex)
                {
                    Console.WriteLine(ex.ToString());
                }
               
               
            }
    Then, you basically go to the thing that requires 1000 gold and change your name to anything as seen here:

    Bad quality because im bored to upload a HQ gif, but results should be easily seen.
    New

    Current Project:
    SimpleExaltHack

    Outdated stuff I made in the past:
    Famebot
    Clientless tradebot
    RotMG ping checker
    Zautonexus crack

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

    Alde. (12-04-2016),fuckT (11-29-2016),Mr_Guy (11-29-2016),sjdhfhf (12-05-2016)

  3. #2
    Rob's Avatar
    Join Date
    Nov 2016
    Gender
    male
    Location
    Wherever the wind of life decides to takes me, for instance, my parent's basement right now.
    Posts
    3,155
    Reputation
    326
    Thanks
    1,363
    My Mood
    Amazed
    So from the load send it doesn't actually send any requests to the server?

  4. #3
    New's Avatar
    Join Date
    Jun 2014
    Gender
    male
    Location
    Location:
    Posts
    2,605
    Reputation
    386
    Thanks
    4,708
    My Mood
    Angelic
    It pretty much fakes the response from the server, to make the client think you bought a name change, so the client does the work for you and changes the name, since you "bought" the name change

    - - - Updated - - -

    Quote Originally Posted by ROBBOBBY View Post
    So from the load send it doesn't actually send any requests to the server?
    The choosenamepacket (called load in this situation,not a loadpacket though) never reaches the server, and the server responds normally with
    Code:
    NameResultPacket name = (NameResultPacket)Packet.Create(PacketType.NAMERESULT);
                    name.Success = false;
                    name.ErrorText = error;
    if you dont have enough gold, but if the server never gets the choosenamepacket, we can emulate the server with KRelay and reply manually with
    Code:
     name.Success = true;
    New

    Current Project:
    SimpleExaltHack

    Outdated stuff I made in the past:
    Famebot
    Clientless tradebot
    RotMG ping checker
    Zautonexus crack

  5. The Following User Says Thank You to New For This Useful Post:

    Rob (11-28-2016)

  6. #4
    Ahl's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Location
    /modcp
    Posts
    16,599
    Reputation
    3219
    Thanks
    5,383
    My Mood
    Angelic
    That's pretty cool. Could use that and hack on twitch but people won't be able to report you if you hide out stars & guild + ensure pet is never shown
    News Force Head Editor from 09/14/2018 - 03/02/2020
    Publicist from 11/23/2017 - 06/07/2019
    Global Moderator since 09/24/2017
    Minion+ from 04/16/2017 - 09/24/2017
    Market Place Minion from 04/16/2017 - 09/24/2017
    Minecraft Minion from 02/23/2017 - 09/24/2017
    Realm of the Mad God Minion from 11/06/2016 - 09/24/2017

    Middleman from 09/14/2016 - 09/24/2017
    News Force Editor from 08/23/2016 - 09/14/2018
    News Force (Section of the Week) from 03/21/2016 - 07/17/2017
    News Force (User News) from 10/18/2015 - 09/14/2018

    Donator since 03/16/2015
    Realm of the Mad God Editor from 05/20/2014 - 07/08/2014
    Member since 12/23/2012


    Rep Power: 82

  7. #5
    Garlic Bread's Avatar
    Join Date
    Nov 2016
    Gender
    male
    Location
    In your oven
    Posts
    450
    Reputation
    25
    Thanks
    20
    so is this perma free name change or just like dye faker?

  8. #6
    AzzyG's Avatar
    Join Date
    Aug 2016
    Gender
    male
    Location
    I Think The Worst Thing You Can Do About a Situation Is Nothing
    Posts
    1,732
    Reputation
    261
    Thanks
    476
    Kalle will be back soon

  9. #7
    Rob's Avatar
    Join Date
    Nov 2016
    Gender
    male
    Location
    Wherever the wind of life decides to takes me, for instance, my parent's basement right now.
    Posts
    3,155
    Reputation
    326
    Thanks
    1,363
    My Mood
    Amazed
    Quote Originally Posted by Garlic Bread View Post
    so is this perma free name change or just like dye faker?
    Read his reply to my question, its like dye faker.

  10. #8
    iliketrainz's Avatar
    Join Date
    Oct 2012
    Gender
    male
    Posts
    644
    Reputation
    39
    Thanks
    142
    Can someone please tell me what 'try' in OP's sc does? Under private void onName

  11. #9
    Riigged's Avatar
    Join Date
    Jan 2013
    Gender
    male
    Location
    no
    Posts
    3,846
    Reputation
    401
    Thanks
    10,254
    My Mood
    Devilish
    Quote Originally Posted by iliketrainz View Post
    Can someone please tell me what 'try' in OP's sc does? Under private void onName
    It tries executing that given code, and catches any error for example

     








  12. The Following User Says Thank You to Riigged For This Useful Post:

    iliketrainz (11-29-2016)

  13. #10
    New's Avatar
    Join Date
    Jun 2014
    Gender
    male
    Location
    Location:
    Posts
    2,605
    Reputation
    386
    Thanks
    4,708
    My Mood
    Angelic
    Quote Originally Posted by iliketrainz View Post
    Can someone please tell me what 'try' in OP's sc does? Under private void onName
    It "tries" to run any code between the curly brackets, if there is some exception (simplest example: division by zero), do whatever is in the "catch" curly brackets.
    New

    Current Project:
    SimpleExaltHack

    Outdated stuff I made in the past:
    Famebot
    Clientless tradebot
    RotMG ping checker
    Zautonexus crack

  14. The Following User Says Thank You to New For This Useful Post:

    iliketrainz (11-29-2016)

  15. #11
    Hentai's Avatar
    Join Date
    Apr 2016
    Gender
    male
    Location
    Turkey
    Posts
    7,801
    Reputation
    660
    Thanks
    4,194
    My Mood
    Angelic
    Quite useful for cheaters who are aiming to start a channel. Due to the reason no one will actually be able to find your real identity, unless you use some unique dyes.

  16. #12
    iliketrainz's Avatar
    Join Date
    Oct 2012
    Gender
    male
    Posts
    644
    Reputation
    39
    Thanks
    142
    Quote Originally Posted by Heaven View Post
    use some unique dyes
    Dye skin faker. :3

  17. #13
    The 7th Hokage's Avatar
    Join Date
    Feb 2015
    Gender
    male
    Location
    Konoha
    Posts
    2,424
    Reputation
    264
    Thanks
    1,324
    My Mood
    Chatty
    I'm pretty much noob as everyone knowns... How would I use this?

  18. #14
    MikeRaarupBirk's Avatar
    Join Date
    Mar 2016
    Gender
    male
    Posts
    1,583
    Reputation
    38
    Thanks
    3,775
    My Mood
    Stressed
    Quote Originally Posted by Ace's Sheep View Post
    I'm pretty much noob as everyone knowns... How would I use this?
    " here is the needed code for you to remake it"

  19. #15
    The 7th Hokage's Avatar
    Join Date
    Feb 2015
    Gender
    male
    Location
    Konoha
    Posts
    2,424
    Reputation
    264
    Thanks
    1,324
    My Mood
    Chatty
    Quote Originally Posted by MikeRaarupBirk View Post
    " here is the needed code for you to remake it"

    Quote Originally Posted by Ace's Sheep View Post
    How would I use this?
    As of him actually doing it.

Page 1 of 2 12 LastLast

Similar Threads

  1. [Request] Name Changer
    By Rikkaal in forum Gunz General
    Replies: 4
    Last Post: 07-17-2010, 11:08 AM
  2. Need Name Changer For non PB server Windows XP :D
    By PoPoDoM in forum Call of Duty Modern Warfare Help
    Replies: 0
    Last Post: 04-02-2010, 10:00 AM
  3. need name changer for cod4 VISTA user
    By sufian123 in forum Call of Duty Modern Warfare Help
    Replies: 2
    Last Post: 03-24-2010, 03:45 PM
  4. Is there any name changers?
    By PKUDEAD in forum Combat Arms Discussions
    Replies: 11
    Last Post: 12-22-2009, 01:49 PM
  5. Name Changer
    By password911 in forum Combat Arms Hacks & Cheats
    Replies: 31
    Last Post: 08-20-2008, 08:38 AM