Initial Commit

Initial Commit
This commit is contained in:
Jaysyn904
2025-04-03 11:24:16 -04:00
parent 3ba3cf1b81
commit 5e558169a0
6086 changed files with 1502996 additions and 1 deletions

13
_module/nss/boss_gold.nss Normal file
View File

@@ -0,0 +1,13 @@
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);
}
}