Have chef

From Kolmafia
Revision as of 21:44, 21 May 2010 by imported>Bale
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Function Syntax

boolean have_chef()

Returns true if you have a chef (regular or clockwork) installed at your campground, and false if not.

Code Sample

This example tells you if it's turn-safe to cook.

if (have_chef()) {
   print("It's safe to do a little cooking." , "blue");
} else {
   print("Warning, cooking will consume turns!" , "red");
}

See Also

have_bartender() | print()