Visit

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

boolean visit(coinmaster master )

  • master is the coinmaster to purchase from

Visits a coinmaster to see what is currently for sale there. This is useful for coinmasters whose inventory may change, such as the Hermit, Mr. Store and Traveling Trader. Returns true if the visit was successful or false if it was unsuccessful.

Code Sample

This checks to see if a clover is currently available for purchase.

if(visit($coinmaster[Hermit])) {
   if(sells_item($coinmaster[Hermit], $item[ten-leaf clover])) 
      print("There is still a ten-leaf clover available to purchase today!"); 
   else print("The Hermit is out of clovers. :("); 
} else print(inaccessible_reason($coinmaster[Hermit]));

See Also

is_accessible() | sells_item() | buys_item()