Wednesday, February 22, 2012

How do I change my offline name on the mac?

Question

I want to change my offline name in MineCraft on my mac.

I have only found ways to change it on Linux and Windows. Is there any way I can change my offline username on my mac?

Asked by user1079160

Answer

You can do it, but not through the Minecraft launcher. Open TextEdit and make sure it's in plain text mode. If it isn't, choose "Make Plain Text" from the Format menu. Then enter the following text:

#!/bin/bash
cd ~/Library/Application\ Support/minecraft
java -Xms512m -Xmx1024m -cp "bin/*" -Djava.library.path="bin/natives" net.minecraft.client.Minecraft "YOURNAMEHERE"

Replace YOURNAMEHERE with the name you want, but keep it in quotes. Now save your file, and make sure you uncheck the box that says "If no extension is provided, use '.txt'." Save the file as launcher.command (you can call it whatever you wish, just make sure it ends with .command).

Now in order to make this launchable with a double-click, open up Terminal and type sudo chmod 777 and then drag and drop your file on to the Terminal window. Then press Return. It will prompt you for your password, which you should enter. You can now close Terminal.

The file will now be executable, so you can run it by double-clicking. It will open Minecraft in offline mode with the custom name. If you ever want to change the name, right-click the file and choose Open With > TextEdit. You can then edit the name and save the file, and it will use the new name.

Answered by Jake King

No comments:

Post a Comment