rapeyourcorpse Posted January 23, 2017 Share Posted January 23, 2017 Hi I'm new to modding and I need some help.The "setstage" command doesn't seem to work on my creation kit. It complies, but doesn't do anything. I don't know if any other commands don't work but I know that some work because I managed to make a merchant with scripts. I did try "getstage" in the console command and it confirmed that the quest stage has not been set. I tried "GetOwningQuest().SetObjectiveDisplayed(10)GetOwningQuest().SetStage(10)"and "GetOwningQuest().SetStage(10)" alone. thank you in advance Link to comment Share on other sites More sharing options...
steve40 Posted January 23, 2017 Share Posted January 23, 2017 Have you tried: kmyQuest.SetObjectiveDisplayed(10)kmyQuest.SetStage(10) Also, check for errors in your logs. Link to comment Share on other sites More sharing options...
agerweb Posted January 23, 2017 Share Posted January 23, 2017 Your syntax is correct so it must be something else; is the condition firing and the dialogue appearing? BTW stick to just GetOwningQuest().SetStage(10) in the fragment and put SetObjectiveDisplayed(10) in stage 10. It does the same thing but it means you can see clearly from the stages what's happening in the quest. Link to comment Share on other sites More sharing options...
lofgren Posted January 23, 2017 Share Posted January 23, 2017 SetStage will not return until the scripts attached to the stage are finished processing, so also be aware of you have any functions that take time to execute attached to the stage, e.g. wait() or idle animations. Link to comment Share on other sites More sharing options...
steve40 Posted January 26, 2017 Share Posted January 26, 2017 Also, if you are trying to set a stage number that is lower than the stage you are running, you have to reset the quest first. Link to comment Share on other sites More sharing options...
lofgren Posted January 26, 2017 Share Posted January 26, 2017 The script attached to the stage should still fire though. Link to comment Share on other sites More sharing options...
Recommended Posts