Here's the script, I'm not so good, I need a script which runs for all types of helmets, Even mods
Here it is
scriptname 0VampireProtection
;; Script by Omber
begin OnEquip
if (PCVampire > 1)
Player.removespell vampsundmg50
Player.removespell vampsundmg75
Player.removespell vampsundmg100
Message "You are now protected from the sun"
endif
end
begin OnUnequip
if (PCVampire == 2)
Player.addspell vampsundmg50
Message "Your are exposed to the sun"
elseif (PCVampire == 3)
Player.addspell vampsundmg75
Message "You are exposed to the sun."
elseif (PCVampire == 4)
Player.addspell vampsundmg100
Message "You are exposed to the sun."
endif
end
Could anyone explain what i should do after this point ? This is on of my first scripts and a friend helped me abit,