Skip to content

Commit

Permalink
update modding kit
Browse files Browse the repository at this point in the history
  • Loading branch information
Hedgefog committed Nov 7, 2023
1 parent 8e5d1e2 commit 407be80
Show file tree
Hide file tree
Showing 23 changed files with 369 additions and 579 deletions.
20 changes: 11 additions & 9 deletions .amxxpack.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,6 @@
"version": "1.9",
"addons": ["cstrike"]
},
"include": [
"./.compiler/include",
"./.thirdparty/reapi/addons/amxmodx/scripting/include"
],
"thirdparty": {
"dependencies": [
{
Expand All @@ -18,21 +14,27 @@
"url": "https://github.com/Hedgefog/cs-modding-kit/archive/refs/heads/next.zip",
"strip": 1,
"filter": [
"api_custom_entities.@(sma|inc)",
"api_custom_weapons.@(sma|inc)",
"api_player_model.@(sma|inc)",
"api_rounds.@(sma|inc)"
"util/**",
"api/rounds/**",
"api/custom-entities/**",
"api/custom-weapons/**",
"api/player-model/**",
"api/waypoint-markers/**"
]
}
]
},
"include": [
"./.compiler/include",
"./.thirdparty/reapi/addons/amxmodx/scripting/include"
],
"input": {
"scripts": [
"./.thirdparty/cs-modding-kit",
"./src/scripts"
],
"include": [
"./.thirdparty/cs-modding-kit/include",
"./.thirdparty/cs-modding-kit",
"./src/include"
],
"assets": "./assets"
Expand Down
13 changes: 9 additions & 4 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,14 @@
"editor.tabSize": 4,
"editor.insertSpaces": true,
"amxxpawn.compiler.includePaths": [
"${workspaceRoot}/.compiler/include",
"${workspaceRoot}/.thirdparty/reapi/addons/amxmodx/scripting/include",
"${workspaceRoot}/.thirdparty/cs-modding-kit/include",
"${workspaceRoot}/src/include"
"${workspaceRoot}/.compiler/include",
"${workspaceRoot}/.thirdparty/reapi/addons/amxmodx/scripting/include",
"${workspaceRoot}/.thirdparty/cs-modding-kit/util",
"${workspaceRoot}/.thirdparty/cs-modding-kit/api/rounds/include",
"${workspaceRoot}/.thirdparty/cs-modding-kit/api/custom-entities/include",
"${workspaceRoot}/.thirdparty/cs-modding-kit/api/custom-weapons/include",
"${workspaceRoot}/.thirdparty/cs-modding-kit/api/player-model/include",
"${workspaceRoot}/.thirdparty/cs-modding-kit/api/waypoint-markers/include",
"${workspaceRoot}/src/include"
]
}
1 change: 1 addition & 0 deletions assets/addons/amxmodx/configs/plugins-zombiepanic.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ api_custom_weapons.amxx
api_custom_entities.amxx
api_player_model.amxx
api_rounds.amxx
api_waypoint_markers.amxx

; Core
zombiepanic.amxx
Expand Down
Loading

0 comments on commit 407be80

Please sign in to comment.