Alangara_PRC8/_module/nss/kemyconidsten001.nss
Jaysyn904 86feb9ca6f Initial commit
Initial commit.
2024-06-05 21:21:06 -04:00

27 lines
619 B
Plaintext

/* Script generated by
Lilac Soul's NWN Script Generator, v. 1.6
For download info, please visit:
http://www.lilacsoul.revility.com */
void main()
{
object oPC;
oPC = GetItemActivator();
object oTarget;
oTarget = GetItemActivatedTarget();
effect eEffect;
eEffect = EffectTemporaryHitpoints(50);
DelayCommand(1.0, SendMessageToPC(oPC, "You feel an overwhelming lifeforce as you activate the myconid stone"));
DelayCommand(6.0, ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eEffect, oTarget, 600.0f));
DelayCommand(301.0, SendMessageToPC(oPC, "You feel the overwhelming lifeforce leave you again."));
}