Files
HeroesStone_PRC8/_module/nss/mog_on_act_item.nss
Jaysyn904 1eefc84201 Initial Commit
Initial Commit.
2025-09-14 15:40:46 -04:00

19 lines
567 B
Plaintext

void main()
{
if ( GetTag( GetItemActivated() ) == "SleepActivatorToy")
{
if (GetLocalInt(GetModule(),"RestAllow") == 1)
{
SetLocalInt(GetModule(),"RestAllow",0);
SpeakString("Resting Disabled",TALKVOLUME_SHOUT);
return;
}
if (GetLocalInt(GetModule(),"RestAllow") == 0)
{
SetLocalInt(GetModule(),"RestAllow",1);
SpeakString("Resting Enabled",TALKVOLUME_SHOUT);
return;
}
}
}