Difference between revisions of "Npc price"

From Kolmafia
Jump to navigation Jump to search
imported>Theraze
(Created page with "{{ #vardefine:name|npc_price}}{{ #vardefine:return_type|int}}{{ FunctionPage| name={{#var:name}}| function1={{Function| name={{#var:name}}| aggregate={{#var:aggregate}}| return...")
 
imported>Theraze
Line 16: Line 16:
  
 
function_description=Returns the current price of the given item from NPC shops, given availability to the player. 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.|
 
function_description=Returns the current price of the given item from NPC shops, given availability to the player. 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.|
 +
 +
code1={{CodeSample|
 +
title=Code Sample|
 +
description=Parse your inventory checking to see which NPC items are available to you.|
 +
code=
 +
<syntaxhighlight>
 +
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));  }
 +
</syntaxhighlight>}}|
  
 
see_also={{SeeAlso|historical_price|buy|mall_price|retrieve_item}}|
 
see_also={{SeeAlso|historical_price|buy|mall_price|retrieve_item}}|

Revision as of 13:47, 19 May 2011

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. 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.