generated from Jaysyn/ModuleTemplate
24 lines
529 B
Plaintext
24 lines
529 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();
|
|
|
|
AssignCommand(oPC, ActionPlayAnimation(ANIMATION_LOOPING_GET_MID, 1.0f, 3.0f));
|
|
|
|
AssignCommand(oPC, ActionSpeakString("*opens flask of murky goop* "));
|
|
|
|
effect eEffect;
|
|
eEffect = EffectSummonCreature("puddlebrain", VFX_IMP_POLYMORPH, 1.0);
|
|
|
|
DelayCommand(5.0, ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eEffect, oPC, 240.0));
|
|
|
|
}
|
|
|