Difference between pages "Gnomads available" and "Can faxbot"

From Kolmafia
(Difference between pages)
Jump to navigation Jump to search
imported>Bale
(r9308)
 
 
Line 1: Line 1:
 
{{
 
{{
#vardefine:name|gnomads_available}}{{
+
#vardefine:name|can_faxbot}}{{
 
#vardefine:return_type|boolean}}{{
 
#vardefine:return_type|boolean}}{{
  
Line 8: Line 8:
 
function1={{Function|
 
function1={{Function|
 
name={{#var:name}}|
 
name={{#var:name}}|
return_type={{#var:return_type}}
+
return_type={{#var:return_type}}|
 +
parameter1={{Param|monster|mob}}||
 +
p1desc={{Pspan|mob}} is the monster for which to check.|
 
}}|
 
}}|
  
function_description=This function returns true if the logged-in character has has access to the Gnomish Gnomad Camp.|
+
function_description=Checks to see if {{Pspan|mob}} can be faxed by any of the faxbots known to KoLmafia. This does not check if the faxbot(s) are online.<ref>https://sourceforge.net/p/kolmafia/code/20614/tree/src/net/sourceforge/kolmafia/textui/RuntimeLibrary.java#l4753</ref>|
  
needscode=yes|
+
code1={{CodeSample|
 
+
title=Code Samples|
see_also={{SeeAlso|knoll_available|canadia_available}}|
+
description=This will acquire a copy of a scary pirate if you can get one.|
special=When not logged in, this function returns false.
+
code=
 +
<syntaxhighlight>
 +
if( get_property("_photocopyUsed")=="false" && can_faxbot($monster[scary pirate]) )
 +
faxbot($monster[scary pirate]);
 +
</syntaxhighlight>
 +
}}|
 +
see_also={{SeeAlso|faxbot|is_online}}|
 
}}
 
}}
 +
==References==
 +
<references/>
  
[[Category:Your Character]]
+
[[Category:Miscellaneous Functions]]

Latest revision as of 23:53, 24 January 2021

Function Syntax

boolean can_faxbot(monster mob )

  • mob is the monster for which to check.

Checks to see if mob can be faxed by any of the faxbots known to KoLmafia. This does not check if the faxbot(s) are online.[1]

Code Samples

This will acquire a copy of a scary pirate if you can get one.

if( get_property("_photocopyUsed")=="false" && can_faxbot($monster[scary pirate]) )
 faxbot($monster[scary pirate]);

See Also

faxbot() | is_online()


References