It's time for you to post your code, show me what you're doing.
Edit: Try this, type /steam in chat.
PHP Code:
#include < amxmodx >
public plugin_init()
{
register_clcmd( "say /steam", "try_this" );
}
public try_this( id )
{
new sSteamID[ 21 ]
get_user_authid( id, sSteamID, charsmax( sSteamID ) )
if( is_user_alive( id ) )
{
client_print( id, print_chat, " Your SteamID is %s", sSteamID )
//PLACE YOUR HUD MESSAGE HERE
}
}
Edit 2: I'm just showing a way to get your SteamID, so don't copy and paste my code into your plugin.
__________________