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.
24 lines
688 B
Plaintext
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));
|
|
}
|