What do you say lol ?
I give you an example to have a player name :
Code:
#include < amxmodx >
public plugin_init( )
{
register_plugin( "test" , "1.0" , "Aooka" );
register_clcmd( "say /name" , "CmdName" );
}
public CmdName( const id )
{
new szName[ 32 ];
get_user_name( id , szName , 31 );
client_print( id , print_chat , "My name is : %s" , szName );
}
For the name of a map use it :
http://www.amxmodx.org/funcwiki.php?go=func&id=244
For the server name good question ^^
__________________