Jump to content

How Do I alter a quest from another mod?


Heromaster

Recommended Posts

I want to alter a quest from another mod, so that it doesn't start a quest while one of my quests is running to conflict awkwards moments. My intention is to let both mods run side by side. So i thought about adding the mod in question to the master list and setting a condition into the quest to check if my quest is running or not. It doesn't work, the mod is still running. Is there a way to do it?

Link to comment

you could stop the other quest
    ZQuest=Game.GetFormFromFile(0x12345678, "whatever.esp") As Quest
    if(ZQuest)
       if(yourquestisrunning)
            ZQuest.Stop()
        endif
    endif

 

and then start it whenever you're done with your quest. The stopped quest might get really screwed up though.

 

Link to comment

Archived

This topic is now archived and is closed to further replies.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. For more information, see our Privacy Policy & Terms of Use