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

25 lines
757 B
Plaintext

/////////////////////////////////////////////////////////
//
// Craftable Natural Resources (CNR) by Festyx
//
// Name: cnr_at_m_back
//
// Desc: Changes to the merchant's sell menu page
//
// Author: David Bobeck 23Dec02
//
/////////////////////////////////////////////////////////
//#include "cnr_merch_utils"
void main()
{
//CnrMerchantUpdateCustomTokens(OBJECT_SELF);
object oPC = GetPCSpeaker();
string sKeyToMenu = GetLocalString(oPC, "sCnrCurrentMenu");
string sKeyToKeyToParent = sKeyToMenu + "_KeyToParent";
string sKeyToParent = GetLocalString(GetModule(), sKeyToKeyToParent);
SetLocalString(oPC, "sCnrCurrentMenu", sKeyToParent);
SetLocalInt(oPC, "nCnrMenuPage", 0);
// the convo script will call "cnr_ta_m_buysell" next
}