HoS_PRC8/_mod/_module/nss/oe_temple_reset.nss

16 lines
332 B
Plaintext
Raw Permalink Normal View History

2024-11-25 19:36:07 -05:00
#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
}