Skip to content

Commit

Permalink
Add Extreme support
Browse files Browse the repository at this point in the history
  • Loading branch information
StrongMods committed Oct 8, 2023
1 parent 0410fbf commit 500f91f
Show file tree
Hide file tree
Showing 9 changed files with 437 additions and 49 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ jobs:
working-directory: ./strongmod
run: make

- name: Compile project
working-directory: ./strongmod
run: make EXTREME=1

- name: Zip project
working-directory: ./strongmod
run: make zip-project
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ Auto Market mod implemented using StrongMod, and it's included by default
- Download strongmod.zip.
- Extract the contents to your game's installation path.

2. Run `start_game.bat`
2. Run `start_game.bat` for the extreme version, run `start_game_extreme.bat`
- The executable name "Stronghold Crusader.exe" might be different for your installation. If the game doesn't start, check the actual executable name and update it in `start_game.bat` or `start_game_extreme.bat`.

## Notes:
- StrongMod is currently in development and may not have a complete set of features yet.
Expand Down
2 changes: 1 addition & 1 deletion start_game.bat
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
setlocal

.\strongmod\cpython\python.exe .\strongmod\strongmod\start_game.py
.\strongmod\cpython\python.exe .\strongmod\strongmod\start_game.py "Stronghold Crusader.exe"

endlocal
5 changes: 5 additions & 0 deletions start_game_extreme.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
setlocal

.\strongmod\cpython\python.exe .\strongmod\strongmod\start_game.py "Stronghold_Crusader_Extreme.exe"

endlocal
Loading

0 comments on commit 500f91f

Please sign in to comment.