Jaysyn904 22947ad4b6 Initial Upload
Initial Upload
2023-08-08 16:22:17 -04:00

19 lines
356 B
Plaintext

////////////////////////////////////
/// Script Created by Zetino74 ///
/// on: Monday 2nd February 2004 ///
void main()
{
int nInt = GetTimeHour();
object oTarget = OBJECT_SELF;
if (nInt <= 8 || nInt >= 18)
{
AssignCommand(oTarget, ActionCloseDoor(oTarget));
SetLocked(oTarget, TRUE);
}
else
{
SetLocked(oTarget, FALSE);
}
}