Kerberus14 Posted January 10, 2015 Share Posted January 10, 2015 (edited) What perks do Vampire NPC's have?What perks can I edit that would affect them?Are they affected by Stages?Can't I scan a cell for NPC's and dynamically add a script to them? How can I use the OnHit effect to reduce the damage received to 0? Edited January 10, 2015 by Kerberus14 Link to comment Share on other sites More sharing options...
lofgren Posted January 10, 2015 Share Posted January 10, 2015 Vampire NPCs are all stage 4. You can check their actorbase to see what perks they have. As I recall vampires do not have any special perks. That standard way of adding a script to an NPC dynamically is to put it in a cloak spell and add the cloak spel to the player. Link to comment Share on other sites More sharing options...
Kerberus14 Posted January 10, 2015 Share Posted January 10, 2015 I've checked their actorbase in CK and there's no tab for perks anywhere to be seen.. http://i.gyazo.com/0f9c2a973e6262de264ad84fb1ec395c.png Am I doing it wrong? Link to comment Share on other sites More sharing options...
lofgren Posted January 10, 2015 Share Posted January 10, 2015 It's on the same tab as the spell list. Link to comment Share on other sites More sharing options...
Kerberus14 Posted January 10, 2015 Share Posted January 10, 2015 If I add a perk to the Actor that is in the picture which is the ActorBase of 3 other Actors, will that perk be added to them as well? Link to comment Share on other sites More sharing options...
lofgren Posted January 10, 2015 Share Posted January 10, 2015 (edited) Yes, provided "Use Spelllist" is checked. Edited January 10, 2015 by lofgren Link to comment Share on other sites More sharing options...
Kerberus14 Posted January 10, 2015 Share Posted January 10, 2015 Right, that worked, thanks :D. Spell Property FormRight auto Spell Property FormLeft auto Event OnPlayerLoadGame() FormRight=PlayerRef.GetEquippedSpell(0) FormLeft=PlayerRef.GetEquippedSpell(1) PlayerRef.UnEquipItem(FormRight,false,true) PlayerRef.UnEquipItem(FormLeft,false,true) EndEvent This Event won't do anything, am I doing something wrong? Link to comment Share on other sites More sharing options...
sadampl Posted January 10, 2015 Share Posted January 10, 2015 I try to load Emfy Cleric Robes in CK and there are no entries for items. No relevant errors during loading. Any idea how to fix it? Link to comment Share on other sites More sharing options...
Terra Nova Posted January 10, 2015 Share Posted January 10, 2015 Right, that worked, thanks :D. Spell Property FormRight auto Spell Property FormLeft auto Event OnPlayerLoadGame() FormRight=PlayerRef.GetEquippedSpell(0) FormLeft=PlayerRef.GetEquippedSpell(1) PlayerRef.UnEquipItem(FormRight,false,true) PlayerRef.UnEquipItem(FormLeft,false,true) EndEvent This Event won't do anything, am I doing something wrong?OnPlayerLoadGame() doesn't fire on the first game load. You gotta save first, then it will work on subsequent game loads. Link to comment Share on other sites More sharing options...
Kerberus14 Posted January 10, 2015 Share Posted January 10, 2015 (edited) I know that, but it still doesn't do anything lol, it should unequip my spells but it doesn't, while UnEquipAll does it.. I've tested with messageboxes, the FormRight and FormLeft retrieves the spell references, but the UnEquipItem doesn't work.. why? Edited January 10, 2015 by Kerberus14 Link to comment Share on other sites More sharing options...
Recommended Posts