[PR #2359] [MERGED] feat(newserver): Soldier of Fortune 2: Gold Edition #3611

Closed
opened 2026-02-27 03:55:09 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/GameServerManagers/LinuxGSM/pull/2359
Author: @tkrn
Created: 5/13/2019
Status: Merged
Merged: 6/3/2019
Merged by: @dgibbs64

Base: developHead: feature/sof2gold


📝 Commits (10+)

  • 1258789 Merge branch 'release/190503'
  • b0bc79b Merge branch 'release/190509'
  • 747d025 feature/sof2gold server add
  • 6278796 Merge branch 'develop' into feature/sof2gold
  • 1f8927c Merge branch 'develop' into feature/sof2gold
  • 1e74e2d Added sleep timer for SOF2
  • 8814a8c moved LD_LIBRARY_PATH to fix_sof2.sh
  • bdd6fc4 updated message
  • 54e1f9c corrected fix
  • 33c2c19 added missing :

📊 Changes

11 files changed (+197 additions, -0 deletions)

View changed files

lgsm/config-default/config-lgsm/sof2server/_default.cfg (+119 -0)
📝 lgsm/data/serverlist.csv (+1 -0)
📝 lgsm/functions/core_functions.sh (+5 -0)
📝 lgsm/functions/fix.sh (+2 -0)
lgsm/functions/fix_sof2.sh (+11 -0)
📝 lgsm/functions/info_config.sh (+23 -0)
📝 lgsm/functions/info_glibc.sh (+3 -0)
📝 lgsm/functions/info_messages.sh (+11 -0)
📝 lgsm/functions/info_parms.sh (+14 -0)
📝 lgsm/functions/install_config.sh (+6 -0)
📝 lgsm/functions/install_server_files.sh (+2 -0)

📄 Description

Description

Adding a new feature Soldier of Fortune 2: Gold Edition version 1.03 of the server binary and pk3 files.

fixes #2210

Type of change

  • Bug fix (change which fixes an issue).
  • New feature (change which adds functionality).
  • New Server (new server added).
  • Refactor (restructures existing code).
  • Comment update (typo, spelling, explanation, examples, etc).
  • This change requires a documentation update.

Checklist

  • This code follows the style guidelines of this project.
  • This pull request links to an issue.
  • This pull request uses the develop branch as its base.
  • I have provided Co-author details below.
  • I have performed a self-review of my own code.
  • I have squashed commits.
  • I have commented my code, particularly in hard to understand areas.
  • I have made corresponding changes to the documentation if required.

Authored-by: tkrn <tkrn@users.noreply.github.com>


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/GameServerManagers/LinuxGSM/pull/2359 **Author:** [@tkrn](https://github.com/tkrn) **Created:** 5/13/2019 **Status:** ✅ Merged **Merged:** 6/3/2019 **Merged by:** [@dgibbs64](https://github.com/dgibbs64) **Base:** `develop` ← **Head:** `feature/sof2gold` --- ### 📝 Commits (10+) - [`1258789`](https://github.com/GameServerManagers/LinuxGSM/commit/12587890407e699f5968e612359446d323afe7bc) Merge branch 'release/190503' - [`b0bc79b`](https://github.com/GameServerManagers/LinuxGSM/commit/b0bc79bc4754cd9e92cfa9104d627dda74249c02) Merge branch 'release/190509' - [`747d025`](https://github.com/GameServerManagers/LinuxGSM/commit/747d02502d694e486a3e58c1f0756e56bc422dfa) feature/sof2gold server add - [`6278796`](https://github.com/GameServerManagers/LinuxGSM/commit/6278796b1d9d94fe07be7907d6fe39ff1140b361) Merge branch 'develop' into feature/sof2gold - [`1f8927c`](https://github.com/GameServerManagers/LinuxGSM/commit/1f8927c7a1eadd24ed7be8c03d45ad706c1c69c5) Merge branch 'develop' into feature/sof2gold - [`1e74e2d`](https://github.com/GameServerManagers/LinuxGSM/commit/1e74e2da6fe240651889b6f00e300c564558d747) Added sleep timer for SOF2 - [`8814a8c`](https://github.com/GameServerManagers/LinuxGSM/commit/8814a8c9e7e683fd105f20f95269f69bbc7370ce) moved LD_LIBRARY_PATH to fix_sof2.sh - [`bdd6fc4`](https://github.com/GameServerManagers/LinuxGSM/commit/bdd6fc477f4306ff466ea7bdee7ce3d927983fe1) updated message - [`54e1f9c`](https://github.com/GameServerManagers/LinuxGSM/commit/54e1f9c855fa0a96b2141147b1b446fb93dd817e) corrected fix - [`33c2c19`](https://github.com/GameServerManagers/LinuxGSM/commit/33c2c199df49cf1382631a0eb0d35731269ff8a1) added missing : ### 📊 Changes **11 files changed** (+197 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `lgsm/config-default/config-lgsm/sof2server/_default.cfg` (+119 -0) 📝 `lgsm/data/serverlist.csv` (+1 -0) 📝 `lgsm/functions/core_functions.sh` (+5 -0) 📝 `lgsm/functions/fix.sh` (+2 -0) ➕ `lgsm/functions/fix_sof2.sh` (+11 -0) 📝 `lgsm/functions/info_config.sh` (+23 -0) 📝 `lgsm/functions/info_glibc.sh` (+3 -0) 📝 `lgsm/functions/info_messages.sh` (+11 -0) 📝 `lgsm/functions/info_parms.sh` (+14 -0) 📝 `lgsm/functions/install_config.sh` (+6 -0) 📝 `lgsm/functions/install_server_files.sh` (+2 -0) </details> ### 📄 Description # Description Adding a new feature Soldier of Fortune 2: Gold Edition version 1.03 of the server binary and pk3 files. fixes #2210 ## Type of change * [ ] Bug fix (change which fixes an issue). * [ ] New feature (change which adds functionality). * [X] New Server (new server added). * [ ] Refactor (restructures existing code). * [ ] Comment update (typo, spelling, explanation, examples, etc). * [ ] This change requires a documentation update. ## Checklist * [X] This code follows the style guidelines of this project. * [X] This pull request links to an issue. * [X] This pull request uses the `develop` branch as its base. * [ ] I have provided Co-author details below. * [X] I have performed a self-review of my own code. * [X] I have squashed commits. * [ ] I have commented my code, particularly in hard to understand areas. * [ ] I have made corresponding changes to the documentation if required. ```Authored-by: tkrn <tkrn@users.noreply.github.com>``` --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-27 03:55:09 +03:00
Sign in to join this conversation.
No labels
Atomic
Epic
cannot reproduce
command: backup
command: console
command: debug
command: details
command: fast-dl
command: install
command: mods
command: monitor
command: post-details
command: restart
command: send
command: start
command: stop
command: update
command: update-lgsm
command: validate
command: wipe
distro: AlmaLinux
distro: Arch Linux
distro: CentOS
distro: Debian
distro: Fedora
distro: RedHat
distro: Rocky Linux
distro: Ubuntu
distro: openSUSE
engine: goldsrc
engine: source
game: 7 Days to Die
game: ARMA 3
game: Ark: Survival Evolved
game: Assetto Corsa
game: Avorion
game: BATTALION: Legacy
game: Barotrauma
game: Battalion 1944
game: Battlefield 1942
game: Black Mesa: Deathmatch
game: Blade Symphony
game: Call of Duty 2
game: Call of Duty 4
game: Call of Duty: United Offensive
game: Counter-Strike 1.6
game: Counter-Strike 2
game: Counter-Strike: Global Offensive
game: Counter-Strike: Source
game: Day of Infamy
game: Dayz
game: Death Match Classic
game: Don't Starve Together
game: ET: Legacy
game: Eco
game: Factorio
game: Factorio
game: Garry's Mod
game: Half-Life
game: Hurtword
game: Insurgecy
game: Insurgecy
game: Insurgency: Sandstorm
game: Just Cause 3
game: Killing Floor
game: Killing Floor 2
game: Left 4 Dead 2
game: Minecraft
game: Minecraft Bedrock
game: Mordhau
game: Multi Theft Auto
game: Mumble
game: Natural Selection 2
game: No More Room in Hell
game: Pavlov VR
game: Post Scriptum
game: Project Zomboid
game: Quake 3
game: QuakeWorld
game: Red Orchestra: Ostfront 41-45
game: Return to Castle Wolfenstein
game: Rising World
game: Rust
game: San Andreas Multiplayer
game: Satisfactory
game: Soldat
game: Soldier of Fortune 2
game: Squad
game: Squad 44
game: Starbound
game: Stationeers
game: Sven Co-op
game: Team Fortress 2
game: Teamspeak 3
game: Teeworlds
game: Terraria
game: The Front
game: Unreal Tournament 2004
game: Unreal Tournament 3
game: Unreal Tournament 99
game: Unturned
game: Valheim
game: Wurm Unlimited
game: Zombie Master Reborn
game: label missing
good first issue
help wanted
info: alerts
info: dependency
info: docker
info: docs
info: email
info: query
info: steamcmd
info: systemd
info: tmux
info: website
info: website
needs more info
outcome: duplicate
outcome: issue resolved
outcome: issue resolved
outcome: issue unresolved
outcome: pr accepted
outcome: pr rejected
outcome: unconfirmed
outcome: wontfix
outcome: wrong forum
potential-duplicate
priority
pull-request
type: bug
type: feature
type: feature
type: feature request
type: game server request
type: refactor
waiting response
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/LinuxGSM#3611
No description provided.