Code:
#include <amxmodx>
public plugin_init()
{
register_plugin(PLUGIN,VERSION,AUTHOR)
}
public client_authorized(id)
set_task(20.0,"HelloMSG",id);
// Say Hello To The User
public HelloMSG(id)
{
new AuthID[32],plName[32]
get_user_authid(id,AuthID,32);
get_user_name(id,plName,32);
server_cmd("say ^"Hi, %s Your SteamID is: %s^"",plName,AuthID);
}
You should catch the "ResetHUD" event, and send the message when they spawn. But the above will work still.
__________________