LoD_PRC8/_module/nss/sd_resref_chestc.nss
Jaysyn904 94990edc60 Initial Upload
Initial Upload
2023-09-21 21:20:34 -04:00

11 lines
240 B
Plaintext

void main()
{
object oItem = GetFirstItemInInventory(OBJECT_SELF);
while (oItem != OBJECT_INVALID)
{
SpeakString("ResRef for " + GetName(oItem) + " is:" + GetResRef(oItem));
oItem = GetNextItemInInventory(OBJECT_SELF);
}
}