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

15 lines
433 B
Plaintext

void main()
{
object oContainer = OBJECT_SELF;
object oUser = GetLastUsedBy();
if ( (GetLocalString(oContainer, "USER") != GetPCPlayerName(oUser)) &&
(GetLocalInt(oContainer, "INUSE") == TRUE) )
{
FloatingTextStringOnCreature("Come back when the current player is done.", oUser, FALSE);
}
else
{
FloatingTextStringOnCreature("Walk away to close and save.", oUser, FALSE);
}
}