Unluckymonster 11 Posted October 30, 2017 Hey, in the last mission of my campaign that I'm working with I want in last briefing mention player's real name like this: player createDiaryRecord["Diary", ["1. THANKS FOR PLAYING!", "Hello ABCPlayer123 it's Unluckymonster, creator of this campaign. First of all congratulations, you are one cutscene away from finishing Nogova Crisis campaign! I hope you have enjoyed this far."]]; The thing works in nuxil's code-example in titleText but is there anyway it works in createDiaryRecords too? https://forums.bistudio.com/forums/topic/87663-displaying-players-name-in-mp/ Share this post Link to post Share on other sites
phronk 898 Posted October 30, 2017 name player; Example use: _myName = name player; _myText = format [ "Hello %1, it's Unluckymonster, creator of this campaign. First of all congratulations, you are one cutscene away from finishing Nogova Crisis campaign! I hope you have enjoyed this far.", _myName ]; player createDiaryRecord ["Diary", ["1. THANKS FOR PLAYING!", _myText]]; 3 Share this post Link to post Share on other sites
Unluckymonster 11 Posted November 2, 2017 Thanks phronk, that worked! Will mention you in campaign credits once I get it finished. Share this post Link to post Share on other sites