Added "removed" folder

This commit is contained in:
Jaysyn904
2024-06-14 00:06:09 -04:00
parent 8a83a1b51a
commit b7139401ed
249 changed files with 14605 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
//::///////////////////////////////////////////////
//:: Summon Animal Companion
//:: NW_S2_AnimalComp
//:: Copyright (c) 2001 Bioware Corp.
//:://////////////////////////////////////////////
/*
This spell summons a Druid's animal companion
*/
//:://////////////////////////////////////////////
//:: Created By: Preston Watamaniuk
//:: Created On: Sept 27, 2001
//:: Modified: 69MEH69 Sep2005
//:://////////////////////////////////////////////
#include "69_hench_lib"
void main()
{
if(!GetIsPC(OBJECT_SELF))
{
HenchSummonCreature69(OBJECT_SELF);
return;
}
//Yep thats it
SummonAnimalCompanion();
}