Skip to content

Commit

Permalink
Merge pull request #152 from Maxximou5/development
Browse files Browse the repository at this point in the history
v3.0.0
  • Loading branch information
Maxximou5 authored Jan 21, 2024
2 parents b648855 + 8105d17 commit d83f86e
Show file tree
Hide file tree
Showing 35 changed files with 11,328 additions and 4,547 deletions.
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

0 comments on commit d83f86e

Please sign in to comment.