Alright.. I read the doc.. I have a question.. I read the Basic Plugin completely.. about the amx_hp plugin..
Code:
public plugin_init()
{
register_plugin(PLUGIN, VERSION, AUTHOR)
register_concmd("amx_hp", "cmd_hp", ADMIN_SLAY, "<target> ")
}
public cmd_hp(id, level, cid)
{
return PLUGIN_HANDLED
}
Now, I understand register_plugin, thats obvious..
register_concmd.. I understand amx_hp.. I understand the admin level, and I understand the <target> for amx_help. I dont understand cmd_hp.. I think that its the command that is sent to the server.. Not sure though... But, That is only for health.. What if I want to make a completely different plugin, having nothing to do with health.. How do I find that?
Thnx.. Real noob at scripting.