Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fatonhoti/amxmx-plugintemplate
Empty starter template for creating AMX Mod X plugins.
https://github.com/fatonhoti/amxmx-plugintemplate
Last synced: 1 day ago
JSON representation
Empty starter template for creating AMX Mod X plugins.
- Host: GitHub
- URL: https://github.com/fatonhoti/amxmx-plugintemplate
- Owner: fatonhoti
- Created: 2024-07-05T19:39:36.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-07-05T19:56:15.000Z (6 months ago)
- Last Synced: 2024-11-10T18:30:07.342Z (about 2 months ago)
- Language: Pawn
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Useful resources related to AMX Mod X plugin creation for Counter-Strike 1.6.
* **AMX Mod X API**: https://www.amxmodx.org/api/
* **AMX Mod X Downloads**: [https://www.amxmodx.org/](https://www.amxmodx.org/downloads.php)
* **Online .sma compiler:** https://www.amxmodx.org/webcompiler.cgi
* **AlliedModders forum:** https://forums.alliedmods.net/forumdisplay.php?f=3
## How do I compile my `.sma` script to an `.amxx` file?
* If you're using AMXX-Studio, go into `Tools -> Settings -> Compiler -> Compiler Settings` and set the `Compiler` path to the `amxxpc.exe` located in your servers `addons\amxmodx\scripting` folder.
* Another way to compile your `.sma` script is to copy it to `addons\amxmodx\scripting` then running `compile .sma` in the terminal from directory. The resulting `.amxx` file will be saved in the `addons\amxmodx\scripting\compiled` folder.