wilwhitt56 Posted October 30, 2022 Share Posted October 30, 2022 I'm at the last steps for the quest, all I need is a bit of help with some stuff I can't seem to find on the internet.1. In the second part of the quest, the player is suppose to read a journal that tells them where to go (aka, it sets off the next stage of the quest). I've tried to set up a script for it, but it doesn't want to trigger. This is what it looks like: Scriptname CGQuestBookScript extends ObjectReference Quest Property CGJournalProperty Auto Event OnRead() CGJournalProperty.SetObjectiveDisplayed(10)CGJournalProperty.SetStage(20)endEvent The script is set in the journal itself. 2. The part after this, I'm trying to set up a TriggerBox just inside the entrance that sets the next stage when the player walks through it. I'm not quite sure how to set up that one. This is the beginning for the quest set in the End fragment for their dialogue, JIC There's something there messing it up.GetOwningQuest().SetObjectiveDisplayed(10) GetOwningQuest().SetStage(10) Link to comment Share on other sites More sharing options...
Sphered Posted October 30, 2022 Share Posted October 30, 2022 GetOwningQuest you are saying the triggerbox has an owner so it would need to be an alias of that quest for that to fire. Assuming that is the case, troubleshoot by Debug.Notification() OnTriggerEnter(). If you dont see the messsage either the box is not placed well or your script isnt extending Alias. Etc Beyond that IDK off the top of my head. Just skimmed and ruling above out I guess. Good luck Link to comment Share on other sites More sharing options...
wilwhitt56 Posted October 30, 2022 Author Share Posted October 30, 2022 (edited) GetOwningQuest you are saying the triggerbox has an owner so it would need to be an alias of that quest for that to fire. Assuming that is the case, troubleshoot by Debug.Notification() OnTriggerEnter(). If you dont see the messsage either the box is not placed well or your script isnt extending Alias. Etc Beyond that IDK off the top of my head. Just skimmed and ruling above out I guess. Good lucksorry, that last script is the start of the quest. Where you talk to the NPC that gives you the quest. I posted it to make sure it looked right. It has nothing to do with the triggerbox, not this script anyways. Edited October 30, 2022 by wilwhitt56 Link to comment Share on other sites More sharing options...
wilwhitt56 Posted October 31, 2022 Author Share Posted October 31, 2022 (edited) I've been trying to follow BestInSlot's tutorials on the matter, but now I've hit a snag. I had made some aliases and finished part 3 of his set, but when I tried to talk to the NPC, she now won't speak to me. Could the Alias have messed it up? I also noticed that, when I kill the final boss, It finishes a stage in the list, but it doesn't jump to the next stage. Also, the ring that's suppose to spawn in her inventory doesn't show up. Man, this whole thing is such a mess...I'm so close to being finished. A three year project, right at the finish line, and I smack a brick wall! Here's some images of the quest "set up". Hopefully someone with good eyes for this sort of stuff can see what the problem is.https://imgur.com/a/Jjj0gzw The quest is suppose to be as follows: 1 Talk to Namarina-Stage 02 Read journal to find location- Stage 103 follow path all the way through until you find boss-Stage 304 kill boss, grab ring, talk to Frahlus-Stage 415 Bring ring to Namarina- Complete Edited October 31, 2022 by wilwhitt56 Link to comment Share on other sites More sharing options...
wilwhitt56 Posted November 1, 2022 Author Share Posted November 1, 2022 I've been trying to follow BestInSlot's tutorials on the matter, but now I've hit a snag. I had made some aliases and finished part 3 of his set, but when I tried to talk to the NPC, she now won't speak to me. Could the Alias have messed it up? I also noticed that, when I kill the final boss, It finishes a stage in the list, but it doesn't jump to the next stage. Also, the ring that's suppose to spawn in her inventory doesn't show up. Man, this whole thing is such a mess...I'm so close to being finished. A three year project, right at the finish line, and I smack a brick wall! Here's some images of the quest "set up". Hopefully someone with good eyes for this sort of stuff can see what the problem is.https://imgur.com/a/Jjj0gzw The quest is suppose to be as follows: 1 Talk to Namarina-Stage 02 Read journal to find location- Stage 103 follow path all the way through until you find boss-Stage 304 kill boss, grab ring, talk to Frahlus-Stage 415 Bring ring to Namarina- CompleteAnyone? Link to comment Share on other sites More sharing options...
Recommended Posts