1. Introduction


Before writing an AMX Mod X module, you should have a good understanding of C and pointers.

AMX Mod X modules are significantly more advanced than normal AMX Mod modules. Here are a few main differences: To begin, add "amxxmodule.cpp" and "amxxmodule.h" to your project. You will never need to edit these. *

Add "moduleconfig.h". This will let you configure your module. There are a few important sections you should familiarize yourself with. Module Info: Edit the entries to personalize your module. Do not edit __DATE__, this is a macro.

Now you're ready to go onto the next section to see how a basic module works.

* Note - you can get these files from AMX Mod X CVS or by downloading the source code.