21 lines
575 B
Plaintext
21 lines
575 B
Plaintext
/////////////////////////////////////////////////////////
|
|
//
|
|
// Craftable Natural Resources (CNR) by Festyx
|
|
//
|
|
// Name: cnr_at_m_sell
|
|
//
|
|
// Desc: Changes to the merchant's sell menu page
|
|
//
|
|
// Author: David Bobeck 17Dec02
|
|
//
|
|
/////////////////////////////////////////////////////////
|
|
#include "cnr_merch_utils"
|
|
void main()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
SetLocalString(oPC, "sCnrMenuType", "SELL");
|
|
SetLocalString(oPC, "sCnrCurrentMenu", "SELL"+GetTag(OBJECT_SELF));
|
|
SetLocalInt(oPC, "nCnrMenuPage", 0);
|
|
// the convo script will call "cnr_ta_m_buysell" next
|
|
}
|