I'm having some trouble which is driving me crazy. I don't think I'm doing it wrong because I've done it exactly the same way before and it's worked (in fact, I copy-pasted from my other plugins to make sure).
vmod.inc:
Code:
#if defined INCLUDED_VMOD
#endinput
#endif
#define INCLUDED_VMOD
#pragma reqlib vmod
vmod.sma:
Code:
public plugin_natives()
{
register_library("vmod")
}
ARP_HUD.sma:
Code:
#include <ApolloRP>
#include <amxmisc>
#include <vmod>
Only relevant information (I think) has been given, but I'll post more if it's really necessary. Any clues what's wrong? ARP_HUD.sma is the file throwing the error.