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

25 lines
619 B
Plaintext

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