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

20 lines
553 B
Plaintext

/////////////////////////////////////////////////////////
//
// Craftable Natural Resources (CNR) by Festyx
//
// Name: cnr_at_r_prev
//
// Desc: Changes to the previous recipe menu page
//
// Author: David Bobeck 08Dec02
//
/////////////////////////////////////////////////////////
void main()
{
object oPC = GetPCSpeaker();
string sKeyToMenu = GetLocalString(oPC, "sCnrCurrentMenu");
int nMenuPage = GetLocalInt(oPC, "nCnrMenuPage") - 1;
SetLocalInt(oPC, "nCnrMenuPage", nMenuPage);
// the convo script will call "cnr_ta_r_top" next
}