PHP Code:
/* Plugin generated by AMXX-Studio */
#include <amxmodx>
#include <amxmisc>
#define PLUGIN "Welcome Message"
#define VERSION "1.0.0"
#define AUTHOR "Kia"
public plugin_init()
{
register_plugin(PLUGIN, VERSION, AUTHOR)
}
// ===============================================================================
// client_putinserver - Called when someone joins the game
// ===============================================================================
public client_putinserver(id)
{
client_print(id, print_console, "Hello ^n This is the second line ^n And this the third.")
}
__________________