heyo could u make that plugin will show this hud mess. every X seconds please?
Code:
#include <amxmodx>
new const PLUGIN[] = "Hud Messege with Hostname, Current & TimeLeft";
new const VERSION[] = "1.0";
new const AUTHOR[] = "MercedeS";
new const HOTNAME[] = "Hostname";
public plugin_init()
{
register_plugin(PLUGIN, VERSION, AUTHOR);
}
public client_putinserver()
{
new map[33];
get_mapname(map,32);
new timeleft = get_timeleft();
set_hudmessage(255, 250, 205, -1.0, 0.0, 1, 6.0, 1.0) ;
show_hudmessage(0, "%s - CURRENT MAP:^n%s^nTIMELEFT: %s", HOTNAME, map, timeleft);
set_task(0.9, "client_putinserver");
}