├── .gitignore ├── README.md ├── addons └── sourcemod │ ├── extensions │ ├── customkeyvalues.ext.2.csgo.dll │ ├── customkeyvalues.ext.2.sdk2013.dll │ └── customkeyvalues.ext.2.tf2.dll │ ├── gamedata │ └── customkeyvalues.games.txt │ └── scripting │ ├── example.sp │ └── include │ └── customkeyvalues.inc └── extension ├── AMBuildScript ├── AMBuilder ├── Makefile ├── PackageScript ├── configure.py ├── extension.cpp ├── extension.h └── smsdk_config.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlidyBat/CustomKeyValues/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlidyBat/CustomKeyValues/HEAD/README.md -------------------------------------------------------------------------------- /addons/sourcemod/extensions/customkeyvalues.ext.2.csgo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlidyBat/CustomKeyValues/HEAD/addons/sourcemod/extensions/customkeyvalues.ext.2.csgo.dll -------------------------------------------------------------------------------- /addons/sourcemod/extensions/customkeyvalues.ext.2.sdk2013.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlidyBat/CustomKeyValues/HEAD/addons/sourcemod/extensions/customkeyvalues.ext.2.sdk2013.dll -------------------------------------------------------------------------------- /addons/sourcemod/extensions/customkeyvalues.ext.2.tf2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlidyBat/CustomKeyValues/HEAD/addons/sourcemod/extensions/customkeyvalues.ext.2.tf2.dll -------------------------------------------------------------------------------- /addons/sourcemod/gamedata/customkeyvalues.games.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlidyBat/CustomKeyValues/HEAD/addons/sourcemod/gamedata/customkeyvalues.games.txt -------------------------------------------------------------------------------- /addons/sourcemod/scripting/example.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlidyBat/CustomKeyValues/HEAD/addons/sourcemod/scripting/example.sp -------------------------------------------------------------------------------- /addons/sourcemod/scripting/include/customkeyvalues.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlidyBat/CustomKeyValues/HEAD/addons/sourcemod/scripting/include/customkeyvalues.inc -------------------------------------------------------------------------------- /extension/AMBuildScript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlidyBat/CustomKeyValues/HEAD/extension/AMBuildScript -------------------------------------------------------------------------------- /extension/AMBuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlidyBat/CustomKeyValues/HEAD/extension/AMBuilder -------------------------------------------------------------------------------- /extension/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlidyBat/CustomKeyValues/HEAD/extension/Makefile -------------------------------------------------------------------------------- /extension/PackageScript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlidyBat/CustomKeyValues/HEAD/extension/PackageScript -------------------------------------------------------------------------------- /extension/configure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlidyBat/CustomKeyValues/HEAD/extension/configure.py -------------------------------------------------------------------------------- /extension/extension.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlidyBat/CustomKeyValues/HEAD/extension/extension.cpp -------------------------------------------------------------------------------- /extension/extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlidyBat/CustomKeyValues/HEAD/extension/extension.h -------------------------------------------------------------------------------- /extension/smsdk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SlidyBat/CustomKeyValues/HEAD/extension/smsdk_config.h --------------------------------------------------------------------------------