RATDOG/_module/nss/invis_onspawn.nss
Jaysyn904 269eca1d1e Encounter work
Separated static spawns in "Forest of Hope: Central".  Fixed faction issues with Corrak's Crew.  Added "Faction Zoo" area for future faction work.  Tweaked factions.  Made sure creatures with CODI AI were granting XP.  Tweaked Masterwork weapons.  Fixed Warforged appearance not showing up properly in toolset.
2022-12-04 12:37:44 -05:00

24 lines
688 B
Plaintext

//::///////////////////////////////////////////////
//:: Name invis_onspawn
//:: Copyright (c) 2022 Project RATDOG
//:://////////////////////////////////////////////
/*
Sets spawner permenently invisible. Used for
faction spawn markers since they must be
creatures.
*/
//:://////////////////////////////////////////////
//:: Created By: Jaysyn
//:: Created On: 20221203
//:://////////////////////////////////////////////
void main()
{
effect eNatInvis = EffectInvisibility(4);
eNatInvis = SupernaturalEffect(eNatInvis);
eNatInvis = ExtraordinaryEffect(eNatInvis);
DelayCommand(0.0f, ApplyEffectToObject(DURATION_TYPE_PERMANENT, eNatInvis, OBJECT_SELF));
}