Code:
#include <amxmodx>
#include <amxmisc>
#define PLUGIN "HELP ME"
#define VERSION "1.0"
#define AUTHOR "Checkmarks"
public plugin_init()
{
register_plugin(PLUGIN, VERSION, AUTHOR)
register_clcmd("helpa","helpa")
register_clcmd("helpb","helpb")
register_clcmd("helph","helph")
register_clcmd("helpts","helpts")
register_clcmd("helpcs","helpcs")
}
public helpa(id)
{
client_print(id,print_chat,"I Need Backup @ Bombsite A!");
}
public helpb(id)
{
client_print(id,print_chat,"I Need Backup @ Bombsite B!");
}
public helph(id)
{
client_print(id,print_chat,"I Need Backup @ The Hostages!");
}
public helpts(id)
{
client_print(id,print_chat,"I Need Backup @ T's Spawn!");
}
public helpcs(id)
{
client_print(id,print_chat,"I Need Backup @ CT's Spawn!");
}
I used the online compiler (I don't have amxx currently installed yet) and it says failed to compile
What's wrong?