Well as for the Vial of blood, yes there is one in the game. It does not quench your thirst for blood and it wont lower your vampire %. I added one into the game that will lower it down to 25% after drinking it.
As for the cloak, what I did was duplicate the "Spell" Vampirism50, Vampirism75 an Vampirism100. I left in all of the normal stats as what each would have gave, but I took out the Sun Damage effect that comes with it and named all of them, "BVampirism50, BVampirism75, BVampirism100"
What I did from there was make the cloak item base, throw on the meshes and what not and set the attributes for the item (the weight, defense, enchantments etc. I then made a script added onto it, what it basically did was say on equip remove Vampirism50 and add in BVampirism50.
------------------------------------
Example:
Begin OnEquip
MessageBox "The Shadows Envelop thee."
if(PCVampire == 2)
player.removespell Vampirism50
player.addspell BVampirism50
elseif(PCVampire == 3)
player.removespell Vampirism75
player.addspell BVampirism75
elseif(PCVampire == 4)
player.removespell Vampirism100
player.addspell BVampirism100
endif
End
Begin OnUnequip
MessageBox "The safety of the shadow fades."
if(PCVampire == 2)
player.removespell BVampirism50
player.addspell Vampirism50
-----------------------------------------
I think you can figure out the rest of the script from there, I am running out of Chars left for this post. It is really quite simple to make if you know the basics of the TES Construction set... and yes this was all put together through the TES Construction set so if you want to make it yourself you are going to have to download it erlltheskwerl...
[Edited by Jayrollin, 4/21/2007 2:38:57 PM]
[Edited by Jayrollin, 4/21/2007 2:39:52 PM]
[Edited by Jayrollin, 4/21/2007 2:41:49 PM]
[Edited by Jayrollin, 4/21/2007 2:42:29 PM]
[Edited by Jayrollin, 4/21/2007 2:42:57 PM]
dammit