HTML Code:
#include <amxmodx>
#include <amxmisc>
#define PLUGIN "Messag3"
#define VERSION "0.1"
#define AUTHOR "80T"
public plugin_init()
{
register_plugin(PLUGIN, VERSION, AUTHOR)
register_event("ResetHUD", "event_spawn", "b")
}
public event_spawn(id)
{
client_print(id, print_center, "M^ne^ns^ns^na^ng^n3")
return PLUGIN_CONTINUE
}
I don't know what is wrong in this code but I can't get a "print_center" message to be displayed VERTICAL
I just want to make a verry simple plugin that will display a vertical center message to every player when he spawns...