Also, I'm pretty sure "#pragma reqlib" is no longer required. You should instead do the same as the default AMXX .inc files:
Code:
#if defined _multimod_included
#endinput
#endif
#define _multimod_included
This will prevent the file from getting included multiple times, even though it's not likely to happen.
__________________