27 lines
619 B
Plaintext
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."));
|
||
|
|
||
|
}
|
||
|
|