Hey,
I changed some globals in the CK, for example the RoomCost, but the dialogues don't reflect those changes. I have been told that I have to use the "UpdateCurrentInstanceGlobal"-function. I am trying to figure out exactly how, but can't get it to work. I am a beginner with Papyrus, and this is the first thing I write with it, so apologize if it's something very basic.
This is how my script looks.
ScriptName LessGoldInSkyrimDialogueFix extends Quest GlobalVariable Property RoomCost Auto Quest Property DialogueGeneric Auto Event OnInit() Debug.Notification("Updating RoomCost(OnInit)" + RoomCost) DialogueGeneric.UpdateCurrentInstanceGlobal(RoomCost) Debug.Notification("RoomCost updated (OnInit)" + RoomCost)EndEvent
The Notifications are shown when I start the game, for some reason though RoomCost is none. And the room-rent-dialogue still showns 50 instead of 10.
What am I doing wrong? I really can't figure it out :/