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

26 lines
1.0 KiB
Plaintext

void main()
{
object oPC=GetEnteringObject();
object oMagicMouth=GetNearestObjectByTag("MAGIC_MOUTH",oPC);
object oMod=GetModule();
string sMsg;
string sKey;
string sZodiac;
if (GetIsPC(oPC))
{ // is PC
if (GetLocalInt(oPC,"bTEGodsCompleted"))
{ // already completed
AssignCommand(oMagicMouth,SpeakString("You will not be permitted to challenge the temple a second time!"));
} // already completed
else
{ // give message
sKey=GetLocalString(oMod,"sTempleKeywordName");
sZodiac=GetLocalString(oMod,"sTempleZodiac");
sMsg="You who have entered to challenge the Temple of The Elder gods be warned that the way is frought with peril. ";
sMsg=sMsg+"You will need the key of "+sKey+" and only by the path of "+sZodiac+" will your way be less dangerous.";
sMsg=sMsg+" You first must defeat the mothers of the four elements in order for you way to be opened.";
AssignCommand(oMagicMouth,SpeakString(sMsg));
} // give message
} // is PC
}