Hi, so i want a plugin that when its 20:00 a message is send to all connected players.
I tried this but not working...
Code:
#include <amxmodx>
public plugin_init()
{
register_plugin("On Time", "1.0", "PyKw")
}
public check_time()
{
new h, m, s;
time(h, m, s)
if(h == 20)
client_print(0, print_chat, "Its 20:00")
}
Please help!