Jump to content

In The CK, What Is The Script(s) For Curing Full Vampirism?


Recommended Posts

Hey there, back again after my recently solved string of crashes. Basically, I want to make a mage character in this mod I'm developing that's capable of curing full-fledged Sanguinare Vampiris as a dialogue option. While looking around I saw a couple of scripts related to cure vampirism, but I was unable to deduce which of them was the one I'm looking for.

 

Beyond that, is the thing I'm attempting to do even technically possible?

Edited by manbullcultist
Link to comment
Share on other sites

To cure the player of vampirism, you use:

If (Game.GetPlayer().HasKeyword(akKeyword = VampireKeyword))
    (PlayerVampireQuest as PlayerVampireQuestScript).VampireCure(Game.GetPlayer())
EndIf

Which I took from the DLC1LycanthropyRegiftQuestScript script. This is the vanilla script that runs when Aela re-gifts you the beast blood.

 

Keep in mind that this is player specific. You'll have to look at a similar quest to cure NPC's.

Link to comment
Share on other sites

To cure the player of vampirism, you use:

If (Game.GetPlayer().HasKeyword(akKeyword = VampireKeyword))
    (PlayerVampireQuest as PlayerVampireQuestScript).VampireCure(Game.GetPlayer())
EndIf

Which I took from the DLC1LycanthropyRegiftQuestScript script. This is the vanilla script that runs when Aela re-gifts you the beast blood.

 

Keep in mind that this is player specific. You'll have to look at a similar quest to cure NPC's.

 

No worries, I was only looking for the player specific script anyways, so thank you very much!

Link to comment
Share on other sites

  • Recently Browsing   0 members

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