Initial commit

Initial commit.  Updated release archive.
This commit is contained in:
Jaysyn904
2024-06-13 15:08:33 -04:00
parent c0bd67a6a7
commit a6f6db7303
5236 changed files with 4203994 additions and 0 deletions

23
_module/nss/hc_sd2.nss Normal file
View File

@@ -0,0 +1,23 @@
//:://////////////////////////////////////////////////
//:: X0_O2_SEC_DOOR2
//:: This is an OnEntered script for a generic trigger.
#include "x0_i0_secret"
void main()
{
object oEntered = GetEnteringObject();
if (GetIsSecretItemRevealed()) {return;}
RevealSecretItem("x0_sec_door2");
if (GetLocalInt(OBJECT_SELF,"DoOnce") > 0)
return;
SendMessageToPC(oEntered,"You have discovered a secret treasure room");
SetLocalInt(OBJECT_SELF,"DoOnce",1);
}