Skip to content

docs: Add commands to parse game and distro details #9

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 14 additions & 4 deletions getting-started/developer-commands.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,23 @@ This command also enables dev debug that outputs everything LinuxGSM is doing to
./gameserver dev
```

### Detect Details
### Parse Game(-server) Details

Detects variables that are set up to be displayed in details.
Detects and displays all variables that the `info_game.sh` script parses from the gameserver configuration files.
There will always be a lot of `Missing or Unsupported Server Details`. This is because different games have different server details.

```bash
./gameserver parse-game-details
./gameserver pgd
```
./gameserver detect-details
./gameserver ddt

### Parse Distro Details

Detects and displays all variables that the `info_distro.sh` script parses from the operating system.

```bash
./gameserver parse-distro-details
./gameserver pdd
```

### Detect Dependencies
Expand Down