PHP Code:
#include <amxmodx>
public plugin_init()
{
register_plugin("abc", "1.0", "..");
register_clcmd("hi", "HI");
}
public HI( client )
{
set_hudmessage( 0, 160, 40, -1.0, 0.25, 5, 10.0, 10.0, 0.1, 1.5 );
show_hudmessage( client, "Message" );
}
Is this the right way to show message to everyone in server ?