Skip to content
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

v3.0.0 #152

Merged
merged 17 commits into from
Jan 21, 2024
Merged
Show file tree
Hide file tree
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
7 changes: 4 additions & 3 deletions .github/workflows/compile-plugin-on-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,10 @@ jobs:
version: ${{ matrix.sm-version }}

- name: Create plugins directory
run: mkdir plugins

- run: spcomp -i scripting/include scripting/deathmatch.sp -o plugins/deathmatch.smx
run: mkdir -p plugins

- run: spcomp -i ./scripting/include ./scripting/deathmatch.sp -o ./plugins/deathmatch.smx
- run: spcomp -i ./scripting/include ./scripting/deathmatch_loader.sp -o ./plugins/deathmatch_loader.smx

- name: Prepare files for artifact
run: |
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/create-release-on-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ jobs:
run: mkdir -p plugins

- run: spcomp -i ./scripting/include ./scripting/deathmatch.sp -o ./plugins/deathmatch.smx
- run: spcomp -i ./scripting/include ./scripting/deathmatch_loader.sp -o ./plugins/deathmatch_loader.smx

- name: Prepare files for artifact
run: |
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
v3.0.0
- A LOT

v2.0.9:
- Updated: deathmatch.ini file with new changes
- Updated: dm_spawn_time is now dm_spawn_protection_time
Expand Down
219 changes: 137 additions & 82 deletions README.md

Large diffs are not rendered by default.

38 changes: 38 additions & 0 deletions configs/deathmatch/config_loader.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
/*
* "Config"
* {
* // Map Name || * = All
* "*"
* {
* // FIRST: "[event type](clients|round|timeleft):<amount>"
* // SECOND: "[countdown time](seconds):[config](filename):[option](respawn|restart|nextround)"
* //--------------------------------------------------------------------------------
* // FIRST SECOND
* "clients:0" "0:deathmatch_default.ini:respawn"
* "round:1" "0:deathmatch_smgs.ini:respawn"
* "timeleft:15" "5:deathmatch_snipers.ini:nextround"
* }
* "de_dust2"
* {
* "round:5" "1:deathmatch_shotguns.ini:restart"
* }
* "de_inferno"
* {
* "timeleft:15" "1:deathmatch_snipers.ini:nextround"
* }
* }
*/

"Config"
{
"*"
{
"clients:0" "0:deathmatch.ini:respawn"
"timeleft:30" "5:deathmatch.ini:respawn"
"timeleft:35" "5:deathmatch_snipers.ini:respawn"
"timeleft:40" "5:deathmatch_rifles.ini:respawn"
"timeleft:45" "5:deathmatch_shotguns.ini:respawn"
"timeleft:50" "5:deathmatch_smgs.ini:respawn"
"timeleft:55" "5:deathmatch_pistols.ini:respawn"
}
}
Loading