20 lines
523 B
Plaintext
20 lines
523 B
Plaintext
/////////////////////////////////////////////////////////
|
|
//
|
|
// Craftable Natural Resources (CNR) by Festyx
|
|
//
|
|
// Name: cnr_at_m_next
|
|
//
|
|
// Desc: Changes to the next merchant menu page
|
|
//
|
|
// Author: David Bobeck 12Dec02
|
|
//
|
|
/////////////////////////////////////////////////////////
|
|
#include "cnr_merch_utils"
|
|
void main()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
string sKeyToMenu = GetLocalString(oPC, "sCnrCurrentMenu");
|
|
int nMenuPage = GetLocalInt(oPC, "nCnrMenuPage");
|
|
CnrMerchantShowMenu(sKeyToMenu, nMenuPage+1);
|
|
}
|