NWNDS/nwn_dark_sun/ds_merchdoors.nss
Jaysyn904 b01c5cc7db Added PnP Dire Rat.
Added PnP Dire Rat.
2021-07-21 17:48:43 -04:00

14 lines
343 B
Plaintext

void main()
{
if (GetIsNight())
{
ActionCloseDoor(OBJECT_SELF);
ActionSpeakString("This door is locked. A sign on the door says, 'Closed for the night.'");
return;
}
else
DelayCommand(20.0,ActionCloseDoor(OBJECT_SELF));
return;
}