I do not understand what you are doing ^^
Why do you include amxmisc ? Because it's was here when you opened AmxStudioX ? lol
Code:
#include < amxmodx >
public plugin_init( )
{
register_plugin( "AMXX Authid" , "1.0" , "Aooka" );
register_clcmd( "say /uid" , "ClientCommand_Userid" );
register_clcmd( "say_team /uid" , "ClientCommand_Userid" );
}
public ClientCommand_Userid( const id )
{
if( !is_user_connected( id ) )
return 1;
else
{
new szAuthID[ 32 ];
get_user_authid( id , szAuthID , 31 );
client_print( id , print_chat , "Your steam ID is -> %s" , szAuthID );
}
return 0;
}
Read this and if you don't understand tel me.
__________________