AOC_PRC8/_module/nss/boss_gold.nss
Jaysyn904 5e558169a0 Initial Commit
Initial Commit
2025-04-03 11:24:16 -04:00

14 lines
335 B
Plaintext

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 = 15000; // Create 20000 gold;
CreateItemOnObject(sItemTemplate1, oTarget, nStackSize);
}
}