docs: add Game Not Found troubleshooting for Kyber

When Kyber can't locate SWBF2 it shows a SET GAME FOLDER dialog.
Document the find command to locate the install path on any system.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01D8ckUJQtj1pH8jtAddBDZs
This commit is contained in:
Claude
2026-06-25 14:35:50 +00:00
parent 01796c3041
commit d3dfc900b8
2 changed files with 12 additions and 0 deletions
+8
View File
@@ -173,6 +173,14 @@ creates a `kyber` command in `~/.local/bin`.
Kyber does not launch the game itself — Steam must start it first.
**If Kyber says "Game Not Found":**
Click **SET GAME FOLDER** and point it to the SWBF2 install directory.
Find it with:
```bash
find ~/.steam/steam/steamapps -name "starwarsbattlefrontii.exe" 2>/dev/null | head -1 | xargs dirname
```
Paste that path into the SET GAME FOLDER dialog.
**First run (one-time setup):**
1. Click **EA Account** → log in with your EA credentials in the browser
2. Click **Skip** on Nexus Mods (optional, only needed for mods)
+4
View File
@@ -172,6 +172,10 @@ echo " HOST → pick maps → set a name and PASSWORD → Start Server."
echo " Share the server name + password with friends (they search by name in HOME)."
echo " Bots fill empty slots automatically — no separate bot setting needed."
echo ""
echo "If Kyber says 'Game Not Found':"
echo " Click SET GAME FOLDER and run this to find the path:"
echo " find ~/.steam/steam/steamapps -name 'starwarsbattlefrontii.exe' 2>/dev/null | head -1 | xargs dirname"
echo ""
echo "SWBF2 must be installed via Steam (AppID 1237950) with GE-Proton."
echo "GE-Proton: https://github.com/GloriousEggroll/proton-ge-custom/releases"
echo ""