I am trying to make a mod that allows the player to stay a vampire lord while doing the Dawnguard side of the quests by running them through a small side quest. I have found that there's a quest called DLC1DiogueHunterVampiteBlock that provides quest-blocking dialogue for Isran that will start Rising at Dawn (cure quest VC01). I've tried modifying the end dialogue script's quest property to my own quest and somehow ended up removing the script that starts VC01, so Isran no longer starts it. I then tried to remake the script using the following scripts:
End dialogue script:
VDDStartPAH startScriptstartScript.StartRising()
VDDStartPAH script:
Scriptname VDDStartPAHQuest Property VDD_Rising Auto ;filled property to quest VC01Function StartRising() VDD_Rising.Start()EndFunction
I've also tried VDD_Rising.SetStage(50), but neither works. And neither of these throws any error. Is there a way to get this dialogue end script to start either a custom quest or the cure quest Rising at Dawn? If I can only start Rising at Dawn, I can still modify it for my means. I'm sure this all stems from little understanding of Papyrus, but I think it would've worked as is.