29 lines
776 B
Plaintext
29 lines
776 B
Plaintext
|
/////// Modified script for use with ah_littlegirl and the girl when she is named
|
||
|
// causes the Ghostly Visage Visual Effect to appear on her the moment she spawns, rather than having to cast it
|
||
|
// or having it run out midway through speaking
|
||
|
//
|
||
|
|
||
|
#include "NW_O2_CONINCLUDE"
|
||
|
#include "NW_I0_GENERIC"
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
|
||
|
// Start The relevant stuff
|
||
|
effect vfx = EffectVisualEffect(VFX_DUR_GHOSTLY_PULSE);
|
||
|
ApplyEffectToObject(DURATION_TYPE_PERMANENT, vfx, OBJECT_SELF);
|
||
|
//after applying the effect, cast spell at self to ensure effect
|
||
|
// ActionCastSpellAtObject(SPELL_GHOSTLY_VISAGE, OBJECT_SELF, METAMAGIC_EXTEND, TRUE, 0, PROJECTILE_PATH_TYPE_DEFAULT, TRUE);
|
||
|
// End The relevant stuff
|
||
|
|
||
|
|
||
|
SetListeningPatterns();
|
||
|
WalkWayPoints();
|
||
|
|
||
|
|
||
|
|
||
|
GenerateNPCTreasure();
|
||
|
}
|
||
|
|
||
|
|