BakkesLinux icon indicating copy to clipboard operation
BakkesLinux copied to clipboard

No RL installation detected

Open zcharo99 opened this issue 2 years ago • 17 comments

When I launch Rocket League from Heroic Games and then running BakkesMod.exe as said in the tutorial, I disable safe mode and I get: No RL installation detected

Command used to launch: WINEPREFIX="/home/giulixx/Games/Heroic/Prefixes/default/Rocket League" "/home/giulixx/.var/app/com.heroicgameslauncher.hgl/config/heroic/tools/wine/Wine-GE-latest/bin/wine" "/home/giulixx/Games/Heroic/Prefixes/default/Rocket League/drive_c/Program Files/BakkesMod/BakkesMod.exe" img

zcharo99 avatar Mar 31 '24 19:03 zcharo99

Hmmm I'm not really sure what could be the problem. I don't use Heroic but I'll give it a try when I have some free time.

CrumblyLiquid avatar Apr 14 '24 11:04 CrumblyLiquid

Okay. Oh and also I tried using every derivate of wine or proton (and the original ones) but they seem to still not work.

zcharo99 avatar Apr 15 '24 15:04 zcharo99

It seems from the path that you're probably using a Flatpak version of Heroic? If that's the case it may be that the sandboxing that Flatpak does prevents the BakkesMod process to see into the sandbox to inject into Rocket League? I'm not sure why.

CrumblyLiquid avatar Apr 17 '24 10:04 CrumblyLiquid

I found this Reddit post and also this comment on the original BakkesMod Linux issue that mentions simmilar or the same problem that you're having.

After a bit of digging I found the flatpak enter command that could maybe work. The downside is that it has to be run as root. More info in the docs and on this StackExchange question

I don't have either Steam or Heroic in the Flatpak version to test. That's something I might try when I have more time.

CrumblyLiquid avatar Apr 17 '24 11:04 CrumblyLiquid

But I don't have the flatpak version of Heroic or Steam

zcharo99 avatar Apr 17 '24 16:04 zcharo99

While searching for a reason I can no longer get BakkesMod to inject on FreeBSD, I came across this issue. Here is how I get BakkesMod to be happy which I found by looking at the code for BakkesMod. See https://github.com/bakkesmodorg/BakkesModInjectorCpp/blob/master/BakkesModInjectorC%2B%2B/BakkesModInstallation.cpp#L507

This is part of the script I run to start bakkesmod. You may need to tweak it for Heroic Games.

dot_config=${WINEPREFIX}/drive_c/users/${USER}/.config
mkdir -p ${dot_config}
if [ ! -L ${dot_config}/legendary ]
then
	(cd ${dot_config} && ln -sf ${HOME}/.config/legendary .)
fi

scfarley avatar Aug 16 '24 22:08 scfarley