PWE_PRC8/_module/nss/merchant_script.nss

14 lines
253 B
Plaintext
Raw Normal View History

2025-04-03 10:29:41 -04:00
void main()
{
object oPC = GetPCSpeaker();
object oItem = GetFirstItemInInventory(oPC);
while (GetIsObjectValid(oItem) && GetPlotFlag(oItem)== TRUE)
{
SetPlotFlag(oItem,FALSE);
oItem = GetNextItemInInventory(oPC);
}
}