Files
Anphillia_PRC8/_module/nss/cnr_ta_r_top.nss
Jaysyn904 28cdb617b3 Initial commit
Adding all of the current content for Anphillia Unlimited.
2024-01-04 07:49:38 -05:00

24 lines
693 B
Plaintext

/////////////////////////////////////////////////////////
//
// Craftable Natural Resources (CNR) by Festyx
//
// Name: cnr_ta_r_top
//
// Desc: Init's the recipe's top menu page
//
// Author: David Bobeck 23Dec02
//
/////////////////////////////////////////////////////////
#include "cnr_recipe_utils"
int StartingConditional()
{
object oPC = GetPCSpeaker();
string sKeyToMenu = GetLocalString(oPC, "sCnrCurrentMenu");
int nMenuPage = GetLocalInt(oPC, "nCnrMenuPage");
CnrRecipeShowMenu(sKeyToMenu, nMenuPage);
string sTokenText = GetLocalString(oPC, "sCnrTokenText22000");
SetCustomToken(22000, sTokenText);
DeleteLocalString(oPC, "sCnrTokenText22000");
return TRUE;
}