Jaysyn904 66a0a3e043 Initial commit
Initial commit.
2024-08-03 14:13:18 -04:00

21 lines
583 B
Plaintext

/////////////////////////////////////////////////////////
//
// Craftable Natural Resources (CNR) by Festyx
//
// Name: cnr_ta_m_grn
//
// Desc: Checks if the item on the menu should
// be displayed as red. (if it's not on the PC)
//
// Author: David Bobeck 12Dec02
//
/////////////////////////////////////////////////////////
#include "cnr_merch_utils"
int StartingConditional()
{
object oPC = GetPCSpeaker();
int nOffset = GetLocalInt(oPC, "nCnrGrnOffset");
SetLocalInt(oPC, "nCnrGrnOffset", nOffset+1);
return CnrMerchantShowAsGreen(OBJECT_SELF, nOffset);
}