25 lines
634 B
Plaintext
25 lines
634 B
Plaintext
|
//::///////////////////////////////////////////////
|
||
|
//:: 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();
|
||
|
}
|