You would show like you would any other message.
Try the code below, you will need the colorstatus.inc from this thread. It should give an idea of how to use it.
PHP Code:
#include <amxmodx>
#include <cstrike>
#include <fakemeta>
#include <colorstatus.inc>
new g_iMax;
public plugin_init() {
set_task(1.0, "Teams", 0, "", 0, "b")
g_iMax = get_maxplayers();
initColorStatus();
}
public Teams( iPlayer )
{
for(new iPlayer = 1; iPlayer <= g_iMax; iPlayer++ )
{
if ( !is_user_alive( iPlayer ) || is_user_bot( iPlayer ) )
continue;
switch ( get_user_team( iPlayer ) )
{
case CS_TEAM_T:
{
makeStatusText(iPlayer,RED_STATUS,0.0," : [Terrorist]" );
}
case CS_TEAM_CT:
{
makeStatusText(iPlayer,BLUE_STATUS,0.0," : [Counter Terrorist]" );
}
}
}
}
__________________