WoR_PRC8/_module/nss/bookchest.nss
Jaysyn904 b5e28e52f4 Initial commit
Initial commit [1.18]
2025-04-03 11:49:34 -04:00

29 lines
637 B
Plaintext

/* Script generated by
Lilac Soul's NWN Script Generator, v. 1.6
For download info, please visit:
http://www.lilacsoul.revility.com */
//Put this OnOpen
void main()
{
object oPC = GetLastOpenedBy();
if (!GetIsPC(oPC)) return;
object oItem = GetFirstItemInInventory(OBJECT_SELF);
while(GetIsObjectValid(oItem))
{
SetPlotFlag(oItem, FALSE);
DestroyObject(oItem);
oItem = GetNextItemInInventory(OBJECT_SELF);
}
CreateItemOnObject("subracebook", OBJECT_SELF);
CreateItemOnObject("dmfi_pc_dicebag", OBJECT_SELF);
CreateItemOnObject("dmfi_pc_follow", OBJECT_SELF);
CreateItemOnObject("dmfi_pc_emote", OBJECT_SELF);
}