Remade some areas, and added a new route
to Southampton Port. Added new creature for scenery in new area. changed the properties of some items to not cause alignment issues.
This commit is contained in:
12
_module/nss/barkskinvfx2.nss
Normal file
12
_module/nss/barkskinvfx2.nss
Normal file
@@ -0,0 +1,12 @@
|
||||
void main()
|
||||
{
|
||||
object oTarget = OBJECT_SELF;
|
||||
effect eMind = EffectVisualEffect(VFX_DUR_PROT_BARKSKIN);
|
||||
effect eGhost = EffectVisualEffect(VFX_DUR_GHOST_TRANSPARENT);
|
||||
eMind = UnyieldingEffect(eMind);
|
||||
eGhost = UnyieldingEffect(eGhost);
|
||||
DelayCommand(1.0, ApplyEffectToObject(DURATION_TYPE_PERMANENT, eGhost, oTarget));
|
||||
DelayCommand(1.0,ApplyEffectToObject(DURATION_TYPE_PERMANENT, eMind, oTarget));
|
||||
|
||||
SetLocalInt(OBJECT_SELF, "X1_L_IMMUNE_TO_DISPEL", 100);
|
||||
}
|
Reference in New Issue
Block a user