Source FakeName for Minecraft|Free

CrazyTrap

Newbie
Newbie
Newbie
Newbie
Status
Offline
Joined
Jul 18, 2023
Messages
707
Reaction score
3
Attention all Minecraft aficionados! Rejoice as you delve into our exclusive thread featuring free and downloadable Minecraft resources, including the highly sought-after source «FakeName». As enthusiasts ourselves, we understand the value of credible and effective sources, which is why every entry in the "Minecraft Cheat Sources" section has undergone rigorous testing to guarantee reliability.

1661378948_37-kartinkin-net-p-fentezi-postroiki-v-mainkraft-oboi-krasivo-43.png

FakeName:

JavaScript:
public class FakeNameCommand
        extends CommandAbstract {
    public static String oldName;
    public static String currentName;
    public static boolean canChange;

    public FakeNameCommand() {
        super("fakename", "fakename", "\u00a76.fakename" + (Object)((Object)ChatFormatting.WHITE) + " set \u00a73<name> |" + (Object)((Object)ChatFormatting.WHITE) + " reset", "\u00a76.fakename" + (Object)((Object)ChatFormatting.WHITE) + " set \u00a73<name> |" + (Object)((Object)ChatFormatting.WHITE) + " reset", "fakename");
    }

    @Override
    public void execute(String ... arguments) {
        try {
            if (arguments.length >= 2) {
                oldName = FakeNameCommand.mc.player.getName();
                if (arguments[0].equalsIgnoreCase("fakename")) {
                    if (arguments[1].equalsIgnoreCase("set")) {
                        currentName = arguments[2];
                        canChange = true;
                        ChatUtils.addChatMessage((Object)((Object)ChatFormatting.GREEN) + "Successfully" + (Object)((Object)ChatFormatting.WHITE) + " changed your name to " + (Object)((Object)ChatFormatting.RED) + arguments[2]);
                        NotifRender.queue("FakeName Manager", (Object)((Object)ChatFormatting.GREEN) + "Successfully" + (Object)((Object)ChatFormatting.WHITE) + " changed your name to " + (Object)((Object)ChatFormatting.RED) + arguments[2], 4, NotifModern.SUCCESS);
                    }
                    if (arguments[1].equalsIgnoreCase("reset")) {
                        currentName = oldName;
                        canChange = false;
                        ChatUtils.addChatMessage((Object)((Object)ChatFormatting.GREEN) + "Successfully" + (Object)((Object)ChatFormatting.WHITE) + " reset your name!");
                        NotifRender.queue("FakeName Manager", (Object)((Object)ChatFormatting.GREEN) + "Successfully" + (Object)((Object)ChatFormatting.WHITE) + " reset your name!", 4, NotifModern.SUCCESS);
                    }
                }
            } else {
                ChatUtils.addChatMessage(this.getUsage());
            }
        }
        catch (Exception exception) {
            // empty catch block
        }
    }
}
 
Top