Advertisement
Guest User

Untitled

a guest
May 11th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.53 KB | None | 0 0
  1. begin Sky_qRe_KG03_sc_Jolna
  2.  
  3. ;Local script on NPC Sky_iRe_KG_Jolna
  4. ;Karthgad quest Sky_qRe_KG03_Journal - Blocked from Worship
  5. ;---
  6. ;Fails Sky_qRe_KG03_Journal if Jolna dies during quest
  7. ;---
  8. ;Last modified on 180511 by Texafornian
  9.  
  10. short Sky_Hold
  11. short Sky_Control
  12. short Sky_ControlQ
  13. short NoLore
  14.  
  15. ;Check whether Jolna died during Lost in the Reach quest
  16. if ( OnDeath )
  17.  
  18. if ( GetJournalIndex "Sky_qRe_KG03_Journal" > 0 )
  19.  
  20. if ( GetJournalIndex "Sky_qRe_KG03_Journal" < ## )
  21. Journal "Sky_qRe_KG03_Journal" ##
  22. endif
  23. endif
  24. Return
  25. endif
  26.  
  27. ;Remove Dunmer spells from Skyrim NPCs
  28. if ( Sky_Hold != 1 )
  29. set Sky_Hold to 1
  30. removeSpell "almalexia's grace"
  31. removeSpell "almsivi intervention"
  32. removeSpell "Cure Blight_Self"
  33. removeSpell "Cure Blight Disease"
  34. removeSpell "ondusi's open door"
  35. removeSpell "ordeal of st. olms"
  36. removeSpell "rest of st. merris"
  37. removeSpell "rilm's cure"
  38. removeSpell "rilm's gift"
  39. removeSpell "seryn's blessing"
  40. removeSpell "seryn's gift"
  41. removeSpell "shield of the armiger"
  42. removeSpell "sotha's grace"
  43. removeSpell "sotha's mirror"
  44. removeSpell "summon ancestral ghost"
  45. removeSpell "summon bonelord"
  46. removeSpell "summon greater bonewalker"
  47. removeSpell "summon least bonewalker"
  48. removeSpell "ulms juicedaw's feather"
  49. removeSpell "veloth's benison"
  50. removeSpell "veloth's grace"
  51. removeSpell "veloth's gift"
  52. removeSpell "vivec's feast"
  53. removeSpell "vivec's kiss"
  54. removeSpell "vivec's mercy"
  55. removeSpell "vivec's tears"
  56. removeSpell "vivec's_wrath"
  57. endif
  58.  
  59. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement