Battledale_PRC8/_module/nss/ah_ghostlibrary.nss
Jaysyn904 7b9e44ebbb Initial upload
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.
2024-03-11 23:44:08 -04:00

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();
}