21 lines
583 B
Plaintext
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);
|
|
}
|