So since summer break just started for me, I decided to get into Skyrim modding a bit. Quick background: made a "Lycanpire" character after I completed the Dawnguard's main quest and became a vampire lord. Still wanted vampire perks, but I also wanted my previous Werewolf perks... mainly wanted to remove Weakness to Fire and Weakness to Sunlight. Was able to make a batch file to remove the active effects easily enough. But, every time I transformed from Vampire Lord back to human, I would have to re-run my batch file to get rid of the previously mentioned 2 effects. So, being the programmer I am, I figured I could just make a script to execute automatically whenever I loaded the game and whenever I revert from Vampire Lord form back to human. So I made a script, and compiled it, and tried to figure out how to attach it to my player whenever 2 events occur. Here's where it's getting hairy for me, since I'm new to Papyrus & the Creation Kit. Here's my script (not sure if this is the proper way to do the script, but hey, I'm learning):
Scriptname RemoveVampireWeaknesses extends Alias
Spell property WeaknessToFire auto
Spell property WeaknessToSun auto
Spell property RevertVLForm auto
Event OnPlayerLoadGame()
Debug.Trace("loaded game...spells should be removed?")
Game.GetPlayer().RemoveSpell(WeaknessToFire)
Game.GetPlayer().RemoveSpell(WeaknessToSun)
EndEvent
Event OnSpellCast(Form akSpell)
Spell spellCast = akSpell as Spell
Debug.Trace("Entered spell cast event.")
if spellCast && spellCast == RevertVLForm
Debug.Trace("revert form was cast... spells should be removed?")
Game.GetPlayer().RemoveSpell(WeaknessToFire)
Game.GetPlayer().RemoveSpell(WeaknessToSun)
endIf
endEvent
And then in Creation Kit, I made a new "quest" (I've heard this is how I should attach things to my player that should be automatically run... please correct me if I'm wrong because this is just what I found during some extensive Googling). Here's the steps I went through in Creation Kit: Loaded Dawnguard file. Created a new object under Quests with the following properties: Form ID: RemoveVampireWeaknessesQuest Name: Remove Vampire WeaknessesEvent: NoneType: NoneStart Game Enabled: CheckedRun Once: UncheckedThat's all I changed from the defaults. I then went to Quest Aliases, and added a new Alias property with the name "Remove Effects". I kept all the defaults, except for I checked "Reuse in quest" option. Under "Fill Type" I selected "Unique Actor" and chose "Player" I then added my script through this Alias window, and attached the properties to what I thought were the correct spells. RevertVLForm attached to DLC1RevertForm spellWeaknessToFire attached to AbVampire04b spell WeaknessToSun attached to VampireSunDamage04 spellSaved the file, and enabled it in the Data Files section. Ran the game, and the active effects were still there on game load. So I tried transforming / reverting to human... still there. Not sure what I'm doing wrong. Enabled Papyrus debugging logs, and originally I had my script header set to "Extends ObjectReference" but I was getting errors about not being the same base type, so I changed the script to "Extends Alias" to see if that worked. It got rid of the errors in Papyrus, but the script still doesn't seem to be actually working. I also don't see my Debug trace messages being outputted in the log file either, so I'm guessing the events aren't actually being hit... so I'm not sure if I'm even using the correct events or not. I know using the player.removeSpell with the ID's for AbVampire04b and VampireSunDamage04 work fine through the console, so I'm assuming my events in my script just aren't being hit. tl;dr: I'm a newb to Papyrus / modding, and not sure if what I'm doing is correct or not. Thanks a bunch in advance, I really appreciate it.