[IMG]http://img11.**************/img11/6799/31201931.png[/IMG]
How to make in hud Player to see their names when I'm SPEC thnx all..
PHP Code:
public show_country(id)
{
if (!(get_cvar_num("amx_showcountry")))
{
return PLUGIN_CONTINUE
}
new target = read_data(2)
new szName[32]
get_user_name(id, szName, charsmax(szName))
if (target != id && target != 0)
{
set_hudmessage(0, 255, 255, -1.0, 0.74, 0, 6.0, 6.0, 0.5, 0.15, 27) //-1.0, 0.74, 0, 0.0, 1.0, 0.0, 1.0, 27 )
show_hudmessage(id,"%s ^nFrom: %s^nPlayed on RX Gaming Server", szName, country[target])
}
return PLUGIN_CONTINUE
}
__________________