From 1e9fda16300c2e20c5a50656ee45c5d8dbef8eca Mon Sep 17 00:00:00 2001 From: denisapain <126583428+denisapain@users.noreply.github.com> Date: Sat, 2 Dec 2023 13:54:11 +0200 Subject: [PATCH] Update README.md --- README.md | 27 ++++++++++++++++++++++++++- 1 file changed, 26 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a109cdb..b5b2122 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,27 @@ # PrismLauncherAccountBypass -Very short command to make a "default" offline account so you don't have to buy minecraft :D +Short command to make a "default" offline account so you don't have to buy minecraft on [prismlauncher](https://prismlauncher.org) :D + + + +### Windows: +``` +echo {"accounts": [{"entitlement": {"canPlayMinecraft": true,"ownsMinecraft": true},"type": "Offline"}],"formatVersion": 3} > %appdata%/PrismLauncher/accounts.json +``` + + +### macOS: +``` +echo '{"accounts": [{"entitlement": {"canPlayMinecraft": true,"ownsMinecraft": true},"type": "Offline"}],"formatVersion": 3}' > ~/Library/Application\ Support/PrismLauncher/accounts.json +``` + + +### Linux: +``` +echo '{"accounts": [{"entitlement": {"canPlayMinecraft": true,"ownsMinecraft": true},"type": "Offline"}],"formatVersion": 3}' > ~/.local/share/PrismLauncher/accounts.json +``` + + +### Linux (Flatpak): +``` +echo '{"accounts": [{"entitlement": {"canPlayMinecraft": true,"ownsMinecraft": true},"type": "Offline"}],"formatVersion": 3}' > ~/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/accounts.json +```