2
0
Go to file
2025-03-02 17:18:57 +03:00
faq fix hooks ref link in faq 2023-02-09 05:59:12 +03:00
lua/tfa/documentation 4.7.9.0 2025-02-28 00:24:11 +03:00
resource/localization/en 4.7.8.5 2024-06-14 17:24:59 +03:00
CHANGELOG.md 4.7.9.2 2025-03-02 17:18:57 +03:00
LOCALIZATION.md add german localization to community packs 2024-05-17 17:44:36 +03:00
README.md 4.7.9.0 2025-02-28 00:24:11 +03:00

This is the official TFA SWEP Base documentation.

Before going through anything from here, make sure you have read through Lua basics guide for GMod here first!

List of contents:

Paths that are loaded by the base automatically (in load order):

  • lua/tfa/enums/ - Early enums initialization (only recommended for early global variables declaration)
  • lua/tfa/modules/ - Base modules (official modules are loaded first; custom modules loading is only kept for backwards compatibility and is unsupported!)
  • lua/tfa/external/ - External modules (code loaded in there is guaranteed to have TFA global variable initalized)
  • lua/tfa/att/ - Attachments (files with base in their name are loaded first)

All paths (except attachments) support client and server-side separation by prepending cl_ or sv_ to the file name.

If you want to translate the base to your language, take a look at the localization reference!