Shargast_PRC8/_module/Chapter 2/nss/cnr_ta_m_back.nss
Jaysyn904 66a0a3e043 Initial commit
Initial commit.
2024-08-03 14:13:18 -04:00

25 lines
607 B
Plaintext

/////////////////////////////////////////////////////////
//
// Craftable Natural Resources (CNR) by Festyx
//
// Name: cnr_ta_m_back
//
// Desc: Should the "Back" menu item be shown.
//
// Author: David Bobeck 06Apr03
//
/////////////////////////////////////////////////////////
int StartingConditional()
{
object oPC = GetPCSpeaker();
string sKeyToMenu = GetLocalString(oPC, "sCnrCurrentMenu");
string sKeyToKeyToParent = sKeyToMenu + "_KeyToParent";
string sKeyToParent = GetLocalString(GetModule(), sKeyToKeyToParent);
if (sKeyToParent != "")
{
return TRUE;
}
return FALSE;
}