Results 1 to 14 of 14
  1. #1
    New's Avatar
    Join Date
    Jun 2014
    Gender
    male
    Location
    Location:
    Posts
    2,605
    Reputation
    386
    Thanks
    4,708
    My Mood
    Angelic

    Completely hide your name (KRelay)



    Made a quick edit that changes your chat name.
    Only you can see the name change.
    Talk to the golden guy in the nexus that changes your name to change it.
    Clicking his "buy 1000" button wont spend you any gold.

    Code:
            public void Initialize(Proxy proxy)
            {
                proxy.HookPacket(PacketType.CHOOSENAME, onName);
                proxy.HookPacket(PacketType.TEXT, onText);
            }
    
            private void onText(Client client, Packet packet)
            {
                //Change chat name too
                if (((TextPacket)packet).ObjectId == client.ObjectId && newname != "")
                {
                    //Console.WriteLine("Changing your text name..");
                    (((TextPacket)packet).Name) = newname;
                    if(!string.IsNullOrEmpty(textPacket.Recipient))
                    {
                         textPacket.Recipient = "Hidden";
                    }
                }
                   //Change tell name - thanks to killerbekilled
                    if(!string.IsNullOrEmpty(textPacket.Recipient) && newname != "")
                    {
                         textPacket.Recipient = newname;
                    }
            }
    
            private void onName(Client client, Packet packet)
            {
                try
                { 
                    ChooseNamePacket load = (ChooseNamePacket)packet;
                    newname = load.Name;
                    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());
                }
    
    
            }
    Last edited by New; 06-29-2017 at 11:22 AM.
    New

    Current Project:
    SimpleExaltHack

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

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

    fuckT (06-28-2017)

  3. #2
    gaelicanlol's Avatar
    Join Date
    Jan 2015
    Gender
    male
    Posts
    359
    Reputation
    27
    Thanks
    43
    Oh, all the bans this is gonna cause, it'll be beautiful

  4. #3
    123456howard's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Location
    Searching...
    Posts
    877
    Reputation
    49
    Thanks
    790
    My Mood
    Flirty
    Quote Originally Posted by PKTINOS View Post


    Made a quick edit that changes your chat name.
    Only you can see the name change.
    Talk to the golden guy in the nexus that changes your name to change it.
    Clicking his "buy 1000" button wont spend you any gold.

    Code:
            public void Initialize(Proxy proxy)
            {
                proxy.HookPacket(PacketType.CHOOSENAME, onName);
                proxy.HookPacket(PacketType.TEXT, onText);
            }
    
            private void onText(Client client, Packet packet)
            {
                //Change chat name too
                if (((TextPacket)packet).ObjectId == client.ObjectId && newname != "")
                {
                    //Console.WriteLine("Changing your text name..");
                    (((TextPacket)packet).Name) = newname;
                }
            }
    
            private void onName(Client client, Packet packet)
            {
                try
                { 
                    ChooseNamePacket load = (ChooseNamePacket)packet;
                    newname = load.Name;
                    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());
                }
    
    
            }
    Is this name change permanent?


  5. #4
    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 123456howard View Post
    Is this name change permanent?
    Quote Originally Posted by gaelicanlol View Post
    Oh, all the bans this is gonna cause, it'll be beautiful
    Its client sided, only you can see your new name.

    It stays until you close the client
    New

    Current Project:
    SimpleExaltHack

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

  6. #5
    123456howard's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Location
    Searching...
    Posts
    877
    Reputation
    49
    Thanks
    790
    My Mood
    Flirty
    Quote Originally Posted by PKTINOS View Post



    Its client sided, only you can see your new name.

    It stays until you close the client
    This means it isn't banable?


  7. #6
    gaelicanlol's Avatar
    Join Date
    Jan 2015
    Gender
    male
    Posts
    359
    Reputation
    27
    Thanks
    43
    Quote Originally Posted by PKTINOS View Post



    Its client sided, only you can see your new name.

    It stays until you close the client
    oh, i meant all the ppl that will just change their name to someone else's and type like /follow me hehexd in the fametrain and screenshot it for reddit fame. i think a few people might get banned until deca catches on, but i might be wrong

  8. #7
    sylvansilent's Avatar
    Join Date
    Oct 2016
    Gender
    female
    Posts
    52
    Reputation
    10
    Thanks
    11
    Quote Originally Posted by gaelicanlol View Post
    oh, i meant all the ppl that will just change their name to someone else's and type like /follow me hehexd in the fametrain and screenshot it for reddit fame. i think a few people might get banned until deca catches on, but i might be wrong
    Pretty sure DECA checks your chatlogs, so they won't ban just off screenshots, since as shown, they can easily be faked.

  9. #8
    Kushala Daora's Avatar
    Join Date
    Oct 2013
    Gender
    male
    Location
    RealmSupply
    Posts
    1,075
    Reputation
    73
    Thanks
    642
    My Mood
    Angelic
    Quote Originally Posted by sylvansilent View Post
    Pretty sure DECA checks your chatlogs, so they won't ban just off screenshots, since as shown, they can easily be faked.
    How do you think the ban service works?

    "There is no higher form of user validation than having customers support your product with their wallets." ~ Google


  10. #9
    Killer Be Killed's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    212
    Reputation
    53
    Thanks
    2,352
    My Mood
    Asleep
    Just a heads up: This doesn't completely hide your name.

    If someone sends you a PM, your name will show up in chat as: 'To: <YourName> Message Here'

    You can hide this by adding some extra code to the TextPacket hook:

    Code:
    if(!string.IsNullOrEmpty(textPacket.Recipient))
    {
        textPacket.Recipient = "Hidden";
    }

  11. The Following User Says Thank You to Killer Be Killed For This Useful Post:

    New (06-29-2017)

  12. #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 Killer Be Killed View Post
    Just a heads up: This doesn't completely hide your name.

    If someone sends you a PM, your name will show up in chat as: 'To: <YourName> Message Here'

    You can hide this by adding some extra code to the TextPacket hook:

    Code:
    if(!string.IsNullOrEmpty(textPacket.Recipient))
    {
        textPacket.Recipient = "Hidden";
    }
    Good thinking, forgot about pm's

    Added to main post.
    New

    Current Project:
    SimpleExaltHack

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

  13. #11
    sean...'s Avatar
    Join Date
    Jul 2017
    Gender
    male
    Posts
    8
    Reputation
    10
    Thanks
    1
    Thanks gonna troll a lot of people now <3

  14. #12
    -r2d2-'s Avatar
    Join Date
    Dec 2013
    Gender
    male
    Posts
    83
    Reputation
    42
    Thanks
    23
    Could someone help me on how to make this into a plugin for K-Relay? I don't know what to do

  15. #13
    Riigged's Avatar
    Join Date
    Jan 2013
    Gender
    male
    Location
    no
    Posts
    3,846
    Reputation
    401
    Thanks
    10,254
    My Mood
    Devilish
    i feel like you already released this for some reason in the main forum
    i think you uploaded some different thing but it had this as a feature
    de ja vuuuuuuuuuuuuuuu or no

     








  16. #14
    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 Riigged View Post
    i feel like you already released this for some reason in the main forum
    i think you uploaded some different thing but it had this as a feature
    de ja vuuuuuuuuuuuuuuu or no
    This one also hides your name in chat, the other one didn't.
    New

    Current Project:
    SimpleExaltHack

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

Similar Threads

  1. How to make your name completely blank?
    By qwerty3322 in forum Garry's Mod Discussions & Help
    Replies: 3
    Last Post: 07-28-2014, 06:34 PM
  2. Hide your name?
    By 10quake1 in forum Minecraft Discussions
    Replies: 7
    Last Post: 08-10-2013, 07:59 PM
  3. tell here your name on ca so we can be friends xD
    By crazy-tatar in forum Combat Arms Europe Hacks
    Replies: 28
    Last Post: 03-05-2009, 01:43 PM
  4. [TUT]Spoof your name including GM Rank
    By Mat901 in forum Combat Arms Hacks & Cheats
    Replies: 11
    Last Post: 08-22-2008, 04:57 AM
  5. COD4 - Change your name to ANYTHING you want ingame
    By icuigorz in forum Call of Duty 4 - Modern Warfare (MW) Hacks
    Replies: 3
    Last Post: 07-11-2008, 11:48 AM