Npc price

From Kolmafia
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Function Syntax

int npc_price(item shop_for )

  • shop_for is the item to inquire on the npc price and availability of.

Returns the current price of the given item from NPC shops, given availability to the player. If it is not available from an NPC store or the store is not available, then it returns 0.

This function runs a new check each time it is called, so if you call this function and then unlock a new NPC store, calling this function again will return the new availability state of the item.

Code Sample

Parse your inventory checking to see which NPC items are available to you.

foreach i in get_inventory()
{
  if (is_npc_item(i))
  {
    if (npc_price(i) == 0) print(i+" can be bought but not by you.");
    else print(i+" can be bought for "+npc_price(i));
  }
}

See Also

historical_price() | buy() | mall_price() | retrieve_item()

Special

Items not currently available will return 0. When not logged in, this function returns 0 for all items, as none of them are available to you at the time.