├── .github └── workflows │ └── build-on-default-branch-commit.yml ├── .gitignore ├── README.md ├── configs └── tf_custom_attributes.txt ├── configure.py ├── gamedata └── tf2.custattr.sample.txt ├── misc ├── ninja_syntax.py └── spcomp_util.py ├── scripting ├── custom_weapons_adapter.sp ├── include │ └── tf_custom_attributes.inc ├── sample_attributes │ ├── attr_fixed_cloak_drain.sp │ ├── attr_minigun_boost_on_winddown.sp │ └── attr_quack_on_crit.sp ├── tf_custom_attributes.sp ├── tf_custom_attributes_debugger.sp ├── tf_custom_attributes_manager.sp └── tf_custom_attributes_team_section.sp └── third_party └── vendored ├── tf2attributes.inc └── tf2utils.inc /.github/workflows/build-on-default-branch-commit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nosoop/SM-TFCustAttr/HEAD/.github/workflows/build-on-default-branch-commit.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nosoop/SM-TFCustAttr/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nosoop/SM-TFCustAttr/HEAD/README.md -------------------------------------------------------------------------------- /configs/tf_custom_attributes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nosoop/SM-TFCustAttr/HEAD/configs/tf_custom_attributes.txt -------------------------------------------------------------------------------- /configure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nosoop/SM-TFCustAttr/HEAD/configure.py -------------------------------------------------------------------------------- /gamedata/tf2.custattr.sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nosoop/SM-TFCustAttr/HEAD/gamedata/tf2.custattr.sample.txt -------------------------------------------------------------------------------- /misc/ninja_syntax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nosoop/SM-TFCustAttr/HEAD/misc/ninja_syntax.py -------------------------------------------------------------------------------- /misc/spcomp_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nosoop/SM-TFCustAttr/HEAD/misc/spcomp_util.py -------------------------------------------------------------------------------- /scripting/custom_weapons_adapter.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nosoop/SM-TFCustAttr/HEAD/scripting/custom_weapons_adapter.sp -------------------------------------------------------------------------------- /scripting/include/tf_custom_attributes.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nosoop/SM-TFCustAttr/HEAD/scripting/include/tf_custom_attributes.inc -------------------------------------------------------------------------------- /scripting/sample_attributes/attr_fixed_cloak_drain.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nosoop/SM-TFCustAttr/HEAD/scripting/sample_attributes/attr_fixed_cloak_drain.sp -------------------------------------------------------------------------------- /scripting/sample_attributes/attr_minigun_boost_on_winddown.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nosoop/SM-TFCustAttr/HEAD/scripting/sample_attributes/attr_minigun_boost_on_winddown.sp -------------------------------------------------------------------------------- /scripting/sample_attributes/attr_quack_on_crit.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nosoop/SM-TFCustAttr/HEAD/scripting/sample_attributes/attr_quack_on_crit.sp -------------------------------------------------------------------------------- /scripting/tf_custom_attributes.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nosoop/SM-TFCustAttr/HEAD/scripting/tf_custom_attributes.sp -------------------------------------------------------------------------------- /scripting/tf_custom_attributes_debugger.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nosoop/SM-TFCustAttr/HEAD/scripting/tf_custom_attributes_debugger.sp -------------------------------------------------------------------------------- /scripting/tf_custom_attributes_manager.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nosoop/SM-TFCustAttr/HEAD/scripting/tf_custom_attributes_manager.sp -------------------------------------------------------------------------------- /scripting/tf_custom_attributes_team_section.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nosoop/SM-TFCustAttr/HEAD/scripting/tf_custom_attributes_team_section.sp -------------------------------------------------------------------------------- /third_party/vendored/tf2attributes.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nosoop/SM-TFCustAttr/HEAD/third_party/vendored/tf2attributes.inc -------------------------------------------------------------------------------- /third_party/vendored/tf2utils.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nosoop/SM-TFCustAttr/HEAD/third_party/vendored/tf2utils.inc --------------------------------------------------------------------------------