Is npc item: Difference between revisions
Jump to navigation
Jump to search
imported>StDoodle Created page with '{{#vardefine:name|is_npc_item}} {{#vardefine:return_type|boolean}} {{FunctionPage| name={{#var:name}}| function_category=Item Management| function1={{Function| name={{#var:name…' |
imported>Bale mNo edit summary |
||
(2 intermediate revisions by one other user not shown) | |||
Line 1: | Line 1: | ||
{{#vardefine:name|is_npc_item}} | {{ | ||
{{#vardefine:return_type|boolean}} | #vardefine:name|is_npc_item}}{{ | ||
#vardefine:return_type|boolean}}{{ | |||
FunctionPage| | |||
name={{#var:name}}| | name={{#var:name}}| | ||
function1={{Function| | function1={{Function| | ||
Line 12: | Line 12: | ||
return_also={{#var:return_also}}| | return_also={{#var:return_also}}| | ||
parameter1={{Param|item|check}}|| | parameter1={{Param|item|check}}|| | ||
p1desc={{pspan|check}} is an item to check for npc store availability | p1desc={{pspan|check}} is an item to check for npc store availability| | ||
}}| | }}| | ||
function_description=Returns | function_description=Returns true if the item can be bought from an NPCc store, false if it cannot be.</p> | ||
<p>Note that the function will return | <p>Note that the function will return true for items that can be bought in sign stores, even if you can't currently access them.| | ||
code1={{CodeSample| | code1={{CodeSample| | ||
title=Code Samples| | title=Code Samples| | ||
description=The following would return | description=The following would return true even if you are not a moxie sign.| | ||
code= | code= | ||
<syntaxhighlight> | <syntaxhighlight> | ||
Line 27: | Line 27: | ||
}} | }} | ||
[[Category:Item Management]] |
Latest revision as of 21:49, 21 May 2010
Function Syntax
boolean is_npc_item(item check )
- check is an item to check for npc store availability
Returns true if the item can be bought from an NPCc store, false if it cannot be.
Note that the function will return true for items that can be bought in sign stores, even if you can't currently access them.
Code Samples
The following would return true even if you are not a moxie sign.
is_npc_item($item[meleegra pills]);