Deleted32363610User Posted March 3, 2017 Share Posted March 3, 2017 In my mod, the Gunners, a mercenary group, have been hired to track down and eliminate the player character. The Gunner squad will appear at random places. If the player loots the Gunner commander, they will see a note that says something like: Client: CLASSIFIED Target: [PLAYER'S NAME] Sex: [PLAYER'S GENDER] Age: [PLAYER'S AGE] Target Overview: Some more descriptive text. How can I add the player's name and gender to the note? And I assume the player's age is around 28-30. But if you guys know the exact age, please let me know. Link to comment Share on other sites More sharing options...
kitcat81 Posted March 4, 2017 Share Posted March 4, 2017 There is a video tirotial for adding player`s name . Type this in google : Fallout 4 Creation Kit Tutorial - Player`s name appears in game Link to comment Share on other sites More sharing options...
MissingMeshTV Posted March 4, 2017 Share Posted March 4, 2017 This tutorial will show you exactly how to do this: I've added the player's name in game for my last two mods following this tutorial...It's really easy to do and literally takes just a couple of minutes. Link to comment Share on other sites More sharing options...
kitcat81 Posted March 4, 2017 Share Posted March 4, 2017 (edited) If you need to dinamically spawn single/multiple notes with the player name you can do it this way : Create a Quest, Uncheck everything in quest data. Create an Alias Reference . In Alias tab check : "Optional", "StoresText" and "Uses Stored Text". Make this Alias use Specific Ref , but don`t select any reference, just leave it empty.In your note type <Alias=Player> anywhere , where you need the player`s name. In some script that spawns your notes ( should be spawed by "placeatme" so it has a reference to apply alias to) you type :MyQuest.Start()MyAlias.Clear()MyAlias.ForceRefTo(MyNote)MyQuest.Stop() Can be done with start quest enabled and alias can be filled in another way . The point is to force the alias to the note. The alias can be cleared immediatelly after this. Being in this alias saves the text replacement and the player name stays in the note even when alias is cleared or quest is stopped. Can`t be sure about gender. But there are only 2 genders in game. You can create 2 types of notes, check player gender and spawn the one that fits. Edited March 4, 2017 by kitcat81 Link to comment Share on other sites More sharing options...
Deleted32363610User Posted March 5, 2017 Author Share Posted March 5, 2017 Thank you guys! This helped a lot!------And @RedRocketTV I like your YouTube channel. I followed your elevator tutorial a few months back. Hope you're able to upload more tutorials. Link to comment Share on other sites More sharing options...
MissingMeshTV Posted March 6, 2017 Share Posted March 6, 2017 Thanks! A few days ago I uploaded a new one on linking workbenches without using a settlement workshop. Link to comment Share on other sites More sharing options...
Recommended Posts