AOC_PRC8/_module/nss/bodd_gold.nss

14 lines
335 B
Plaintext
Raw Permalink Normal View History

2025-04-03 11:24:16 -04:00
void main()
{
object oMod = GetModule();
int oX1 = GetLocalInt(oMod, "xcheck");
int oC1 = GetLocalInt(oMod, "challenge");
if ((oX1!=1)&&(oC1!=1))
{
object oTarget = OBJECT_SELF;
string sItemTemplate1 = "nw_it_gold001"; // gold
int nStackSize = 20000; // Create 20000 gold;
CreateItemOnObject(sItemTemplate1, oTarget, nStackSize);
}
}