for example
PHP Code:
public plugin_init()
{
register_plugin(PLUGIN_NAME, PLUGIN_VERSION, PLUGIN_AUTHOR)
register_logevent("NewRound", 2, "0=World triggered", "1=Round_Start")
}
public NewRound()
{
new players[32], pnum
get_players(players, pnum)
for (new i = 0; i < pnum; i++)
{
new id = players[i]
client_print(id, print_chat, "This is a example")
}
}
Is this code will send chat message to everyone who put in server when round start ?