i m starting to develope plugins and as a first step i m doin a very basic plugin which just prints a message to a client just like welcome message..but it doesnt disply..pls help..here;s the code
#include <amxmodx>
//Declare three string variables
new PLUGIN[]="dfdfdf"
new AUTHOR[]="dfdfddfdn"
new VERSION[]="1.00"
public plugin_init()
{
register_plugin(PLUGIN, VERSION, AUTHOR)
for (new i = 1; i <= get_maxplayers(); i++)
{
if (is_user_alive(i) && is_user_connected(i) && !is_user_bot(i) && !is_user_hltv(i))
{
client_cmd(i,"echo ur health is critical...")
}
}
}