How to put something in motd when I write this in plugin_init?
sorry for english, here is example
PHP Code:
plugin_init()
{
register_clcmd("test", "wow")
new Someeeething[][] {
"something1",
"something2",
"something3"
}
}
public wow(id)
{
show_motd(id,.....)
}
And I dont know how to include this 3 something in motd when someone type test
__________________