HoS_PRC8/_mod/_module/nss/oe_temple_reset.nss
Jaysyn904 04165202c0 Initial upload
Initial upload
2024-11-25 19:36:07 -05:00

16 lines
332 B
Plaintext

#include "puzzle_h"
void main()
{
object oPC=GetEnteringObject();
if (GetIsPC(oPC))
{ // PC
if (GetLocalInt(GetModule(),"bTEGodsActive")!=TRUE)
{ // activate
SetLocalInt(GetModule(),"bTEGodsActive",TRUE);
ResetPuzzle();
} // activate
DeleteLocalString(oPC,"sTempleKeyword");
} // PC
}