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.
26 lines
676 B
Plaintext
26 lines
676 B
Plaintext
////////////::///////////////////////////////////////////////////
|
|
//:: Default: On Spawn In
|
|
//:: NW_C2_DEFAULT9
|
|
//:: Copyright (c) 2001 Bioware Corp.
|
|
//::///////////////////////////////////////////////
|
|
/*
|
|
Determines the course of action to be taken
|
|
after having just been spawned in
|
|
*/
|
|
//::////////////////////////////////////////////////
|
|
//:: Created By: Preston Watamaniuk
|
|
//:: Created On: Oct 25, 2001
|
|
//::///////////////////////////////////////////////
|
|
|
|
|
|
void main()
|
|
{
|
|
ApplyEffectToObject(DURATION_TYPE_PERMANENT,EffectVisualEffect(VFX_DUR_PROT_SHADOW_ARMOR),OBJECT_SELF);
|
|
|
|
ApplyEffectToObject(DURATION_TYPE_PERMANENT,EffectCutsceneDominated(),OBJECT_SELF);
|
|
|
|
|
|
}
|
|
|
|
|