LOC taken from https://github.com/Diegiwg/PrismLauncher-Cracked
You will need to have Git installed at least
- Download ZIP @ https://gitlab.archlinux.org/archlinux/packaging/packages/prismlauncher
- Extract ZIP and cd into it
- Download PKGBUILD from here and replace the one in the repository
git clone https://github.com/PrismLauncher/PrismLauncher PrismLauncher-10.0.2cd PrismLauncher-10.0.2 && git taggit checkout tags/10.0.2git submodule update --init --recursivecd ..- Open PrismLauncher-10.0.2 in a code editor
- Open
launcher/minecraft/auth/AccountList.cpp - Replace:
bool AccountList::anyAccountIsValid()
{
for (auto account : m_accounts) {
if (account->ownsMinecraft()) {
return true;
}
}
return false;
}With:
bool AccountList::anyAccountIsValid()
{
return true;
}- Open
launcher/minecraft/auth/MinecraftAccount.h - Replace:
bool ownsMinecraft() const { return data.type != AccountType::Offline && data.minecraftEntitlement.ownsMinecraft; }With:
bool ownsMinecraft() const { return true; }- Finally in the terminal, run
makepkg -siand it will be installed!