Beny.cz 10 Posted November 15, 2009 (edited) Hey, how to display player's name (nick) in MP? For example, in CTF map, it shows who took the flag. I would like to do the same but not in a CTF map. Any ideas? Thanks, Beny Edited November 15, 2009 by Beny.cz Share this post Link to post Share on other sites
nuxil 2 Posted November 15, 2009 titletext [format["i am the real %1", name player],"PLAIN"]; Share this post Link to post Share on other sites
Beny.cz 10 Posted November 15, 2009 It works, but the problem is that each player sees his own name. What I need is that all players see the name of one player (for example a player, who activated a trigger). Share this post Link to post Share on other sites
Przemek_kondor 14 Posted November 15, 2009 so you have to use proper unit instead of player. For example for player who activated a trigger it will be: titletext [format["person who activated a trig is: %1", name ((list someTrigger) select 0)],"PLAIN"]; Share this post Link to post Share on other sites
ADuke 1 Posted December 29, 2009 titletext [format["person who activated a trig is: %1", name ((list someTrigger) select 0)],"PLAIN"]; How would you display that via a hint? Share this post Link to post Share on other sites
Przemek_kondor 14 Posted December 29, 2009 hint format["person who activated a trig is: %1", name ((list someTrigger) select 0)]; Share this post Link to post Share on other sites