61 lines
1.9 KiB
Plaintext
61 lines
1.9 KiB
Plaintext
/* Script generated by
|
|
Lilac Soul's NWN Script Generator, v. 2.3
|
|
|
|
For download info, please visit:
|
|
http://nwvault.ign.com/View.php?view=Other.Detail&id=4683&id=625 */
|
|
|
|
//Put this on action taken in the conversation editor
|
|
void main()
|
|
{
|
|
|
|
object oPC = GetPCSpeaker();
|
|
|
|
object oTarget;
|
|
oTarget = oPC;
|
|
|
|
effect eEffect;
|
|
eEffect = EffectCutsceneImmobilize();
|
|
|
|
eEffect = SupernaturalEffect(eEffect);
|
|
|
|
ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eEffect, oTarget, 30.0f);
|
|
|
|
//Visual effects can't be applied to waypoints, so if it is a WP
|
|
//the VFX will be applied to the WP's location instead
|
|
|
|
int nInt;
|
|
nInt = GetObjectType(oTarget);
|
|
|
|
eEffect = EffectVisualEffect(VFX_FNF_SUNBEAM);
|
|
|
|
if (nInt != OBJECT_TYPE_WAYPOINT)
|
|
DelayCommand(2.0, ApplyEffectToObject(DURATION_TYPE_INSTANT, eEffect, oTarget));
|
|
else
|
|
DelayCommand(2.0, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eEffect, GetLocation(oTarget)));
|
|
|
|
DelayCommand(6.0, FloatingTextStringOnCreature("Oh ya baby, I'm GOOOOOOOOOOOOD !", oPC));
|
|
|
|
DelayCommand(10.0, FloatingTextStringOnCreature("Infact I'm so good I feel like a little song *starts singing*", oPC));
|
|
|
|
DelayCommand(15.0, FloatingTextStringOnCreature("I'm the angry Devil's wee scorn", oPC));
|
|
|
|
DelayCommand(18.0, FloatingTextStringOnCreature("I'm a champion to be reborn", oPC));
|
|
|
|
DelayCommand(21.0, FloatingTextStringOnCreature("I'm the brightest most have seen", oPC));
|
|
|
|
DelayCommand(21.0, FloatingTextStringOnCreature("I'm the hope of kings and queens", oPC));
|
|
|
|
//Visual effects can't be applied to waypoints, so if it is a WP
|
|
//the VFX will be applied to the WP's location instead
|
|
|
|
nInt = GetObjectType(oTarget);
|
|
|
|
eEffect = EffectVisualEffect(VFX_IMP_SUNSTRIKE);
|
|
|
|
if (nInt != OBJECT_TYPE_WAYPOINT)
|
|
DelayCommand(27.0, ApplyEffectToObject(DURATION_TYPE_INSTANT, eEffect, oTarget));
|
|
else
|
|
DelayCommand(27.0, ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eEffect, GetLocation(oTarget)));
|
|
|
|
}
|