Hi all. I've just come back to modding after a long layoff to update my mod Publick Occurrences Expanded. I'm not doing anything drastic at the moment, just adding more of the same things. The basic idea of the mod is this: you complete a quest, you go to Nat in Diamond City, she gives you a note about the quest. This is a function that's in the game already, when you receive 'View from the Vault' etc. When I originally made the mod, I managed to do this by adding greetings in DialogueDiamondCity/Misc, adding the right conditions, and then adding the following Papyrus fragment to each one:
Game.GetPlayer().AddItem(Name of Book)
This seemed to work fine for the existing entries. However, when I now try to add a new book and create a greeting for it, the fragment won't compile, giving me a 'variable X is undefined' error. I read somewhere that you could use an Alias to generate the book in an NPCs inventory and then give it to the player. So I tried adding a Quest Alias to DialogueDiamondCity instead, creating a reference to the book in NatAlias, and running the following fragment in the greeting:
game.GetPlayer().AddItem(Alias_Name of Alias.GetReference())Suffice it to say that didn't work either. I've forgotten anything I knew about CK or Papyrus, so this is probably extremely simple, but I can't figure out how I got this to work in the original mod. Any pointers would be much appreciated.