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.
29 lines
773 B
Plaintext
29 lines
773 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_VISAGE);
|
|
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();
|
|
}
|
|
|
|
|