hi all. i need do warmtime when all have got knife and all players will be respawned when they be killed, and it will be 60 sec and all 60 will be blinking or show Hudmessange Warmtime.
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)
set_task(0.1, "WarmTime", 5)
set_task(70.0, "EndTask")
}
public WarmTime() {
}
public EndTask() {
remove_task(5)
}