Difference between revisions of "Get chateau"

From Kolmafia
Jump to navigation Jump to search
imported>Relyk
imported>Degrassi knowles
m (very minor cleanup.)
 
Line 14: Line 14:
 
}}|
 
}}|
  
function_description=Returns a map of your campground items as integers, keyed by item names.
+
function_description=Returns a map of your chateau items as integers, keyed by item names.
 
<ul>
 
<ul>
 
<li> Most values will be 1 to represent the item exists.</li>
 
<li> Most values will be 1 to represent the item exists.</li>

Latest revision as of 22:08, 8 July 2016

Function Syntax

int [item] get_chateau()

Returns a map of your chateau items as integers, keyed by item names.

  • Most values will be 1 to represent the item exists.
  • Not all items will be included, players must purchase at least one item for each spot to appear.
  • Your painting is accessed separately with its own properties.

Code Sample

The following checks if Chateau Mantegna is available and then prints the contents and painting status.

  if(to_boolean(get_property("chateauAvailable")))
  {
    int [item] chateau = get_chateau();
    foreach furniture in chateau
    {
      print(furniture + " " + chateau[furniture]);
    }

    string painting = get_property("chateauMonster");
    string fought = get_property("_chateauMonsterFought");
    print(painting + " " + fought);
  }

See Also

get_campground()