LoD_PRC8/_module/nss/sd_resref_chestc.nss

11 lines
240 B
Plaintext
Raw Normal View History

2023-09-21 21:20:34 -04:00
void main()
{
object oItem = GetFirstItemInInventory(OBJECT_SELF);
while (oItem != OBJECT_INVALID)
{
SpeakString("ResRef for " + GetName(oItem) + " is:" + GetResRef(oItem));
oItem = GetNextItemInInventory(OBJECT_SELF);
}
}