43 lines
982 B
Plaintext
43 lines
982 B
Plaintext
/* Script generated by
|
|
Lilac Soul's NWN Script Generator, v. 2.2
|
|
|
|
For download info, please visit:
|
|
http://nwvault.ign.com/View.php?view=Other.Detail&id=4683&id=625 */
|
|
|
|
//Can go OnDamaged, OnDisturbed, OnSpellCastAt, creature heartbeats, etc.
|
|
void main()
|
|
{
|
|
|
|
object oPC = GetLastHostileActor();
|
|
|
|
if (!GetIsPC(oPC)) return;
|
|
|
|
int nInt;
|
|
nInt = GetTimeHour();
|
|
|
|
if ((nInt < 0) || (nInt > 6))
|
|
return;
|
|
|
|
FloatingTextStringOnCreature("Your hideous fumblings have woken Old Taimes!", oPC);
|
|
|
|
object oCaster;
|
|
oCaster = GetObjectByTag("chesttaghere");
|
|
|
|
object oTarget;
|
|
oTarget = oPC;
|
|
|
|
AssignCommand(oCaster, ActionCastSpellAtObject(SPELL_GREATER_DISPELLING, oTarget, METAMAGIC_ANY, TRUE, 0, PROJECTILE_PATH_TYPE_DEFAULT, TRUE));
|
|
|
|
oTarget = GetObjectByTag("booldaimes");
|
|
|
|
effect eEffect;
|
|
eEffect = GetFirstEffect(oTarget);
|
|
while (GetIsEffectValid(eEffect))
|
|
{
|
|
if (GetEffectType(eEffect)==EFFECT_TYPE_SLEEP) RemoveEffect(oTarget, eEffect);
|
|
eEffect = GetNextEffect(oTarget);
|
|
}
|
|
|
|
}
|
|
|