Code:
/* Plugin generated by AMXX-Studio */
#include <amxmodx>
#include <amxmisc>
#define PLUGIN "New Plug-In"
#define VERSION "1.0"
#define AUTHOR "author"
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
register_clcmd("say /healme", "heal");
}
public heal(id)
{
new iHP = get_user_health(id);
set_user_health(id, iHP + 20);
return PLUGIN_HANDLED;
}
// How can I make that player must wait N amount of seconds b4 using that command again?
// I know it's something with set_task but can you show me how please?