Code:
#include <amxmodx>
#define PLUGIN "Ads"
#define VERSION "1.0"
#define AUTHOR "nuki"
public plugin_init()
{
register_plugin(PLUGIN, VERSION, AUTHOR)
set_task(10.0,"PrintText", 0,_,_, "b")
}
public PrintText(id)
{
client_print(id, print_chat, "Message that will be displayed")
}
The problem with the way connorr did it is that it prints the selected more rapidly based on how many people have joined the server (and theres no reason call it on client_putinserver unless you want it to display as soon as they enter).
__________________