Initial upload. PRC8 has been added. Module compiles, PRC's default AI & treasure scripts have been integrated. Started work on top hak for SLA / Ability / Scripting modifications.
22 lines
719 B
Plaintext
22 lines
719 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
|
|
//:://////////////////////////////////////////////
|
|
|
|
void main()
|
|
{
|
|
//Yep thats it
|
|
SummonAnimalCompanion();
|
|
// object oComp=GetAssociate(ASSOCIATE_TYPE_ANIMALCOMPANION,OBJECT_SELF);
|
|
// ApplyEffectToObject(DURATION_TYPE_PERMANENT,EffectAttackIncrease(1),oComp);
|
|
// ApplyEffectToObject(DURATION_TYPE_PERMANENT,EffectACIncrease(2),oComp);
|
|
}
|