Rune_PRC8/_module/nss/k_locker.nss
Jaysyn904 d1c309ae63 Initial commit
Initial commit
2024-09-13 09:10:39 -04:00

28 lines
936 B
Plaintext

// This script locks OBJECT_SELF at night and unlocks it during the day.
//
// ============================================================================
// Part of the "Aspire" module foundation package.
// Author: Kaylor
// ============================================================================
void main()
{
if (GetLocalInt(OBJECT_SELF, "Aspire_LockerTimeStamp") != GetTimeHour()){
// Lock the object at night
if (GetIsNight() == TRUE){
if (GetLocked(OBJECT_SELF) == FALSE){
SetLocked(OBJECT_SELF, TRUE);
SetLocalInt(OBJECT_SELF, "Aspire_LockerTimeStamp", GetTimeHour());
}
}
// Unlock it during the day.
else {
if (GetLocked(OBJECT_SELF) == TRUE){
SetLocked(OBJECT_SELF, FALSE);
SetLocalInt(OBJECT_SELF, "Aspire_LockerTimeStamp", GetTimeHour());
}
}
}
}