behughes Posted April 7, 2012 Share Posted April 7, 2012 (edited) I was working on a mod that changes some dialogue and scripts in the quest "Before the Storm" and I removed a script. Now that script doesn't even appear in my vanilla game! :wallbash: This is the second time this has happened, I have no idea why, and I don't want to have to delete/reinstall Skyrim again... All I need is for someone to open the creation kit, copy down a line of script, and post it here. The script is in quest MQ102, just look in the tab "Quest Stages" in Index 160. You'll see some papyrus scripts to the right, some stuff relating to Balgruuf's reward; those are the ones I need! If you could copy everything from index 160 and repost it here, I would be forever in your debt... Please, anyone, I am begging here Edited April 7, 2012 by behughes Link to comment Share on other sites More sharing options...
DangerManzo Posted April 7, 2012 Share Posted April 7, 2012 I had the CK open so this only took a second. ; end MQ102, transition to MQ103 SetObjectiveCompleted(30) ; transition to MQ103 MQ103.SetStage(10) ; reward player Alias_Balgruuf.GetActorReference().SetRelationshipRank(Game.GetPlayer(), 1) ; what's highest skill? actor player = Game.GetPlayer() if player.GetActorValue("LightArmor") > player.GetActorValue("HeavyArmor") player.AddItem(JarlRewardLightArmor) else player.AddItem(JarlRewardHeavyArmor) endif DragonsreachScene2.Stop() MQ103.SetActive() ; finish quest setstage(200) Link to comment Share on other sites More sharing options...
behughes Posted April 7, 2012 Author Share Posted April 7, 2012 (edited) I was working on a mod that changes some dialogue and scripts in the quest "Before the Storm" and I removed a script. Now that script doesn't even appear in my vanilla game! :wallbash: This is the second time this has happened, I have no idea why, and I don't want to have to delete/reinstall Skyrim again... All I need is for someone to open the creation kit, copy down a line of script, and post it here. The script is in quest MQ102, just look in the tab "Quest Stages" in Index 160. You'll see some papyrus scripts to the right, some stuff relating to Balgruuf's reward; those are the ones I need! If you could copy everything from index 160 and repost it here, I would be forever in your debt... Please, anyone, I am begging here Thanks so much. Unfortunately, in my insane rage I already started the process of uninstalling/re-installing the game... Is there anyone who can explain to me why these scripts are permanently changed when I edit them in my own esp files? Is there a way to edit or delete them that isn't permanent? Its unbelievably frustrating as I really need to change them for the mod I'm working on... what can I do? Edit: If it helps anyone to understand what I'm doing, I've been taking the above bit of script and removing the line "MQ103.Setstage(10)" in order to delay that quest. I was also experimenting with the consequences of moving the following chunk of script to other quest stages: ; reward playerAlias_Balgruuf.GetActorReference().SetRelationshipRank(Game.GetPlayer(), 1); what's highest skill?actor player = Game.GetPlayer()if player.GetActorValue("LightArmor") > player.GetActorValue("HeavyArmor") player.AddItem(JarlRewardLightArmor)else player.AddItem(JarlRewardHeavyArmor)endif After saving my esp, I'd try running the game with AND without the mod activated. Running the game without any mods would still result in the reward showing up at weird times, or not at all, depending on what I did. When I opened the CK again and loaded only the skyrim.esm data, the scripts were all messed up... I'm so clueless. I monkey with a pair of child-proof scissors would have a better chance of performing heart surgery... Edited April 7, 2012 by behughes Link to comment Share on other sites More sharing options...
Recommended Posts