MMD_PRC8/_module/nss/trig_sleep.nss
Jaysyn904 adeff59f82 Initial commit
Initial commit.
2024-08-02 23:18:00 -04:00

28 lines
628 B
Plaintext

/* Script generated by
Lilac Soul's NWN Script Generator, v. 2.1
For download info, please visit:
http://nwvault.ign.com/View.php?view=Other.Detail&id=4683&id=625 */
//Put this OnEnter
void main()
{
object oPC = GetEnteringObject();
int iSleep = GetLocalInt( oPC,"sleep");
//if (!GetIsPC(oPC)) return;
object oTarget;
oTarget = oPC;
if ( iSleep <= 3 )
{
effect eEffect;
eEffect = EffectSleep();
SetLocalInt( oPC,"sleep",iSleep++);
FloatingTextStringOnCreature("The forest makes you feel sleepy.",oPC);
DelayCommand(6.0f,ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eEffect, oTarget, 12.0f));
}
}