Skip to content

Commit 7bbc350

Browse files
authored
Merge pull request #90 from Hedgefog/master
Release 1.5.0
2 parents 2a59a12 + dc03788 commit 7bbc350

188 files changed

Lines changed: 15157 additions & 17518 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.amxxpack.json

Lines changed: 59 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,30 +3,79 @@
33
"version": "1.9",
44
"addons": ["cstrike"]
55
},
6-
"include": [
7-
"./.compiler/include",
8-
"./.thirdparty/reapi/addons/amxmodx/scripting/include"
9-
],
106
"thirdparty": {
117
"dependencies": [
128
{
139
"name": "reapi",
1410
"url": "https://github.com/s1lentq/reapi/releases/download/5.21.0.252/reapi-bin-5.21.0.252.zip"
11+
},
12+
{
13+
"name": "amxx-modding-kit",
14+
"url": "https://github.com/Hedgefog/amxx-modding-kit/archive/refs/tags/1.0.0.zip",
15+
"strip": 1,
16+
"filter": [
17+
"util/**",
18+
"weapons/**",
19+
"entities/**",
20+
"api/assets/**",
21+
"api/custom-weapons/**",
22+
"api/player-roles/**",
23+
"api/custom-entities/**",
24+
"api/custom-events/**",
25+
"api/rounds/**",
26+
"api/waypoint-markers/**",
27+
"api/player-model/**",
28+
"api/states/**",
29+
"api/player-music/**",
30+
"api/entity-force/**"
31+
]
1532
}
1633
]
1734
},
35+
"include": [
36+
"./.compiler/include",
37+
"./.thirdparty/reapi/addons/amxmodx/scripting/include",
38+
"./.thirdparty/amxx-modding-kit/api/assets/include",
39+
"./.thirdparty/amxx-modding-kit/api/custom-weapons/include",
40+
"./.thirdparty/amxx-modding-kit/api/player-roles/include",
41+
"./.thirdparty/amxx-modding-kit/api/custom-entities/include",
42+
"./.thirdparty/amxx-modding-kit/api/custom-events/include",
43+
"./.thirdparty/amxx-modding-kit/api/rounds/include",
44+
"./.thirdparty/amxx-modding-kit/api/waypoint-markers/include",
45+
"./.thirdparty/amxx-modding-kit/api/player-model/include",
46+
"./.thirdparty/amxx-modding-kit/api/states/include",
47+
"./.thirdparty/amxx-modding-kit/api/player-music/include",
48+
"./.thirdparty/amxx-modding-kit/api/entity-force/include",
49+
"./.thirdparty/amxx-modding-kit/entities/include",
50+
"./.thirdparty/amxx-modding-kit/weapons/include",
51+
"./.thirdparty/amxx-modding-kit/util"
52+
],
1853
"input": {
19-
"scripts": "./src/scripts",
54+
"scripts": [
55+
{ "dir": "./src/scripts", "output": { "dir": "zombiepanic", "flat": false } },
56+
{ "dir": "./.thirdparty/amxx-modding-kit/api", "output": { "dir": "./amxx-modding-kit", "flat": true } },
57+
{ "dir": "./.thirdparty/amxx-modding-kit/entities", "output": { "dir": "./amxx-modding-kit", "flat": true } },
58+
{ "dir": "./.thirdparty/amxx-modding-kit/weapons", "output": { "dir": "./amxx-modding-kit", "flat": true } }
59+
],
2060
"include": "./src/include",
2161
"assets": "./assets"
2262
},
2363
"output": {
24-
"plugins": "./dist/build/addons/amxmodx/plugins",
25-
"scripts": "./dist/build/addons/amxmodx/scripting",
26-
"include": "./dist/build/addons/amxmodx/scripting/include",
27-
"assets": "./dist/build"
64+
"base": "./dist/build",
65+
"plugins": "./addons/amxmodx/plugins",
66+
"scripts": "./addons/amxmodx/scripting",
67+
"include": "./addons/amxmodx/scripting/include",
68+
"assets": "."
2869
},
2970
"rules": {
30-
"flatCompilation": true
71+
"flatCompilation": false
72+
},
73+
"cli": {
74+
"templates": {
75+
"context": {
76+
"PLUGIN_VERSION": "1.0.0",
77+
"PLUGIN_AUTHOR": "Hedgehog Fog"
78+
}
79+
}
3180
}
3281
}

.vscode/settings.json

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,23 @@
11
{
2-
"editor.tabSize": 4,
2+
"editor.tabSize": 2,
33
"editor.insertSpaces": true,
44
"amxxpawn.compiler.includePaths": [
5-
"${workspaceRoot}/src/include",
6-
"${workspaceRoot}/.compiler/include",
7-
"${workspaceRoot}/.thirdparty/reapi/addons/amxmodx/scripting/include"
5+
"${workspaceRoot}/.compiler/include",
6+
"${workspaceRoot}/.thirdparty/reapi/addons/amxmodx/scripting/include",
7+
"${workspaceRoot}/.thirdparty/amxx-modding-kit/util",
8+
"${workspaceRoot}.thirdparty/amxx-modding-kit/api/assets/include",
9+
"${workspaceRoot}.thirdparty/amxx-modding-kit/api/custom-weapons/include",
10+
"${workspaceRoot}.thirdparty/amxx-modding-kit/api/player-roles/include",
11+
"${workspaceRoot}.thirdparty/amxx-modding-kit/api/custom-entities/include",
12+
"${workspaceRoot}.thirdparty/amxx-modding-kit/api/custom-events/include",
13+
"${workspaceRoot}.thirdparty/amxx-modding-kit/api/rounds/include",
14+
"${workspaceRoot}.thirdparty/amxx-modding-kit/api/waypoint-markers/include",
15+
"${workspaceRoot}.thirdparty/amxx-modding-kit/api/player-model/include",
16+
"${workspaceRoot}.thirdparty/amxx-modding-kit/api/states/include",
17+
"${workspaceRoot}.thirdparty/amxx-modding-kit/api/player-music/include",
18+
"${workspaceRoot}.thirdparty/amxx-modding-kit/api/entity-force/include",
19+
"${workspaceRoot}.thirdparty/amxx-modding-kit/entities/include",
20+
"${workspaceRoot}.thirdparty/amxx-modding-kit/weapons/include",
21+
"${workspaceRoot}/src/include"
822
]
923
}

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
## 🧟 Zombie Panic 🇺🇦
2+
23
![GitHub package.json version](https://img.shields.io/github/package-json/v/hedgefog/cs-zombie-panic)
34
![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/hedgefog/cs-zombie-panic/build.yml?branch=release)
45
![GitHub release (latest by date)](https://img.shields.io/github/v/release/hedgefog/cs-zombie-panic)
56
![GitHub all releases](https://img.shields.io/github/downloads/hedgefog/cs-zombie-panic/total)
67

8+
*Built with [📦 AMXXPack](https://github.com/Hedgefog/node-amxxpack) and [🛠️ AMXX Modding Kit](https://github.com/Hedgefog/amxx-modding-kit)*
9+
710
### 📄 About
811
__Zombie Panic__ is a server-side modification for __Counter-Strike__ similar to the popular Half-Life modification Zombie Panic!.
912

0 commit comments

Comments
 (0)