<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.kolmafia.us/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Malibu+Stacey</id>
	<title>Kolmafia - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.kolmafia.us/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Malibu+Stacey"/>
	<link rel="alternate" type="text/html" href="https://wiki.kolmafia.us/index.php?title=Special:Contributions/Malibu_Stacey"/>
	<updated>2026-04-30T15:20:55Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.44.0</generator>
	<entry>
		<id>https://wiki.kolmafia.us/index.php?title=Equip&amp;diff=9241</id>
		<title>Equip</title>
		<link rel="alternate" type="text/html" href="https://wiki.kolmafia.us/index.php?title=Equip&amp;diff=9241"/>
		<updated>2024-04-12T16:49:32Z</updated>

		<summary type="html">&lt;p&gt;Malibu Stacey: add new overloads for equipping familiars directly and code example&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{&lt;br /&gt;
#vardefine:name|equip}}{{&lt;br /&gt;
#vardefine:return_type|boolean}}{{&lt;br /&gt;
&lt;br /&gt;
FunctionPage|&lt;br /&gt;
name={{#var:name}}|&lt;br /&gt;
&lt;br /&gt;
function1={{Function|&lt;br /&gt;
name={{#var:name}}|&lt;br /&gt;
aggregate={{#var:aggregate}}|&lt;br /&gt;
return_type={{#var:return_type}}|&lt;br /&gt;
return_also={{#var:return_also}}|&lt;br /&gt;
parameter1={{Param|item|equip_me}}|&lt;br /&gt;
}}|&lt;br /&gt;
&lt;br /&gt;
function2={{Function|&lt;br /&gt;
name={{#var:name}}|&lt;br /&gt;
aggregate={{#var:aggregate}}|&lt;br /&gt;
return_type={{#var:return_type}}|&lt;br /&gt;
return_also={{#var:return_also}}|&lt;br /&gt;
parameter1={{Param|item|equip_me}}|&lt;br /&gt;
parameter2={{Param|slot|where}}|&lt;br /&gt;
&lt;br /&gt;
}}|&lt;br /&gt;
&lt;br /&gt;
function3={{Function|&lt;br /&gt;
name={{#var:name}}|&lt;br /&gt;
aggregate={{#var:aggregate}}|&lt;br /&gt;
return_type={{#var:return_type}}|&lt;br /&gt;
return_also={{#var:return_also}}|&lt;br /&gt;
parameter1={{Param|slot|where}}|&lt;br /&gt;
parameter2={{Param|item|equip_me}}|&lt;br /&gt;
p1desc={{Pspan|equip_me}} is the item to equip|&lt;br /&gt;
p2desc={{Pspan|where}} is the slot to place the item in|&lt;br /&gt;
}}|&lt;br /&gt;
&lt;br /&gt;
function4={{Function|&lt;br /&gt;
name={{#var:name}}|&lt;br /&gt;
aggregate={{#var:aggregate}}|&lt;br /&gt;
return_type={{#var:return_type}}|&lt;br /&gt;
return_also={{#var:return_also}}|&lt;br /&gt;
parameter1={{Param|item|equip_me}}|&lt;br /&gt;
parameter2={{Param|familiar|fam}}|&lt;br /&gt;
&lt;br /&gt;
}}|&lt;br /&gt;
&lt;br /&gt;
function5={{Function|&lt;br /&gt;
name={{#var:name}}|&lt;br /&gt;
aggregate={{#var:aggregate}}|&lt;br /&gt;
return_type={{#var:return_type}}|&lt;br /&gt;
return_also={{#var:return_also}}|&lt;br /&gt;
parameter1={{Param|familiar|fam}}|&lt;br /&gt;
parameter2={{Param|item|equip_me}}|&lt;br /&gt;
p1desc={{Pspan|equip_me}} is the item to equip|&lt;br /&gt;
p2desc={{Pspan|where}} is the familiar to equip the item on|&lt;br /&gt;
}}|&lt;br /&gt;
&lt;br /&gt;
function_description=Attempts to equip the item {{pspan|equip_me}} in the slot {{pspan|where}} if specified, and returns true if the operation was successful, and false if it was not. If parameter {{pspan|where}} is not specified, it defaults to the &amp;quot;standard&amp;quot; place for such an item (main-hand for 1-handed weapons, first open slot for accessories or acc1 if no slots are open). &lt;br /&gt;
*If {{pspan|where}} is specified and {{pspan|equip_me}} is set to $item[none], this function will unequip whatever is in slot {{pspan|where}} and return true. &lt;br /&gt;
*If {{pspan|where}} is not specified and {{pspan|equip_me}} is set to $item[none], the function aborts and you get a funky error because that makes no sense. &lt;br /&gt;
*If you cannot equip {{pspan|equip_me}}, or {{pspan|where}} is supplied and the item cannot be used in that slot, you will be given an error message and this function will return false.&lt;br /&gt;
*The overload for equipping a familiar with {{pspan|equip_me}} can be used to equip familiars with familiar equipment without requiring the familiar to be your currently active familiar. This will return false if you don&#039;t have (or can&#039;t use) the familiar or if the familiar can&#039;t equip the item you are attempting to equip.&lt;br /&gt;
&amp;amp;nbsp;|&lt;br /&gt;
&lt;br /&gt;
code1={{CodeSample|&lt;br /&gt;
title=Code Sample|&lt;br /&gt;
description=Equips the Swashbuckling Getup carefully to ensure that the parrot is in the second accessory slot.|&lt;br /&gt;
code=&lt;br /&gt;
&amp;lt;syntaxhighlight&amp;gt;&lt;br /&gt;
equip($item[eyepatch]);&lt;br /&gt;
equip($item[swashbuckling pants]);&lt;br /&gt;
equip($slot[acc2], $item[stuffed shoulder parrot]);&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
}}|&lt;br /&gt;
&lt;br /&gt;
code2={{CodeSample|&lt;br /&gt;
title=Code Sample|&lt;br /&gt;
description=Equips the blue plate on the Shorter-Order Cook without switching to it first.|&lt;br /&gt;
code=&lt;br /&gt;
&amp;lt;syntaxhighlight&amp;gt;&lt;br /&gt;
equip($familiar[shorter-order cook], $item[blue plate]);&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
}}|&lt;br /&gt;
&lt;br /&gt;
see_also={{SeeAlso|can_equip|equipped_amount|equipped_item|have_equipped}}|&lt;br /&gt;
cli_equiv=The CLI commands &amp;quot;equip&amp;quot; (and others, for specific slots) function similarly.|&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Equipment]]&lt;/div&gt;</summary>
		<author><name>Malibu Stacey</name></author>
	</entry>
	<entry>
		<id>https://wiki.kolmafia.us/index.php?title=In_casual&amp;diff=9154</id>
		<title>In casual</title>
		<link rel="alternate" type="text/html" href="https://wiki.kolmafia.us/index.php?title=In_casual&amp;diff=9154"/>
		<updated>2022-06-23T18:42:24Z</updated>

		<summary type="html">&lt;p&gt;Malibu Stacey: example whitespace&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{&lt;br /&gt;
#vardefine:name|in_casual}}{{&lt;br /&gt;
#vardefine:return_type|boolean}}{{FunctionPage|&lt;br /&gt;
name={{#var:name}}|&lt;br /&gt;
&lt;br /&gt;
function1={{Function|&lt;br /&gt;
name={{#var:name}}|&lt;br /&gt;
aggregate={{#var:aggregate}}|&lt;br /&gt;
return_type={{#var:return_type}}|&lt;br /&gt;
return_also={{#var:return_also}}&lt;br /&gt;
}}|&lt;br /&gt;
&lt;br /&gt;
function_description=This function returns true if the logged-in character is currently in a Casual ascension.  In any other path (including Unrestricted) this function returns false.|&lt;br /&gt;
&lt;br /&gt;
code1={{CodeSample|&lt;br /&gt;
title=Code Samples|&lt;br /&gt;
description=The following example attempts to buy items from the mall if the character is in a Casual ascension|&lt;br /&gt;
code=&lt;br /&gt;
&amp;lt;syntaxhighlight&amp;gt;&lt;br /&gt;
if (in_casual() &amp;amp;&amp;amp; available_amount($item[smut orc keepsake box]) &amp;lt; 1) {&lt;br /&gt;
   buy(1, $item[smut orc keepsake box]);&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
}}|&lt;br /&gt;
&lt;br /&gt;
see_also={{SeeAlso|can_interact|in_hardcore}}|&lt;br /&gt;
special=When not logged in, this function returns false.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Your Character]]&lt;/div&gt;</summary>
		<author><name>Malibu Stacey</name></author>
	</entry>
	<entry>
		<id>https://wiki.kolmafia.us/index.php?title=In_casual&amp;diff=9153</id>
		<title>In casual</title>
		<link rel="alternate" type="text/html" href="https://wiki.kolmafia.us/index.php?title=In_casual&amp;diff=9153"/>
		<updated>2022-06-23T18:41:30Z</updated>

		<summary type="html">&lt;p&gt;Malibu Stacey: Create page, used in_hardcore() as a template&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{&lt;br /&gt;
#vardefine:name|in_casual}}{{&lt;br /&gt;
#vardefine:return_type|boolean}}{{&lt;br /&gt;
&lt;br /&gt;
FunctionPage|&lt;br /&gt;
name={{#var:name}}|&lt;br /&gt;
&lt;br /&gt;
function1={{Function|&lt;br /&gt;
name={{#var:name}}|&lt;br /&gt;
aggregate={{#var:aggregate}}|&lt;br /&gt;
return_type={{#var:return_type}}|&lt;br /&gt;
return_also={{#var:return_also}}&lt;br /&gt;
}}|&lt;br /&gt;
&lt;br /&gt;
function_description=This function returns true if the logged-in character is currently in a Casual ascension.  In any other path (including Unrestricted) this function returns false.|&lt;br /&gt;
&lt;br /&gt;
code1={{CodeSample|&lt;br /&gt;
title=Code Samples|&lt;br /&gt;
description=The following example attempts to buy items from the mall if the character is in a Casual ascension|&lt;br /&gt;
code=&lt;br /&gt;
&amp;lt;syntaxhighlight&amp;gt;&lt;br /&gt;
if(in_casual() &amp;amp;&amp;amp; available_amount($item[smut orc keepsake box]) &amp;lt; 1) {&lt;br /&gt;
   buy(1 , $item[smut orc keepsake box]);&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
}}|&lt;br /&gt;
&lt;br /&gt;
see_also={{SeeAlso|can_interact|in_hardcore}}|&lt;br /&gt;
special=When not logged in, this function returns false.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Your Character]]&lt;/div&gt;</summary>
		<author><name>Malibu Stacey</name></author>
	</entry>
	<entry>
		<id>https://wiki.kolmafia.us/index.php?title=Buy&amp;diff=9048</id>
		<title>Buy</title>
		<link rel="alternate" type="text/html" href="https://wiki.kolmafia.us/index.php?title=Buy&amp;diff=9048"/>
		<updated>2021-07-03T07:12:07Z</updated>

		<summary type="html">&lt;p&gt;Malibu Stacey: add extra overloads&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{&lt;br /&gt;
#vardefine:name|buy}}{{&lt;br /&gt;
#vardefine:return_type|boolean}}{{&lt;br /&gt;
&lt;br /&gt;
FunctionPage|&lt;br /&gt;
name={{#var:name}}|&lt;br /&gt;
&lt;br /&gt;
function1={{Function|&lt;br /&gt;
name={{#var:name}}|&lt;br /&gt;
aggregate={{#var:aggregate}}|&lt;br /&gt;
return_type={{#var:return_type}}|&lt;br /&gt;
return_also={{#var:return_also}}|&lt;br /&gt;
parameter1={{Param|item|it}}|&lt;br /&gt;
parameter2={{Param|int|qty}}|&lt;br /&gt;
p1desc={{pspan|it}} is the item to purchase|&lt;br /&gt;
p2desc={{pspan|qty}} is the (optional) number to purchase|&lt;br /&gt;
}}|&lt;br /&gt;
&lt;br /&gt;
function2={{Function|&lt;br /&gt;
name={{#var:name}}|&lt;br /&gt;
aggregate={{#var:aggregate}}|&lt;br /&gt;
return_type=int|&lt;br /&gt;
return_also={{#var:return_also}}|&lt;br /&gt;
parameter1={{Param|item|it}}|&lt;br /&gt;
parameter2={{Param|int|qty}}|&lt;br /&gt;
parameter3={{Param|int|price}}|&lt;br /&gt;
p1desc={{pspan|it}} is the item to purchase|&lt;br /&gt;
p2desc={{pspan|qty}} is the number to purchase|&lt;br /&gt;
p3desc={{pspan|price}} is the (optional) maximum price to spend per item|&lt;br /&gt;
}}|&lt;br /&gt;
&lt;br /&gt;
function3={{Function|&lt;br /&gt;
name={{#var:name}}|&lt;br /&gt;
aggregate={{#var:aggregate}}|&lt;br /&gt;
return_type={{#var:return_type}}|&lt;br /&gt;
return_also={{#var:return_also}}|&lt;br /&gt;
parameter1={{Param|int|qty}}|&lt;br /&gt;
parameter2={{Param|item|it}}|&lt;br /&gt;
p1desc={{pspan|qty}} is the number to purchase|&lt;br /&gt;
p2desc={{pspan|it}} is the item to purchase|&lt;br /&gt;
}}|&lt;br /&gt;
&lt;br /&gt;
function4={{Function|&lt;br /&gt;
name={{#var:name}}|&lt;br /&gt;
aggregate={{#var:aggregate}}|&lt;br /&gt;
return_type=int|&lt;br /&gt;
return_also={{#var:return_also}}|&lt;br /&gt;
parameter1={{Param|int|qty}}|&lt;br /&gt;
parameter2={{Param|item|it}}|&lt;br /&gt;
parameter3={{Param|int|price}}|&lt;br /&gt;
p1desc={{pspan|qty}} is the number to purchase|&lt;br /&gt;
p2desc={{pspan|it}} is the item to purchase|&lt;br /&gt;
p3desc={{pspan|price}} is the (optional) maximum price to spend per item|&lt;br /&gt;
}}|&lt;br /&gt;
&lt;br /&gt;
function5={{Function|&lt;br /&gt;
name={{#var:name}}|&lt;br /&gt;
aggregate={{#var:aggregate}}|&lt;br /&gt;
return_type=boolean|&lt;br /&gt;
return_also={{#var:return_also}}|&lt;br /&gt;
parameter1={{Param|coinmaster|master}}|&lt;br /&gt;
parameter2={{Param|int|qty}}|&lt;br /&gt;
parameter3={{Param|item|it}}|&lt;br /&gt;
p1desc={{pspan|master}} is the coinmaster to purchase from|&lt;br /&gt;
p2desc={{pspan|qty}} is the number to purchase|&lt;br /&gt;
p3desc={{pspan|it}} is the item to purchase|&lt;br /&gt;
}}|&lt;br /&gt;
&lt;br /&gt;
function_description=Attempts to purchase {{pspan|qty}} amount of item {{pspan|it}}. (Will not buy using meat from storage; use buy_using_storage() instead.) If {{pspan|qty}} is less than 1, the function will return true without purchasing anything. If the optional maximum {{pspan|price}} is specified, it returns the integer amount of items purchased; otherwise it returns true if the purchase succeeded and false if it did not. If a {{pspan|price}} less than 1 is passed, the function will always buy {{pspan|qty}}, regardless of price. Without the optional {{pspan|price}} parameter, first preference is given to NPC stores when attempting purchases, after which it will attempt to use the mall.&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p&amp;gt;The versions that return a boolean value determine success depending on whether your inventory of the desired item went up by the amount you tried to buy.&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p&amp;gt;If a {{pspan|coinmaster}} is listed, it will attempt to purchase from the coinmaster using the correct alternate currency. Otherwise it will be purchased from an NPC store or mall using meat.|&lt;br /&gt;
&lt;br /&gt;
code1={{CodeSample|&lt;br /&gt;
title=Code Sample|&lt;br /&gt;
description=Buy a broken skull.|&lt;br /&gt;
code=&lt;br /&gt;
&amp;lt;syntaxhighlight&amp;gt;&lt;br /&gt;
buy(1 , $item[broken skull]);&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;}}&lt;br /&gt;
&lt;br /&gt;
{{CodeSample|&lt;br /&gt;
description=This expands upon purchasing from a coinmaster to show many related functions.|&lt;br /&gt;
code=&lt;br /&gt;
&amp;lt;syntaxhighlight&amp;gt;&lt;br /&gt;
boolean buy_coinmaster(int qty, item it) {&lt;br /&gt;
   coinmaster master = it.seller;&lt;br /&gt;
   if(master == $coinmaster[none]) {&lt;br /&gt;
      print(&amp;quot;You do not need a coinmaster to purchase that&amp;quot;, &amp;quot;red&amp;quot;);&lt;br /&gt;
      return false;&lt;br /&gt;
   }&lt;br /&gt;
   if(!is_accessible(master)) {&lt;br /&gt;
      print(inaccessible_reason(master), &amp;quot;red&amp;quot;);&lt;br /&gt;
      return false;&lt;br /&gt;
   }&lt;br /&gt;
   int coins = master.available_tokens;&lt;br /&gt;
   int price = sell_price(master, it);&lt;br /&gt;
   if(price &amp;gt; coins) {&lt;br /&gt;
      print(&amp;quot;You only have &amp;quot;+coins+&amp;quot; &amp;quot;+master.token+&amp;quot;, but it costs &amp;quot;+price+&amp;quot; &amp;quot;+master.token, &amp;quot;red&amp;quot;);&lt;br /&gt;
      return false;&lt;br /&gt;
   }&lt;br /&gt;
   return buy(master, qty, it);&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
}}|&lt;br /&gt;
&lt;br /&gt;
see_also={{SeeAlso|sell|buy_price|buy_using_storage}}|&lt;br /&gt;
cli_equiv=The CLI commands &amp;quot;buy&amp;quot; and &amp;quot;acquire&amp;quot; work similarly.|&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Item Management]]&lt;/div&gt;</summary>
		<author><name>Malibu Stacey</name></author>
	</entry>
	<entry>
		<id>https://wiki.kolmafia.us/index.php?title=User:Malibu_Stacey&amp;diff=8841</id>
		<title>User:Malibu Stacey</title>
		<link rel="alternate" type="text/html" href="https://wiki.kolmafia.us/index.php?title=User:Malibu_Stacey&amp;diff=8841"/>
		<updated>2020-12-21T06:06:28Z</updated>

		<summary type="html">&lt;p&gt;Malibu Stacey: Created page with &amp;quot;I work on [https://github.com/Loathing-Associates-Scripting-Society/autoscend autoscend]. It&amp;#039;s terrible. Don&amp;#039;t use it.&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I work on [https://github.com/Loathing-Associates-Scripting-Society/autoscend autoscend]. It&#039;s terrible. Don&#039;t use it.&lt;/div&gt;</summary>
		<author><name>Malibu Stacey</name></author>
	</entry>
	<entry>
		<id>https://wiki.kolmafia.us/index.php?title=Quest_Tracking_Preferences&amp;diff=8255</id>
		<title>Quest Tracking Preferences</title>
		<link rel="alternate" type="text/html" href="https://wiki.kolmafia.us/index.php?title=Quest_Tracking_Preferences&amp;diff=8255"/>
		<updated>2020-07-30T05:33:37Z</updated>

		<summary type="html">&lt;p&gt;Malibu Stacey: /* questM16Temple */ add info on steps.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{TOCright}}&lt;br /&gt;
KoLMafia internally tracks progress for a number of quests. These are stored as preferences in settings\[charactername]_prefs.&lt;br /&gt;
&lt;br /&gt;
==Council Quests==&lt;br /&gt;
===questL02Larva===&lt;br /&gt;
questL02Larva tracks the player&#039;s progress in the {{kolwiki|Spooky_Forest_Quest|Spooky Forest quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received from the Council&lt;br /&gt;
*step1: mosquito larva acquired&lt;br /&gt;
*finished: mosquito larva returned to the Council&lt;br /&gt;
&lt;br /&gt;
===questL03Rat===&lt;br /&gt;
questL03Rat tracks the player&#039;s progress in the {{kolwiki|Typical_Tavern_Quest|Typical Tavern quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received from the Council&lt;br /&gt;
*step1: spoke to Bart Ender in the Typical Tavern&lt;br /&gt;
*step2: turned off the Rat Faucet&lt;br /&gt;
*finished: told Bart about the Faucet&lt;br /&gt;
&lt;br /&gt;
===questL04Bat===&lt;br /&gt;
questL04Bat tracks the player&#039;s progress in the {{kolwiki|Boss_Bat_Quest|Boss Bat quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received from the Council&lt;br /&gt;
*step1-step3: demolished 1-3 walls in the Bat Hole&lt;br /&gt;
*step4: Boss Bat defeated&lt;br /&gt;
*finished: returned to the Council to report success&lt;br /&gt;
&lt;br /&gt;
===questL05Goblin===&lt;br /&gt;
questL05Goblin tracks the player&#039;s progress in the {{kolwiki|The_King_of_Cobb&#039;s_Knob_Quest|The King of Cobb&#039;s Knob quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received from the Council&lt;br /&gt;
*step1: Cobb&#039;s Knob map decrypted&lt;br /&gt;
*finished: Knob Goblin King defeated&lt;br /&gt;
&lt;br /&gt;
===questL06Friar===&lt;br /&gt;
&lt;br /&gt;
questL06Friar tracks the player&#039;s progress in the {{kolwiki|Deep_Fat_Friars&#039;_Gate_Quest|Friars&#039; quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received from the Council&lt;br /&gt;
*step1: details received from the Friars&lt;br /&gt;
*step2: box of birthday candles, dodecagram &amp;amp; eldritch butterknife acquired.&lt;br /&gt;
*finished: cleansed the taint&lt;br /&gt;
&lt;br /&gt;
===questL07Cyrptic===&lt;br /&gt;
questL07Cyrptic tracks the player&#039;s progress in the {{kolwiki|Undefile_the_Cyrpt_Quest|Undefile the Cyrpt quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received from the Council&lt;br /&gt;
*finished: Bonerdagon defeated&lt;br /&gt;
&lt;br /&gt;
====Evilness====&lt;br /&gt;
When evilness in each zone is 25 or less the zone boss will be the next encounter.&lt;br /&gt;
When total evilness is 0 and all 4 bosses are defeated, the Haert of the Cyrpt will be accessible.&lt;br /&gt;
* cyrptAlcoveEvilness tracks current evilness in the Alcove&lt;br /&gt;
* cyrptCrannyEvilness tracks current evilness in the Cranny&lt;br /&gt;
* cyrptNicheEvilness tracks current evilness in the Niche&lt;br /&gt;
* cyrptNookEvilness tracks current evilness in the Nook&lt;br /&gt;
* cyrptTotalEvilness tracks the sum of evilness in the Cyrpt&lt;br /&gt;
&lt;br /&gt;
===questL08Trapper===&lt;br /&gt;
&lt;br /&gt;
questL08Trapper tracks the player&#039;s progress in the {{kolwiki|Mt._McLargeHuge_Quest|Mt. McLargeHuge Quest}}.&lt;br /&gt;
&lt;br /&gt;
* unstarted: quest not yet received from the Council&lt;br /&gt;
* started: quest received from the Council&lt;br /&gt;
* step1: cheese and ore requested by the Trapper&lt;br /&gt;
* step2: cheese and ore returned to the Trapper&lt;br /&gt;
* step3: discovered the stairs up to the Mist-Shrouded Peak (via either route)&lt;br /&gt;
* step4: fought at least one yeti&lt;br /&gt;
* step5: defeated the monster at the top of the Peak&lt;br /&gt;
* finished: returned the fur to the Trapper (quest complete)&lt;br /&gt;
&lt;br /&gt;
===questL09Topping===&lt;br /&gt;
questL08Trapper tracks the player&#039;s progress in the {{kolwiki|Orc_Chasm_Quest|Orc Chasm Quest}}.&lt;br /&gt;
&lt;br /&gt;
* unstarted: quest not yet received from the Council&lt;br /&gt;
* started: quest received from the Council&lt;br /&gt;
* step1: bridge built&lt;br /&gt;
* step2: like, totally got the deets from the Highland Lord&lt;br /&gt;
* step3: lit all three signal fires&lt;br /&gt;
* finished: quest complete&lt;br /&gt;
&lt;br /&gt;
====booPeakProgress====&lt;br /&gt;
booPeakProgress tracks the hauntedness level of {{kolwiki|A-boo Peak}}. A value of 18, for instance, indicates that A-boo Peak is 18% haunted.&lt;br /&gt;
&lt;br /&gt;
Possible values: 0 - 100&lt;br /&gt;
&lt;br /&gt;
====chasmBridgeProgress====&lt;br /&gt;
chasmBridgeProgress tracks the player&#039;s progress in building a bridge across the {{kolwiki|Orc Chasm}}. A value of 10, for instance, indicates that the bridge is 10 planks long.&lt;br /&gt;
&lt;br /&gt;
Possible values: 0 - 30&lt;br /&gt;
&lt;br /&gt;
====oilPeakProgress====&lt;br /&gt;
oilPeakProgress tracks the remaining pressure at {{kolwiki|Oil Peak}}. It decreases as the player reduces the pressure in the zone.&lt;br /&gt;
&lt;br /&gt;
Possible values: 0.00 - 310.66&lt;br /&gt;
* 310.66: Pressure not yet reduced&lt;br /&gt;
* 0.00: Subquest completed&lt;br /&gt;
&lt;br /&gt;
====twinPeakProgress====&lt;br /&gt;
twinPeakProgress is a nibble bitmask with least significant bit set for the first choice and the most significant for the fourth. You can parse this with bitwise operators. Here&#039;s some code that demonstrates how to use it.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight&amp;gt;&lt;br /&gt;
void comma(buffer b, string s) {&lt;br /&gt;
	if(length(b) &amp;gt; 0)&lt;br /&gt;
		b.append(&amp;quot;, &amp;quot;);&lt;br /&gt;
	b.append(s);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
boolean mysterious(int progress, int c) { &lt;br /&gt;
	return (progress &amp;amp; (1 &amp;lt;&amp;lt; c)) == 0;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
string twinPeak() {&lt;br /&gt;
	int p = get_property(&amp;quot;twinPeakProgress&amp;quot;).to_int();&lt;br /&gt;
	buffer need;&lt;br /&gt;
	if(mysterious(p, 0)) need.comma(&amp;quot;4 Stench Resistance&amp;quot;);&lt;br /&gt;
	if(mysterious(p, 1)) need.comma(&amp;quot;+50% Item Drop&amp;quot;);&lt;br /&gt;
	if(mysterious(p, 2)) need.comma(&amp;quot;Jar of Oil&amp;quot;);&lt;br /&gt;
	// Only check for final if first three complete&lt;br /&gt;
	if(length(need) == 0) {&lt;br /&gt;
		if(mysterious(p, 3))&lt;br /&gt;
			return &amp;quot;Need +40% Initiative&amp;quot;;&lt;br /&gt;
		return &amp;quot;Twin Peak Completed&amp;quot;;&lt;br /&gt;
	}&lt;br /&gt;
	return &amp;quot;Need &amp;quot; + need;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====booPeakLit====&lt;br /&gt;
booPeakLit is a boolean which tracks if you have lit the fire at A-boo Peak or not&lt;br /&gt;
&lt;br /&gt;
====oilPeakLit====&lt;br /&gt;
oilPeakLit is a boolean which tracks if you have lit the fire at Oil Peak or not&lt;br /&gt;
&lt;br /&gt;
(note, twinPeakLit would be obsolete as it would simply track twinPeakProgress == 15)&lt;br /&gt;
&lt;br /&gt;
===questL10Garbage===&lt;br /&gt;
&lt;br /&gt;
questL10Garbage tracks the player&#039;s progress in {{kolwiki|Giant_Trash_Quest|the Giant Trash Quest}}.&lt;br /&gt;
&lt;br /&gt;
* unstarted: quest not yet received from the Council&lt;br /&gt;
* started: quest received from the Council&lt;br /&gt;
* step2: giant beanstalk grown&lt;br /&gt;
* step3 - step6: four Immateria acquired&lt;br /&gt;
* step7: S.O.C.K. acquired ({{kolwiki|The_Castle_in_the_Clouds_in_the_Sky_(Basement)|Castle Basement}} open)&lt;br /&gt;
* step8: {{kolwiki|The_Castle_in_the_Clouds_in_the_Sky_(Basement)|Castle Ground Floor}} open&lt;br /&gt;
* step9: {{kolwiki|The_Castle_in_the_Clouds_in_the_Sky_(Basement)|Castle Top Floor}} open&lt;br /&gt;
* step10: chore wheel turned&lt;br /&gt;
* finished: returned to the Council&lt;br /&gt;
&lt;br /&gt;
===questL11MacGuffin===&lt;br /&gt;
questL11MacGuffin tracks the player&#039;s progress in the {{kolwiki|Quest_for_the_Holy_MacGuffin|Holy MacGuffin quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: quest received from the Council&lt;br /&gt;
*step1: Black Market located (blackForestProgress == 5)&lt;br /&gt;
*step2: retrieved your father&#039;s MacGuffin diary&lt;br /&gt;
*finished: returned the MacGuffin to the Council&lt;br /&gt;
&lt;br /&gt;
====questL11Black====&lt;br /&gt;
questL11Black tracks the player&#039;s progress in the {{kolwiki|Quest_for_the_Holy_MacGuffin|Black Market portion of the Holy MacGuffin quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started:  quest received from the Council&lt;br /&gt;
*step1: spent at least one turn in the Black Forest&lt;br /&gt;
*step2: Black Market found&lt;br /&gt;
*step3: forged identification documents purchased&lt;br /&gt;
*finished: MacGuffin diary acquired&lt;br /&gt;
&lt;br /&gt;
=====blackForestProgress=====&lt;br /&gt;
blackForestProgress tracks the player&#039;s progress in [http://kolmafia.us/showthread.php?15995 discovering the Black Market].&lt;br /&gt;
&lt;br /&gt;
*0: no progress in exploring the Forest&lt;br /&gt;
*1: blackberry bushes located&lt;br /&gt;
*2: black cottage located&lt;br /&gt;
*3: black mineshaft located&lt;br /&gt;
*4: black church located&lt;br /&gt;
*5: black market located&lt;br /&gt;
&lt;br /&gt;
====questL11Manor====&lt;br /&gt;
questL11Manor tracks the player&#039;s progress in the {{kolwiki|Quest_for_the_Holy_MacGuffin#Spookyraven_quest_.28In_a_Manor_of_Spooking|Spookyraven Manor portion of the Holy Macguffin quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received, by reading your father&#039;s MacGuffin diary&lt;br /&gt;
*step1: Spookyraven Manor Cellar opened&lt;br /&gt;
*step2: recipe: mortar-dissolving solution read&lt;br /&gt;
*step3: Suspicious Masonry demolished&lt;br /&gt;
*finished: Lord Spookyraven defeated&lt;br /&gt;
&lt;br /&gt;
=====spookyravenRecipeUsed=====&lt;br /&gt;
spookyravenRecipeUsed tracks whether and how the player has read recipe: mortar-dissolving solution&lt;br /&gt;
&lt;br /&gt;
*none: recipe not yet read&lt;br /&gt;
*with_glasses: recipe read with Lord Spookyraven&#039;s spectacles&lt;br /&gt;
*no_glasses: recipe read without the spectacles&lt;br /&gt;
&lt;br /&gt;
====questL11Desert====&lt;br /&gt;
Explore the Arid, Extra-Dry Desert to find the pyramid mentioned in your father&#039;s journal.&lt;br /&gt;
&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: quest started by reading your father&#039;s MacGuffin diary&lt;br /&gt;
*finished: discovered the Small Pyramid&lt;br /&gt;
&lt;br /&gt;
=====desertExploration=====&lt;br /&gt;
*0: haven&#039;t yet started exploring the Desert&lt;br /&gt;
*1-99: Desert exploration in progress&lt;br /&gt;
*100: Desert fully explored&lt;br /&gt;
&lt;br /&gt;
====questL11Pyramid====&lt;br /&gt;
questL11Pyramid tracks the player&#039;s progress in the {{kolwiki|Quest_for_the_Holy_MacGuffin#A_Small_Pyramid|Pyramid portion of the Holy Macguffin quest}}.&lt;br /&gt;
&lt;br /&gt;
* unstarted: Ancient Buried Pyramid not yet discovered&lt;br /&gt;
* started: Ancient Buried Pyramid discovered&lt;br /&gt;
* step1: Middle Chamber opened&lt;br /&gt;
* step2: The Lower Chambers opened&lt;br /&gt;
* step3: Control Room opened&lt;br /&gt;
* finished: MacGuffin retrieved (quest complete)&lt;br /&gt;
&lt;br /&gt;
=====gnasirProgress=====&lt;br /&gt;
gnasirProgress is a nibble bitmask with one bit for each possible way you can advance {{kolwiki|Quest_for_the_Holy_MacGuffin|Gnasir&#039;s quest}}. You can parse this with bitwise operators. Here&#039;s some code that demonstrates how to use it.&lt;br /&gt;
&amp;lt;syntaxhighlight&amp;gt;&lt;br /&gt;
int gnasirProgress = get_property(&amp;quot;gnasirProgress&amp;quot;).to_int();&lt;br /&gt;
buffer gnasir;&lt;br /&gt;
if((gnasirProgress &amp;amp; 1) == 0)&lt;br /&gt;
	print(&amp;quot;Gnasir wants a stone rose&amp;quot;);&lt;br /&gt;
if((gnasirProgress &amp;amp; 2) == 0)&lt;br /&gt;
	print(&amp;quot;Gnasir wants a can of black paint&amp;quot;);&lt;br /&gt;
if((gnasirProgress &amp;amp; 4) == 0)&lt;br /&gt;
	print(&amp;quot;Gnasir wants a killing jar&amp;quot;);&lt;br /&gt;
if((gnasirProgress &amp;amp; 8) == 0)&lt;br /&gt;
	print(&amp;quot;Gnasir wants a 15 worm-riding manual page&amp;quot;);&lt;br /&gt;
if((gnasirProgress &amp;amp; 16) == 0)&lt;br /&gt;
	print(&amp;quot;You need to use a drum machine to ride the worm&amp;quot;);&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====questL11Ron====&lt;br /&gt;
Ron Copperhead&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: quest received, by reading your father&#039;s MacGuffin diary&lt;br /&gt;
*step1: received the intro adventure at A Mob of Zeppelin Protestors&lt;br /&gt;
*step2: cleared all 80 protestors and opened access to The Red Zeppelin&lt;br /&gt;
*step3: received the intro adventure at The Red Zeppelin&lt;br /&gt;
*step4: Found Ron &amp;quot;The Weasel&amp;quot; Copperhead&lt;br /&gt;
*finished: defeated Ron &amp;quot;The Weasel&amp;quot; Copperhead and received the Copperhead Charm (rampant)&lt;br /&gt;
&lt;br /&gt;
=====zeppelinProtestors=====&lt;br /&gt;
Tracks protesters removed&lt;br /&gt;
&lt;br /&gt;
====questL11Shen====&lt;br /&gt;
Shen Copperhead&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received from the Council&lt;br /&gt;
*started: quest received, by reading your father&#039;s MacGuffin diary&lt;br /&gt;
*step1: spoke to Shen Copperhead in the Copperhead club and received first item request (and poisoning)&lt;br /&gt;
*step2: acquired first item&lt;br /&gt;
*step3: returned first item, received second item request (and poisoning)&lt;br /&gt;
*step4: acquired second item&lt;br /&gt;
*step5: returned second item, received third item request (and poisoning)&lt;br /&gt;
*step6: acquired third item&lt;br /&gt;
*step7: returned third item&lt;br /&gt;
*finished: received the Copperhead Charm&lt;br /&gt;
&lt;br /&gt;
====questL11Palindome====&lt;br /&gt;
questL11Palindome tracks the player&#039;s progress in the {{kolwiki|Quest_for_the_Holy_MacGuffin#The_Palindome|Palindome portion of the Never Odd or Even quest}}.&lt;br /&gt;
&lt;br /&gt;
* unstarted: quest not yet received from the Council&lt;br /&gt;
* started: have the Talisman o&#039; Namsilat&lt;br /&gt;
* step1: arranged the photos in Dr. Awkward&#039;s office&lt;br /&gt;
* step2: read 2 Love Me, Vol. 2&lt;br /&gt;
* step3: met Mr. Alarm in his office (received the wet stunt nut stew quest)&lt;br /&gt;
* step4: cooked wet stunt nut stew&lt;br /&gt;
* step5: returned the stew to Mr. Alarm&lt;br /&gt;
* finished: defeated Dr. Awkward&lt;br /&gt;
&lt;br /&gt;
====questL11Worship====&lt;br /&gt;
questL11Worship tracks progress through the {{kolwiki|Quest_for_the_Holy_MacGuffin#Hidden_Temple_quest_.28Gotta_Worship_Them_All.29|Hidden Temple portion of the Quest for the Holy MacGuffin}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received, by reading your father&#039;s MacGuffin diary&lt;br /&gt;
*step1: (Hidden Temple opened?)&lt;br /&gt;
*step2: correct button pressed in the Temple&lt;br /&gt;
*step3: Hidden City uncovered&lt;br /&gt;
*step4: four stone triangles acquired&lt;br /&gt;
*finished: ancient amulet acquired from the Protector Spectre&lt;br /&gt;
&lt;br /&gt;
=====questL11Business=====&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: Hidden Office Building opened&lt;br /&gt;
*finished: crackling stone sphere acquired&lt;br /&gt;
&lt;br /&gt;
======hiddenOfficeProgress======&lt;br /&gt;
hiddenOfficeProgress tracks progress through the {{kolwiki|Hidden Office Building}} during the Quest for the Holy MacGuffin.&lt;br /&gt;
&lt;br /&gt;
Possible values: 0, 1, 6 - 8&lt;br /&gt;
* 0: Haven&#039;t opened the Hidden Office Building&lt;br /&gt;
* 1: Hidden Office Building is open for adventuring&lt;br /&gt;
* 6: Encountered the Protector Spirit&lt;br /&gt;
* 7: Found the stone sphere&lt;br /&gt;
* 8: Placed the stone sphere in the relevant overgrown shrine&lt;br /&gt;
&lt;br /&gt;
=====questL11Curses=====&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: Hidden Apartment Building opened&lt;br /&gt;
*finished: moss-covered stone sphere acquired&lt;br /&gt;
&lt;br /&gt;
======hiddenApartmentProgress======&lt;br /&gt;
hiddenApartmentProgress tracks progress through the {{kolwiki|Hidden Apartment Building}} during the Quest for the Holy MacGuffin.&lt;br /&gt;
&lt;br /&gt;
Possible values: 0, 1, 6 - 8&lt;br /&gt;
* 0: Haven&#039;t opened the Hidden Apartment Building&lt;br /&gt;
* 1: Hidden Apartment Building is open for adventuring&lt;br /&gt;
* 6: Encountered the Protector Spirit&lt;br /&gt;
* 7: Found the stone sphere&lt;br /&gt;
* 8: Placed the stone sphere in the relevant overgrown shrine&lt;br /&gt;
&lt;br /&gt;
=====questL11Doctor=====&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: Hidden Hospital opened&lt;br /&gt;
*finished: dripping stone sphere acquired&lt;br /&gt;
&lt;br /&gt;
======hiddenHospitalProgress======&lt;br /&gt;
hiddenHospitalProgress tracks progress through the {{kolwiki|Hidden Hospital}} during the Quest for the Holy MacGuffin.&lt;br /&gt;
&lt;br /&gt;
Possible values: 0 - 8&lt;br /&gt;
* 0: Haven&#039;t opened the Hidden Hospital&lt;br /&gt;
* 1: Hidden Hospital is open for adventuring, but haven&#039;t bowled.&lt;br /&gt;
* 6: Encountered the Protector Spirit&lt;br /&gt;
* 7: Found the stone sphere&lt;br /&gt;
* 8: Placed the stone sphere in the relevant overgrown shrine&lt;br /&gt;
&lt;br /&gt;
=====questL11Spare=====&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: Hidden Bowling Alley opened&lt;br /&gt;
*finished: scorched stone sphere acquired&lt;br /&gt;
&lt;br /&gt;
======hiddenBowlingAlleyProgress======&lt;br /&gt;
hiddenBowlingAlleyProgress tracks progress through the {{kolwiki|Hidden Bowling Alley}} during the Quest for the Holy MacGuffin.&lt;br /&gt;
&lt;br /&gt;
* 0: Haven&#039;t opened the Hidden Bowling Alley&lt;br /&gt;
* 1: Hidden Bowling Alley is open for adventuring&lt;br /&gt;
* 2-5: Number of times bowled is 1 less than hiddenBowlingAlleyProgress &lt;br /&gt;
* 6: Encountered the Protector Spirit&lt;br /&gt;
* 7: Found the stone sphere&lt;br /&gt;
* 8: Placed the stone sphere in the relevant overgrown shrine&lt;br /&gt;
&lt;br /&gt;
=====hiddenTavernUnlock=====&lt;br /&gt;
hiddenTavernUnlock tracks whether or not you have unlocked the {{kolwiki|Hidden Tavern}} during the Quest for the Holy MacGuffin.&lt;br /&gt;
&lt;br /&gt;
* When the value is equal to your number of ascensions, the Tavern is unlocked&lt;br /&gt;
* When the value is any other number, the Tavern is locked&lt;br /&gt;
&lt;br /&gt;
===questL12War===&lt;br /&gt;
questL12War tracks progress during the {{kolwiki|Mysterious Island Quest}}.&lt;br /&gt;
&lt;br /&gt;
* unstarted: quest not yet received from the Council&lt;br /&gt;
* started: quest received&lt;br /&gt;
* step1: War started&lt;br /&gt;
* finished: War ended; boss defeated (quest complete)&lt;br /&gt;
&lt;br /&gt;
====warProgress====&lt;br /&gt;
Possible values for the progress of the {{kolwiki|Mysterious Island Quest|Isle War}}:&lt;br /&gt;
*unstarted: We can still visit the small version of the Mysterious Island&lt;br /&gt;
*started: The war is in progress&lt;br /&gt;
*finished: The final boss or bosses were defeated&lt;br /&gt;
&lt;br /&gt;
====fratboysDefeated====&lt;br /&gt;
counts how many frat warriors have been killed on the battlefield (starts at 0).&lt;br /&gt;
&lt;br /&gt;
====hippiesDefeated====&lt;br /&gt;
counts how many war hippies have been killed on the battlefield (starts at 0).&lt;br /&gt;
&lt;br /&gt;
====sideDefeated====&lt;br /&gt;
Which side of the {{kolwiki|Mysterious Island Quest|Isle War}} was defeated during the Level 12 quest. &lt;br /&gt;
&lt;br /&gt;
Possible values:&lt;br /&gt;
*neither&lt;br /&gt;
*hippies&lt;br /&gt;
*fratboys&lt;br /&gt;
*both&lt;br /&gt;
&lt;br /&gt;
====sidequestArenaCompleted====&lt;br /&gt;
Tracks the status of {{kolwiki|The Mysterious Island Arena}} sidequest&lt;br /&gt;
&lt;br /&gt;
Possible values:&lt;br /&gt;
*none&lt;br /&gt;
*fratboy&lt;br /&gt;
*hippy&lt;br /&gt;
&lt;br /&gt;
====sidequestFarmCompleted====&lt;br /&gt;
Tracks the status of {{kolwiki|McMillicancuddy&#039;s Farm}} sidequest&lt;br /&gt;
&lt;br /&gt;
Possible values:&lt;br /&gt;
*none&lt;br /&gt;
*fratboy&lt;br /&gt;
*hippy&lt;br /&gt;
&lt;br /&gt;
====sidequestJunkyardCompleted====&lt;br /&gt;
Tracks the status of {{kolwiki|The Junkyard}} sidequest&lt;br /&gt;
&lt;br /&gt;
Possible values:&lt;br /&gt;
*none&lt;br /&gt;
*fratboy&lt;br /&gt;
*hippy&lt;br /&gt;
&lt;br /&gt;
====sidequestLighthouseCompleted====&lt;br /&gt;
Tracks the status of {{kolwiki|The Lighthouse}} sidequest&lt;br /&gt;
&lt;br /&gt;
Possible values:&lt;br /&gt;
*none&lt;br /&gt;
*fratboy&lt;br /&gt;
*hippy&lt;br /&gt;
&lt;br /&gt;
====sidequestNunsCompleted====&lt;br /&gt;
Tracks the status of {{kolwiki|Our Lady of Perpetual Indecision}} sidequest&lt;br /&gt;
&lt;br /&gt;
Possible values:&lt;br /&gt;
*none&lt;br /&gt;
*fratboy&lt;br /&gt;
*hippy&lt;br /&gt;
&lt;br /&gt;
====sidequestOrchardCompleted====&lt;br /&gt;
Tracks the status of {{kolwiki|The Organic Orchard}} sidequest&lt;br /&gt;
&lt;br /&gt;
Possible values:&lt;br /&gt;
*none&lt;br /&gt;
*fratboy&lt;br /&gt;
*hippy&lt;br /&gt;
&lt;br /&gt;
===questL12HippyFrat===&lt;br /&gt;
questL12War tracks progress during the {{kolwiki|Mysterious Island Quest}} in the {{kolwiki|Kingdom of Exploathing}} path&lt;br /&gt;
&lt;br /&gt;
* unstarted: quest not yet received from the Council&lt;br /&gt;
* started: quest received&lt;br /&gt;
* step1: War started&lt;br /&gt;
* finished: War ended; boss defeated (quest complete)&lt;br /&gt;
&lt;br /&gt;
===questL13Final===&lt;br /&gt;
Progress for the {{kolwiki|Naughty Sorceress Quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received from the Council&lt;br /&gt;
*started: quest received; Registration Desk open (???)&lt;br /&gt;
*step1: spent at least one turn fighting competitors&lt;br /&gt;
*step2: competitors defeated&lt;br /&gt;
*step3: sash acquired&lt;br /&gt;
*step4: met Frank&lt;br /&gt;
*step5: Hedge Maze cleared&lt;br /&gt;
*step6: Tower Door locks unlocked&lt;br /&gt;
*step7: wall of skin defeated&lt;br /&gt;
*step8: wall of meat defeated&lt;br /&gt;
*step9: wall of bones defeated&lt;br /&gt;
*step10: antique mirror handled&lt;br /&gt;
*step11: shadow class defeated&lt;br /&gt;
*step12: Naughty Sorceress defeated&lt;br /&gt;
*step13: Council informed&lt;br /&gt;
*finished: prism smashed; King Ralph freed; Astral Gash accessible&lt;br /&gt;
&lt;br /&gt;
===questL13Warehouse===&lt;br /&gt;
the final quest if you ascend as {{kolwiki|Actually Ed the Undying}} where you adventure in {{kolwiki|The Secret Council Warehouse}}.&lt;br /&gt;
*unstarted&lt;br /&gt;
*started&lt;br /&gt;
*finished&lt;br /&gt;
Current progress in the warehouse is tracked in warehouseProgress.&lt;br /&gt;
&lt;br /&gt;
==Guild Quests==&lt;br /&gt;
===questG01Meatcar===&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questG02Whitecastle===&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questG03Ego===&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questG04Nemesis===&lt;br /&gt;
questG04Nemesis tracks the player&#039;s progress in the {{kolwiki|Me and My Nemesis|Nemesis quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received from the guild&lt;br /&gt;
*step1: Tomb of the Unknown [Your Class] Here encountered at The Unquiet Garves&lt;br /&gt;
*step2: Defeated the Unknown [Your Class]&lt;br /&gt;
*step3: Post combat choice encountered after defeating the Unknown [Your Class]&lt;br /&gt;
*step4: Epic Weapon acquired&lt;br /&gt;
*step5: &amp;quot;fun&amp;quot; house opened&lt;br /&gt;
*step6: Defeated The Clownlord Beelzebozo&lt;br /&gt;
*step7: Guild instructs you to make your Legendary Epic Weapon&lt;br /&gt;
*step8: Meatsmithed your Legendary Epic Weapon&lt;br /&gt;
*step9: Returned to Guild with Legendary Epic Weapon&lt;br /&gt;
*step10: Talked to Guild and opened the Dark Cave&lt;br /&gt;
*step11: Encountered the Dark Cave entrance at least once&lt;br /&gt;
*step12: Passed the Dark Cave entrance&lt;br /&gt;
*step13: ?&lt;br /&gt;
*step14: 6 fizzing spore pods acquired&lt;br /&gt;
*step15: Impassable rubble cleared and ready for final (?) showdown&lt;br /&gt;
*step16: Defeated Nemesis (1st battle, drops Legendary Regalia Hat)&lt;br /&gt;
*step17: Returned to Guild with Legendary Regalia Hat&lt;br /&gt;
*step18: ?&lt;br /&gt;
*step19: Defeated 1st assassin - menacing thug (wanderer)&lt;br /&gt;
*step20: ?&lt;br /&gt;
*step21: Defeated 2nd assassin - Mob Penguin hitman (wanderer)&lt;br /&gt;
*step22: ?&lt;br /&gt;
*step23: Defeated 3rd assassin - class specific (wanderer)&lt;br /&gt;
*step24: ?&lt;br /&gt;
*step25: Defeated 4th assassin - class specific (wanderer) &lt;br /&gt;
*step26: Spoke to Guild after defeating 4th assassin/acquiring secret tropical island volcano lair map&lt;br /&gt;
*step27: Defeated Nemesis (2nd battle, drops Legendary Regalia Pants)&lt;br /&gt;
*step28: Started fight with Nemesis after Volcano maze (3rd battle)&lt;br /&gt;
*step29: Defeated 1st form of Nemesis (3rd battle)&lt;br /&gt;
*finished: Defeated 2nd form of Nemesis (3rd battle, drops Legendary Regalia Accessory)&lt;br /&gt;
&lt;br /&gt;
===questG05Dark===&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questG06Delivery===&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
==Miscellaneous Quests==&lt;br /&gt;
===questM01Untinker===&lt;br /&gt;
Returning the screwdriver to the Untinker.&lt;br /&gt;
* unstarted&lt;br /&gt;
* step1: collected the rusty screwdriver&lt;br /&gt;
* finished: screwdriver returned&lt;br /&gt;
&lt;br /&gt;
===questM02Artist===&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questM03Bugbear===&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questM04Galaktic===&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questM05Toot===&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questM06Gourd===&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questM07Hammer===&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questM08Baker===&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questM09Rocks===&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questM10Azazel===&lt;br /&gt;
questM10Azazel tracks the player&#039;s progress in the {{kolwiki|Azazel,_Ma_Belle|Azazel, Ma Belle quest}}.&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: received the quest, from Azazel or the stranger in Moaning Panda Square&lt;br /&gt;
*finished: returned Azazel&#039;s talismans to him&lt;br /&gt;
&lt;br /&gt;
===questM11Postal===&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questM12Pirate===&lt;br /&gt;
questM12Pirate tracks the player&#039;s progress in the {{kolwiki|Cap&#039;m Caronch Quest}}.&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: Cap&#039;m Caronch&#039;s Map found&lt;br /&gt;
*step1: acquired Cap&#039;m Caronch&#039;s nasty booty from the booty crab&lt;br /&gt;
*step2: received the Orcish Frat House blueprints&lt;br /&gt;
*step3: retrieved Cap&#039;m Caronch&#039;s dentures from the Frat House&lt;br /&gt;
*step4: returned the dentures to the Cap&#039;m and accepted the beer pong challenge&lt;br /&gt;
*step5: won a game of beer pong&lt;br /&gt;
*step6: acquired pirate fledges&lt;br /&gt;
*finished: unlocked Belowdecks&lt;br /&gt;
&lt;br /&gt;
===questM13Escape===&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questM14Bounty===&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questM15Lol===&lt;br /&gt;
questM15Lol tracks the player&#039;s progress in {{kolwiki|A Quest, LOL}}. (No, but seriously.)&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questM16Temple===&lt;br /&gt;
The Hidden Legend of the Temple (&amp;quot;Dakota&amp;quot; Fanning)&lt;br /&gt;
* unstarted: quest not yet received&lt;br /&gt;
* started: Spoke to &amp;quot;Dakota&amp;quot; Fanning and accepted the quest.&lt;br /&gt;
* finished: Collected all 3 required items and spoke to &amp;quot;Dakota&amp;quot; Fanning again to unlock the Hidden Temple.&lt;br /&gt;
&lt;br /&gt;
===questM17Babies===&lt;br /&gt;
Lady Spookyraven&#039;s Babies&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questM18Swamp===&lt;br /&gt;
Marty and His Swamp Problems&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questM19Hippy===&lt;br /&gt;
Give a Hippy a Boat...&lt;br /&gt;
* unstarted: quest not yet received&lt;br /&gt;
* started: Spoke to That Hippy and accepted quest.&lt;br /&gt;
* step1: Acquired Worse Homes and Gardens.&lt;br /&gt;
* step2: Read Worse Homes and Gardens (why?)&lt;br /&gt;
* step3: Crafted the Junk Junk.&lt;br /&gt;
* finished: Spoke to the Hippy with the Junk Junk in inventory.&lt;br /&gt;
&lt;br /&gt;
===questM20Necklace===&lt;br /&gt;
questM20Necklace tracks the player&#039;s progress in {{kolwiki|Spookyraven_Manor_Quest#Lady_Spookyraven.27s_Necklace_.28First_Floor.29|retrieving Lady Spookyraven&#039;s necklace}}.&lt;br /&gt;
&lt;br /&gt;
* unstarted: quest not yet received&lt;br /&gt;
* started: quest received from the telegram&lt;br /&gt;
* step1: billiards room key found&lt;br /&gt;
* step2: Pool Cue acquired&lt;br /&gt;
* step3: library key found&lt;br /&gt;
* step4: necklace found&lt;br /&gt;
* finished: necklace returned to Lady Spookyraven (quest complete)&lt;br /&gt;
&lt;br /&gt;
===questM21Dance===&lt;br /&gt;
questM21Dance tracks the player&#039;s progress in the Second Floor portion of the {{kolwiki|Lady_spookyraven&#039;s_dance|Spookyraven Manor quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: quest received, from Lady Spookyraven&#039;s ghostly telegram&lt;br /&gt;
*step1: spoken to Lady Spookyraven on the Second Floor&lt;br /&gt;
*step2: acquired Lady Spookyraven&#039;s dancing things&lt;br /&gt;
*step3: returned Lady Spookyraven&#039;s dancing things to her&lt;br /&gt;
*finished: danced with Lady Spookyraven in the Ballroom&lt;br /&gt;
&lt;br /&gt;
===questM22Shirt===&lt;br /&gt;
The Shirt Off His Lack of Back&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questM23Meatsmith===&lt;br /&gt;
Helping Make Ends Meat&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* step1 - Got a {{kolwiki|check to the Meatsmith}}.&lt;br /&gt;
* finished - Returned {{kolwiki|check to the Meatsmith}} to the Meatsmith.&lt;br /&gt;
&lt;br /&gt;
===questM24Doc===&lt;br /&gt;
What&#039;s Up, Doc?&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* step1 - Collected the Herbs and need to return them to Doc Galaktik&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questM25Armorer===&lt;br /&gt;
Lending a Hand (and a Foot)&lt;br /&gt;
* unstarted&lt;br /&gt;
* started - accepted the quest from the Armorer and Leggerer&lt;br /&gt;
* step1 - &lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questM26Oracle===&lt;br /&gt;
The Oracle quest (The Source Path)&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
==Sea Quests==&lt;br /&gt;
===questS01OldGuy===&lt;br /&gt;
=finished&lt;br /&gt;
===questS02Monkee===&lt;br /&gt;
=unstarted&lt;br /&gt;
&lt;br /&gt;
When Mom is rescued the Quest is completed &lt;br /&gt;
&lt;br /&gt;
=finished&lt;br /&gt;
&lt;br /&gt;
====merkinQuestPath====&lt;br /&gt;
merkinQuestPath indicates which path the player has chosen in the {{kolwiki|Mer-Kin Deepcity}}, during the {{kolwiki|Sea Monkees Quest}}.&lt;br /&gt;
&lt;br /&gt;
Possible values:&lt;br /&gt;
* none: Player has not yet chosen a path&lt;br /&gt;
* gladiator: Player will fight Yog-Urt, Elder Goddess of Hatred&lt;br /&gt;
* scholar: Player will fight Shub-Jigguwatt, Elder God of Violence&lt;br /&gt;
* done: Player has completed the Sea Monkees Quest&lt;br /&gt;
&lt;br /&gt;
====skateParkStatus====&lt;br /&gt;
skateParkStatus tracks the player&#039;s progress in the {{kolwiki|war for the Skate Park}}.&lt;br /&gt;
&lt;br /&gt;
*war: the war is ongoing&lt;br /&gt;
*ice: the roller skates have been chased out&lt;br /&gt;
*roller: the ice skates have been chased out&lt;br /&gt;
*peace: both sides have been chased out&lt;br /&gt;
&lt;br /&gt;
==Quests Granted by Items==&lt;br /&gt;
===questI01Scapegoat===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questI02Beat===&lt;br /&gt;
=unstarted&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Quests Granted by Familiars==&lt;br /&gt;
===questF01Primordial===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questF02Hyboria===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questF03Future===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questF04Elves===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questF05Clancy===&lt;br /&gt;
=unstarted&lt;br /&gt;
&lt;br /&gt;
==Bug Bear Invasion Properties==&lt;br /&gt;
&lt;br /&gt;
===mothershipProgress===&lt;br /&gt;
mothershipProgress tracks progress of level completion in the {{kolwiki|Bugbear Mothership}}. It goes from 0 to 3 as that level is cleared.&lt;br /&gt;
&lt;br /&gt;
Possible values: 0-3&lt;br /&gt;
&lt;br /&gt;
===statusEngineering===&lt;br /&gt;
===statusGalley===&lt;br /&gt;
===statusMedbay===&lt;br /&gt;
===statusMorgue===&lt;br /&gt;
===statusNavigation===&lt;br /&gt;
===statusScienceLab===&lt;br /&gt;
===statusSonar===&lt;br /&gt;
===statusSpecialOps===&lt;br /&gt;
===statusWasteProcessing===&lt;br /&gt;
All of these work the same way. &lt;br /&gt;
*0-x (integers): insufficient bodata collected)&lt;br /&gt;
*open: all biodata collected and zone accessible&lt;br /&gt;
* unlocked: biodata collected but zone not yet accessible&lt;br /&gt;
* cleared: zone has been cleared&lt;br /&gt;
&lt;br /&gt;
==Quests from the Elemental Planes==&lt;br /&gt;
===Spring Break Beach===&lt;br /&gt;
The Elemental Plane of Sleaze&lt;br /&gt;
=====questESlMushStash=====&lt;br /&gt;
Jimmy&#039;s Quest to collect receipts from the Fun-Guy Mansion.&lt;br /&gt;
=====questESlAudit=====&lt;br /&gt;
Taco Dan&#039;s Quest to collect receipts from the Fun-Guy Mansion.&lt;br /&gt;
=====questESlBacteria=====&lt;br /&gt;
Broden&#039;s Quest to collect bacteria from the Fun-Guy Mansion.&lt;br /&gt;
=====questESlCheeseburger=====&lt;br /&gt;
Jimmy&#039;s Quest to collect ingredients from the Sloppy Seconds Diner.&lt;br /&gt;
=====questESlSprinkles=====&lt;br /&gt;
Taco Dan&#039;s Quest to collect ingredients from the Sloppy Seconds Diner.&lt;br /&gt;
=====questESlCocktail=====&lt;br /&gt;
Broden&#039;s Quest to collect sprinkles from the Sloppy Seconds Diner.&lt;br /&gt;
=====questESlSalt=====&lt;br /&gt;
Jimmy&#039;s Quest to collect salt from the Sunken Yacht.&lt;br /&gt;
=====questESlFish=====&lt;br /&gt;
Taco Dan&#039;s Quest to collect fish meat from the Sunken Yacht.&lt;br /&gt;
=====questESlDebt=====&lt;br /&gt;
Broden&#039;s Quest to collect broupons from the Sunken Yacht.&lt;br /&gt;
&lt;br /&gt;
===Conspiracy Island===&lt;br /&gt;
The Elemental Plane of Spooky&lt;br /&gt;
=====questESpOutOfOrder=====&lt;br /&gt;
Deep Dark Jungle - Out of Order&lt;br /&gt;
=====questESpJunglePun=====&lt;br /&gt;
Deep Dark Jungle - Pungle in the Jungle&lt;br /&gt;
=====questESpSmokes=====&lt;br /&gt;
Deep Dark Jungle - Everyone&#039;s Running Out of Smokes&lt;br /&gt;
=====questESpClipper=====&lt;br /&gt;
Mansion of Dr. Weirdeaux - The Big Clipper&lt;br /&gt;
=====questESpSerum=====&lt;br /&gt;
Mansion of Dr. Weirdeaux - Serum Sortie&lt;br /&gt;
=====questESpEVE=====&lt;br /&gt;
Secret Government Laboratory - Choking on the Rind&lt;br /&gt;
=====questESpFakeMedium=====&lt;br /&gt;
Secret Government Laboratory - Fake Medium at Large&lt;br /&gt;
=====questESpGore=====&lt;br /&gt;
Secret Government Laboratory - Gore Tipper&lt;br /&gt;
&lt;br /&gt;
{{PropertyNav}}&lt;/div&gt;</summary>
		<author><name>Malibu Stacey</name></author>
	</entry>
	<entry>
		<id>https://wiki.kolmafia.us/index.php?title=Quest_Tracking_Preferences&amp;diff=8254</id>
		<title>Quest Tracking Preferences</title>
		<link rel="alternate" type="text/html" href="https://wiki.kolmafia.us/index.php?title=Quest_Tracking_Preferences&amp;diff=8254"/>
		<updated>2020-07-30T05:31:31Z</updated>

		<summary type="html">&lt;p&gt;Malibu Stacey: /* questM19Hippy */ add step 2 info now that I actually figured out how to trigger it.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{TOCright}}&lt;br /&gt;
KoLMafia internally tracks progress for a number of quests. These are stored as preferences in settings\[charactername]_prefs.&lt;br /&gt;
&lt;br /&gt;
==Council Quests==&lt;br /&gt;
===questL02Larva===&lt;br /&gt;
questL02Larva tracks the player&#039;s progress in the {{kolwiki|Spooky_Forest_Quest|Spooky Forest quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received from the Council&lt;br /&gt;
*step1: mosquito larva acquired&lt;br /&gt;
*finished: mosquito larva returned to the Council&lt;br /&gt;
&lt;br /&gt;
===questL03Rat===&lt;br /&gt;
questL03Rat tracks the player&#039;s progress in the {{kolwiki|Typical_Tavern_Quest|Typical Tavern quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received from the Council&lt;br /&gt;
*step1: spoke to Bart Ender in the Typical Tavern&lt;br /&gt;
*step2: turned off the Rat Faucet&lt;br /&gt;
*finished: told Bart about the Faucet&lt;br /&gt;
&lt;br /&gt;
===questL04Bat===&lt;br /&gt;
questL04Bat tracks the player&#039;s progress in the {{kolwiki|Boss_Bat_Quest|Boss Bat quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received from the Council&lt;br /&gt;
*step1-step3: demolished 1-3 walls in the Bat Hole&lt;br /&gt;
*step4: Boss Bat defeated&lt;br /&gt;
*finished: returned to the Council to report success&lt;br /&gt;
&lt;br /&gt;
===questL05Goblin===&lt;br /&gt;
questL05Goblin tracks the player&#039;s progress in the {{kolwiki|The_King_of_Cobb&#039;s_Knob_Quest|The King of Cobb&#039;s Knob quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received from the Council&lt;br /&gt;
*step1: Cobb&#039;s Knob map decrypted&lt;br /&gt;
*finished: Knob Goblin King defeated&lt;br /&gt;
&lt;br /&gt;
===questL06Friar===&lt;br /&gt;
&lt;br /&gt;
questL06Friar tracks the player&#039;s progress in the {{kolwiki|Deep_Fat_Friars&#039;_Gate_Quest|Friars&#039; quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received from the Council&lt;br /&gt;
*step1: details received from the Friars&lt;br /&gt;
*step2: box of birthday candles, dodecagram &amp;amp; eldritch butterknife acquired.&lt;br /&gt;
*finished: cleansed the taint&lt;br /&gt;
&lt;br /&gt;
===questL07Cyrptic===&lt;br /&gt;
questL07Cyrptic tracks the player&#039;s progress in the {{kolwiki|Undefile_the_Cyrpt_Quest|Undefile the Cyrpt quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received from the Council&lt;br /&gt;
*finished: Bonerdagon defeated&lt;br /&gt;
&lt;br /&gt;
====Evilness====&lt;br /&gt;
When evilness in each zone is 25 or less the zone boss will be the next encounter.&lt;br /&gt;
When total evilness is 0 and all 4 bosses are defeated, the Haert of the Cyrpt will be accessible.&lt;br /&gt;
* cyrptAlcoveEvilness tracks current evilness in the Alcove&lt;br /&gt;
* cyrptCrannyEvilness tracks current evilness in the Cranny&lt;br /&gt;
* cyrptNicheEvilness tracks current evilness in the Niche&lt;br /&gt;
* cyrptNookEvilness tracks current evilness in the Nook&lt;br /&gt;
* cyrptTotalEvilness tracks the sum of evilness in the Cyrpt&lt;br /&gt;
&lt;br /&gt;
===questL08Trapper===&lt;br /&gt;
&lt;br /&gt;
questL08Trapper tracks the player&#039;s progress in the {{kolwiki|Mt._McLargeHuge_Quest|Mt. McLargeHuge Quest}}.&lt;br /&gt;
&lt;br /&gt;
* unstarted: quest not yet received from the Council&lt;br /&gt;
* started: quest received from the Council&lt;br /&gt;
* step1: cheese and ore requested by the Trapper&lt;br /&gt;
* step2: cheese and ore returned to the Trapper&lt;br /&gt;
* step3: discovered the stairs up to the Mist-Shrouded Peak (via either route)&lt;br /&gt;
* step4: fought at least one yeti&lt;br /&gt;
* step5: defeated the monster at the top of the Peak&lt;br /&gt;
* finished: returned the fur to the Trapper (quest complete)&lt;br /&gt;
&lt;br /&gt;
===questL09Topping===&lt;br /&gt;
questL08Trapper tracks the player&#039;s progress in the {{kolwiki|Orc_Chasm_Quest|Orc Chasm Quest}}.&lt;br /&gt;
&lt;br /&gt;
* unstarted: quest not yet received from the Council&lt;br /&gt;
* started: quest received from the Council&lt;br /&gt;
* step1: bridge built&lt;br /&gt;
* step2: like, totally got the deets from the Highland Lord&lt;br /&gt;
* step3: lit all three signal fires&lt;br /&gt;
* finished: quest complete&lt;br /&gt;
&lt;br /&gt;
====booPeakProgress====&lt;br /&gt;
booPeakProgress tracks the hauntedness level of {{kolwiki|A-boo Peak}}. A value of 18, for instance, indicates that A-boo Peak is 18% haunted.&lt;br /&gt;
&lt;br /&gt;
Possible values: 0 - 100&lt;br /&gt;
&lt;br /&gt;
====chasmBridgeProgress====&lt;br /&gt;
chasmBridgeProgress tracks the player&#039;s progress in building a bridge across the {{kolwiki|Orc Chasm}}. A value of 10, for instance, indicates that the bridge is 10 planks long.&lt;br /&gt;
&lt;br /&gt;
Possible values: 0 - 30&lt;br /&gt;
&lt;br /&gt;
====oilPeakProgress====&lt;br /&gt;
oilPeakProgress tracks the remaining pressure at {{kolwiki|Oil Peak}}. It decreases as the player reduces the pressure in the zone.&lt;br /&gt;
&lt;br /&gt;
Possible values: 0.00 - 310.66&lt;br /&gt;
* 310.66: Pressure not yet reduced&lt;br /&gt;
* 0.00: Subquest completed&lt;br /&gt;
&lt;br /&gt;
====twinPeakProgress====&lt;br /&gt;
twinPeakProgress is a nibble bitmask with least significant bit set for the first choice and the most significant for the fourth. You can parse this with bitwise operators. Here&#039;s some code that demonstrates how to use it.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight&amp;gt;&lt;br /&gt;
void comma(buffer b, string s) {&lt;br /&gt;
	if(length(b) &amp;gt; 0)&lt;br /&gt;
		b.append(&amp;quot;, &amp;quot;);&lt;br /&gt;
	b.append(s);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
boolean mysterious(int progress, int c) { &lt;br /&gt;
	return (progress &amp;amp; (1 &amp;lt;&amp;lt; c)) == 0;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
string twinPeak() {&lt;br /&gt;
	int p = get_property(&amp;quot;twinPeakProgress&amp;quot;).to_int();&lt;br /&gt;
	buffer need;&lt;br /&gt;
	if(mysterious(p, 0)) need.comma(&amp;quot;4 Stench Resistance&amp;quot;);&lt;br /&gt;
	if(mysterious(p, 1)) need.comma(&amp;quot;+50% Item Drop&amp;quot;);&lt;br /&gt;
	if(mysterious(p, 2)) need.comma(&amp;quot;Jar of Oil&amp;quot;);&lt;br /&gt;
	// Only check for final if first three complete&lt;br /&gt;
	if(length(need) == 0) {&lt;br /&gt;
		if(mysterious(p, 3))&lt;br /&gt;
			return &amp;quot;Need +40% Initiative&amp;quot;;&lt;br /&gt;
		return &amp;quot;Twin Peak Completed&amp;quot;;&lt;br /&gt;
	}&lt;br /&gt;
	return &amp;quot;Need &amp;quot; + need;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====booPeakLit====&lt;br /&gt;
booPeakLit is a boolean which tracks if you have lit the fire at A-boo Peak or not&lt;br /&gt;
&lt;br /&gt;
====oilPeakLit====&lt;br /&gt;
oilPeakLit is a boolean which tracks if you have lit the fire at Oil Peak or not&lt;br /&gt;
&lt;br /&gt;
(note, twinPeakLit would be obsolete as it would simply track twinPeakProgress == 15)&lt;br /&gt;
&lt;br /&gt;
===questL10Garbage===&lt;br /&gt;
&lt;br /&gt;
questL10Garbage tracks the player&#039;s progress in {{kolwiki|Giant_Trash_Quest|the Giant Trash Quest}}.&lt;br /&gt;
&lt;br /&gt;
* unstarted: quest not yet received from the Council&lt;br /&gt;
* started: quest received from the Council&lt;br /&gt;
* step2: giant beanstalk grown&lt;br /&gt;
* step3 - step6: four Immateria acquired&lt;br /&gt;
* step7: S.O.C.K. acquired ({{kolwiki|The_Castle_in_the_Clouds_in_the_Sky_(Basement)|Castle Basement}} open)&lt;br /&gt;
* step8: {{kolwiki|The_Castle_in_the_Clouds_in_the_Sky_(Basement)|Castle Ground Floor}} open&lt;br /&gt;
* step9: {{kolwiki|The_Castle_in_the_Clouds_in_the_Sky_(Basement)|Castle Top Floor}} open&lt;br /&gt;
* step10: chore wheel turned&lt;br /&gt;
* finished: returned to the Council&lt;br /&gt;
&lt;br /&gt;
===questL11MacGuffin===&lt;br /&gt;
questL11MacGuffin tracks the player&#039;s progress in the {{kolwiki|Quest_for_the_Holy_MacGuffin|Holy MacGuffin quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: quest received from the Council&lt;br /&gt;
*step1: Black Market located (blackForestProgress == 5)&lt;br /&gt;
*step2: retrieved your father&#039;s MacGuffin diary&lt;br /&gt;
*finished: returned the MacGuffin to the Council&lt;br /&gt;
&lt;br /&gt;
====questL11Black====&lt;br /&gt;
questL11Black tracks the player&#039;s progress in the {{kolwiki|Quest_for_the_Holy_MacGuffin|Black Market portion of the Holy MacGuffin quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started:  quest received from the Council&lt;br /&gt;
*step1: spent at least one turn in the Black Forest&lt;br /&gt;
*step2: Black Market found&lt;br /&gt;
*step3: forged identification documents purchased&lt;br /&gt;
*finished: MacGuffin diary acquired&lt;br /&gt;
&lt;br /&gt;
=====blackForestProgress=====&lt;br /&gt;
blackForestProgress tracks the player&#039;s progress in [http://kolmafia.us/showthread.php?15995 discovering the Black Market].&lt;br /&gt;
&lt;br /&gt;
*0: no progress in exploring the Forest&lt;br /&gt;
*1: blackberry bushes located&lt;br /&gt;
*2: black cottage located&lt;br /&gt;
*3: black mineshaft located&lt;br /&gt;
*4: black church located&lt;br /&gt;
*5: black market located&lt;br /&gt;
&lt;br /&gt;
====questL11Manor====&lt;br /&gt;
questL11Manor tracks the player&#039;s progress in the {{kolwiki|Quest_for_the_Holy_MacGuffin#Spookyraven_quest_.28In_a_Manor_of_Spooking|Spookyraven Manor portion of the Holy Macguffin quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received, by reading your father&#039;s MacGuffin diary&lt;br /&gt;
*step1: Spookyraven Manor Cellar opened&lt;br /&gt;
*step2: recipe: mortar-dissolving solution read&lt;br /&gt;
*step3: Suspicious Masonry demolished&lt;br /&gt;
*finished: Lord Spookyraven defeated&lt;br /&gt;
&lt;br /&gt;
=====spookyravenRecipeUsed=====&lt;br /&gt;
spookyravenRecipeUsed tracks whether and how the player has read recipe: mortar-dissolving solution&lt;br /&gt;
&lt;br /&gt;
*none: recipe not yet read&lt;br /&gt;
*with_glasses: recipe read with Lord Spookyraven&#039;s spectacles&lt;br /&gt;
*no_glasses: recipe read without the spectacles&lt;br /&gt;
&lt;br /&gt;
====questL11Desert====&lt;br /&gt;
Explore the Arid, Extra-Dry Desert to find the pyramid mentioned in your father&#039;s journal.&lt;br /&gt;
&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: quest started by reading your father&#039;s MacGuffin diary&lt;br /&gt;
*finished: discovered the Small Pyramid&lt;br /&gt;
&lt;br /&gt;
=====desertExploration=====&lt;br /&gt;
*0: haven&#039;t yet started exploring the Desert&lt;br /&gt;
*1-99: Desert exploration in progress&lt;br /&gt;
*100: Desert fully explored&lt;br /&gt;
&lt;br /&gt;
====questL11Pyramid====&lt;br /&gt;
questL11Pyramid tracks the player&#039;s progress in the {{kolwiki|Quest_for_the_Holy_MacGuffin#A_Small_Pyramid|Pyramid portion of the Holy Macguffin quest}}.&lt;br /&gt;
&lt;br /&gt;
* unstarted: Ancient Buried Pyramid not yet discovered&lt;br /&gt;
* started: Ancient Buried Pyramid discovered&lt;br /&gt;
* step1: Middle Chamber opened&lt;br /&gt;
* step2: The Lower Chambers opened&lt;br /&gt;
* step3: Control Room opened&lt;br /&gt;
* finished: MacGuffin retrieved (quest complete)&lt;br /&gt;
&lt;br /&gt;
=====gnasirProgress=====&lt;br /&gt;
gnasirProgress is a nibble bitmask with one bit for each possible way you can advance {{kolwiki|Quest_for_the_Holy_MacGuffin|Gnasir&#039;s quest}}. You can parse this with bitwise operators. Here&#039;s some code that demonstrates how to use it.&lt;br /&gt;
&amp;lt;syntaxhighlight&amp;gt;&lt;br /&gt;
int gnasirProgress = get_property(&amp;quot;gnasirProgress&amp;quot;).to_int();&lt;br /&gt;
buffer gnasir;&lt;br /&gt;
if((gnasirProgress &amp;amp; 1) == 0)&lt;br /&gt;
	print(&amp;quot;Gnasir wants a stone rose&amp;quot;);&lt;br /&gt;
if((gnasirProgress &amp;amp; 2) == 0)&lt;br /&gt;
	print(&amp;quot;Gnasir wants a can of black paint&amp;quot;);&lt;br /&gt;
if((gnasirProgress &amp;amp; 4) == 0)&lt;br /&gt;
	print(&amp;quot;Gnasir wants a killing jar&amp;quot;);&lt;br /&gt;
if((gnasirProgress &amp;amp; 8) == 0)&lt;br /&gt;
	print(&amp;quot;Gnasir wants a 15 worm-riding manual page&amp;quot;);&lt;br /&gt;
if((gnasirProgress &amp;amp; 16) == 0)&lt;br /&gt;
	print(&amp;quot;You need to use a drum machine to ride the worm&amp;quot;);&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====questL11Ron====&lt;br /&gt;
Ron Copperhead&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: quest received, by reading your father&#039;s MacGuffin diary&lt;br /&gt;
*step1: received the intro adventure at A Mob of Zeppelin Protestors&lt;br /&gt;
*step2: cleared all 80 protestors and opened access to The Red Zeppelin&lt;br /&gt;
*step3: received the intro adventure at The Red Zeppelin&lt;br /&gt;
*step4: Found Ron &amp;quot;The Weasel&amp;quot; Copperhead&lt;br /&gt;
*finished: defeated Ron &amp;quot;The Weasel&amp;quot; Copperhead and received the Copperhead Charm (rampant)&lt;br /&gt;
&lt;br /&gt;
=====zeppelinProtestors=====&lt;br /&gt;
Tracks protesters removed&lt;br /&gt;
&lt;br /&gt;
====questL11Shen====&lt;br /&gt;
Shen Copperhead&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received from the Council&lt;br /&gt;
*started: quest received, by reading your father&#039;s MacGuffin diary&lt;br /&gt;
*step1: spoke to Shen Copperhead in the Copperhead club and received first item request (and poisoning)&lt;br /&gt;
*step2: acquired first item&lt;br /&gt;
*step3: returned first item, received second item request (and poisoning)&lt;br /&gt;
*step4: acquired second item&lt;br /&gt;
*step5: returned second item, received third item request (and poisoning)&lt;br /&gt;
*step6: acquired third item&lt;br /&gt;
*step7: returned third item&lt;br /&gt;
*finished: received the Copperhead Charm&lt;br /&gt;
&lt;br /&gt;
====questL11Palindome====&lt;br /&gt;
questL11Palindome tracks the player&#039;s progress in the {{kolwiki|Quest_for_the_Holy_MacGuffin#The_Palindome|Palindome portion of the Never Odd or Even quest}}.&lt;br /&gt;
&lt;br /&gt;
* unstarted: quest not yet received from the Council&lt;br /&gt;
* started: have the Talisman o&#039; Namsilat&lt;br /&gt;
* step1: arranged the photos in Dr. Awkward&#039;s office&lt;br /&gt;
* step2: read 2 Love Me, Vol. 2&lt;br /&gt;
* step3: met Mr. Alarm in his office (received the wet stunt nut stew quest)&lt;br /&gt;
* step4: cooked wet stunt nut stew&lt;br /&gt;
* step5: returned the stew to Mr. Alarm&lt;br /&gt;
* finished: defeated Dr. Awkward&lt;br /&gt;
&lt;br /&gt;
====questL11Worship====&lt;br /&gt;
questL11Worship tracks progress through the {{kolwiki|Quest_for_the_Holy_MacGuffin#Hidden_Temple_quest_.28Gotta_Worship_Them_All.29|Hidden Temple portion of the Quest for the Holy MacGuffin}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received, by reading your father&#039;s MacGuffin diary&lt;br /&gt;
*step1: (Hidden Temple opened?)&lt;br /&gt;
*step2: correct button pressed in the Temple&lt;br /&gt;
*step3: Hidden City uncovered&lt;br /&gt;
*step4: four stone triangles acquired&lt;br /&gt;
*finished: ancient amulet acquired from the Protector Spectre&lt;br /&gt;
&lt;br /&gt;
=====questL11Business=====&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: Hidden Office Building opened&lt;br /&gt;
*finished: crackling stone sphere acquired&lt;br /&gt;
&lt;br /&gt;
======hiddenOfficeProgress======&lt;br /&gt;
hiddenOfficeProgress tracks progress through the {{kolwiki|Hidden Office Building}} during the Quest for the Holy MacGuffin.&lt;br /&gt;
&lt;br /&gt;
Possible values: 0, 1, 6 - 8&lt;br /&gt;
* 0: Haven&#039;t opened the Hidden Office Building&lt;br /&gt;
* 1: Hidden Office Building is open for adventuring&lt;br /&gt;
* 6: Encountered the Protector Spirit&lt;br /&gt;
* 7: Found the stone sphere&lt;br /&gt;
* 8: Placed the stone sphere in the relevant overgrown shrine&lt;br /&gt;
&lt;br /&gt;
=====questL11Curses=====&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: Hidden Apartment Building opened&lt;br /&gt;
*finished: moss-covered stone sphere acquired&lt;br /&gt;
&lt;br /&gt;
======hiddenApartmentProgress======&lt;br /&gt;
hiddenApartmentProgress tracks progress through the {{kolwiki|Hidden Apartment Building}} during the Quest for the Holy MacGuffin.&lt;br /&gt;
&lt;br /&gt;
Possible values: 0, 1, 6 - 8&lt;br /&gt;
* 0: Haven&#039;t opened the Hidden Apartment Building&lt;br /&gt;
* 1: Hidden Apartment Building is open for adventuring&lt;br /&gt;
* 6: Encountered the Protector Spirit&lt;br /&gt;
* 7: Found the stone sphere&lt;br /&gt;
* 8: Placed the stone sphere in the relevant overgrown shrine&lt;br /&gt;
&lt;br /&gt;
=====questL11Doctor=====&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: Hidden Hospital opened&lt;br /&gt;
*finished: dripping stone sphere acquired&lt;br /&gt;
&lt;br /&gt;
======hiddenHospitalProgress======&lt;br /&gt;
hiddenHospitalProgress tracks progress through the {{kolwiki|Hidden Hospital}} during the Quest for the Holy MacGuffin.&lt;br /&gt;
&lt;br /&gt;
Possible values: 0 - 8&lt;br /&gt;
* 0: Haven&#039;t opened the Hidden Hospital&lt;br /&gt;
* 1: Hidden Hospital is open for adventuring, but haven&#039;t bowled.&lt;br /&gt;
* 6: Encountered the Protector Spirit&lt;br /&gt;
* 7: Found the stone sphere&lt;br /&gt;
* 8: Placed the stone sphere in the relevant overgrown shrine&lt;br /&gt;
&lt;br /&gt;
=====questL11Spare=====&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: Hidden Bowling Alley opened&lt;br /&gt;
*finished: scorched stone sphere acquired&lt;br /&gt;
&lt;br /&gt;
======hiddenBowlingAlleyProgress======&lt;br /&gt;
hiddenBowlingAlleyProgress tracks progress through the {{kolwiki|Hidden Bowling Alley}} during the Quest for the Holy MacGuffin.&lt;br /&gt;
&lt;br /&gt;
* 0: Haven&#039;t opened the Hidden Bowling Alley&lt;br /&gt;
* 1: Hidden Bowling Alley is open for adventuring&lt;br /&gt;
* 2-5: Number of times bowled is 1 less than hiddenBowlingAlleyProgress &lt;br /&gt;
* 6: Encountered the Protector Spirit&lt;br /&gt;
* 7: Found the stone sphere&lt;br /&gt;
* 8: Placed the stone sphere in the relevant overgrown shrine&lt;br /&gt;
&lt;br /&gt;
=====hiddenTavernUnlock=====&lt;br /&gt;
hiddenTavernUnlock tracks whether or not you have unlocked the {{kolwiki|Hidden Tavern}} during the Quest for the Holy MacGuffin.&lt;br /&gt;
&lt;br /&gt;
* When the value is equal to your number of ascensions, the Tavern is unlocked&lt;br /&gt;
* When the value is any other number, the Tavern is locked&lt;br /&gt;
&lt;br /&gt;
===questL12War===&lt;br /&gt;
questL12War tracks progress during the {{kolwiki|Mysterious Island Quest}}.&lt;br /&gt;
&lt;br /&gt;
* unstarted: quest not yet received from the Council&lt;br /&gt;
* started: quest received&lt;br /&gt;
* step1: War started&lt;br /&gt;
* finished: War ended; boss defeated (quest complete)&lt;br /&gt;
&lt;br /&gt;
====warProgress====&lt;br /&gt;
Possible values for the progress of the {{kolwiki|Mysterious Island Quest|Isle War}}:&lt;br /&gt;
*unstarted: We can still visit the small version of the Mysterious Island&lt;br /&gt;
*started: The war is in progress&lt;br /&gt;
*finished: The final boss or bosses were defeated&lt;br /&gt;
&lt;br /&gt;
====fratboysDefeated====&lt;br /&gt;
counts how many frat warriors have been killed on the battlefield (starts at 0).&lt;br /&gt;
&lt;br /&gt;
====hippiesDefeated====&lt;br /&gt;
counts how many war hippies have been killed on the battlefield (starts at 0).&lt;br /&gt;
&lt;br /&gt;
====sideDefeated====&lt;br /&gt;
Which side of the {{kolwiki|Mysterious Island Quest|Isle War}} was defeated during the Level 12 quest. &lt;br /&gt;
&lt;br /&gt;
Possible values:&lt;br /&gt;
*neither&lt;br /&gt;
*hippies&lt;br /&gt;
*fratboys&lt;br /&gt;
*both&lt;br /&gt;
&lt;br /&gt;
====sidequestArenaCompleted====&lt;br /&gt;
Tracks the status of {{kolwiki|The Mysterious Island Arena}} sidequest&lt;br /&gt;
&lt;br /&gt;
Possible values:&lt;br /&gt;
*none&lt;br /&gt;
*fratboy&lt;br /&gt;
*hippy&lt;br /&gt;
&lt;br /&gt;
====sidequestFarmCompleted====&lt;br /&gt;
Tracks the status of {{kolwiki|McMillicancuddy&#039;s Farm}} sidequest&lt;br /&gt;
&lt;br /&gt;
Possible values:&lt;br /&gt;
*none&lt;br /&gt;
*fratboy&lt;br /&gt;
*hippy&lt;br /&gt;
&lt;br /&gt;
====sidequestJunkyardCompleted====&lt;br /&gt;
Tracks the status of {{kolwiki|The Junkyard}} sidequest&lt;br /&gt;
&lt;br /&gt;
Possible values:&lt;br /&gt;
*none&lt;br /&gt;
*fratboy&lt;br /&gt;
*hippy&lt;br /&gt;
&lt;br /&gt;
====sidequestLighthouseCompleted====&lt;br /&gt;
Tracks the status of {{kolwiki|The Lighthouse}} sidequest&lt;br /&gt;
&lt;br /&gt;
Possible values:&lt;br /&gt;
*none&lt;br /&gt;
*fratboy&lt;br /&gt;
*hippy&lt;br /&gt;
&lt;br /&gt;
====sidequestNunsCompleted====&lt;br /&gt;
Tracks the status of {{kolwiki|Our Lady of Perpetual Indecision}} sidequest&lt;br /&gt;
&lt;br /&gt;
Possible values:&lt;br /&gt;
*none&lt;br /&gt;
*fratboy&lt;br /&gt;
*hippy&lt;br /&gt;
&lt;br /&gt;
====sidequestOrchardCompleted====&lt;br /&gt;
Tracks the status of {{kolwiki|The Organic Orchard}} sidequest&lt;br /&gt;
&lt;br /&gt;
Possible values:&lt;br /&gt;
*none&lt;br /&gt;
*fratboy&lt;br /&gt;
*hippy&lt;br /&gt;
&lt;br /&gt;
===questL12HippyFrat===&lt;br /&gt;
questL12War tracks progress during the {{kolwiki|Mysterious Island Quest}} in the {{kolwiki|Kingdom of Exploathing}} path&lt;br /&gt;
&lt;br /&gt;
* unstarted: quest not yet received from the Council&lt;br /&gt;
* started: quest received&lt;br /&gt;
* step1: War started&lt;br /&gt;
* finished: War ended; boss defeated (quest complete)&lt;br /&gt;
&lt;br /&gt;
===questL13Final===&lt;br /&gt;
Progress for the {{kolwiki|Naughty Sorceress Quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received from the Council&lt;br /&gt;
*started: quest received; Registration Desk open (???)&lt;br /&gt;
*step1: spent at least one turn fighting competitors&lt;br /&gt;
*step2: competitors defeated&lt;br /&gt;
*step3: sash acquired&lt;br /&gt;
*step4: met Frank&lt;br /&gt;
*step5: Hedge Maze cleared&lt;br /&gt;
*step6: Tower Door locks unlocked&lt;br /&gt;
*step7: wall of skin defeated&lt;br /&gt;
*step8: wall of meat defeated&lt;br /&gt;
*step9: wall of bones defeated&lt;br /&gt;
*step10: antique mirror handled&lt;br /&gt;
*step11: shadow class defeated&lt;br /&gt;
*step12: Naughty Sorceress defeated&lt;br /&gt;
*step13: Council informed&lt;br /&gt;
*finished: prism smashed; King Ralph freed; Astral Gash accessible&lt;br /&gt;
&lt;br /&gt;
===questL13Warehouse===&lt;br /&gt;
the final quest if you ascend as {{kolwiki|Actually Ed the Undying}} where you adventure in {{kolwiki|The Secret Council Warehouse}}.&lt;br /&gt;
*unstarted&lt;br /&gt;
*started&lt;br /&gt;
*finished&lt;br /&gt;
Current progress in the warehouse is tracked in warehouseProgress.&lt;br /&gt;
&lt;br /&gt;
==Guild Quests==&lt;br /&gt;
===questG01Meatcar===&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questG02Whitecastle===&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questG03Ego===&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questG04Nemesis===&lt;br /&gt;
questG04Nemesis tracks the player&#039;s progress in the {{kolwiki|Me and My Nemesis|Nemesis quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received from the guild&lt;br /&gt;
*step1: Tomb of the Unknown [Your Class] Here encountered at The Unquiet Garves&lt;br /&gt;
*step2: Defeated the Unknown [Your Class]&lt;br /&gt;
*step3: Post combat choice encountered after defeating the Unknown [Your Class]&lt;br /&gt;
*step4: Epic Weapon acquired&lt;br /&gt;
*step5: &amp;quot;fun&amp;quot; house opened&lt;br /&gt;
*step6: Defeated The Clownlord Beelzebozo&lt;br /&gt;
*step7: Guild instructs you to make your Legendary Epic Weapon&lt;br /&gt;
*step8: Meatsmithed your Legendary Epic Weapon&lt;br /&gt;
*step9: Returned to Guild with Legendary Epic Weapon&lt;br /&gt;
*step10: Talked to Guild and opened the Dark Cave&lt;br /&gt;
*step11: Encountered the Dark Cave entrance at least once&lt;br /&gt;
*step12: Passed the Dark Cave entrance&lt;br /&gt;
*step13: ?&lt;br /&gt;
*step14: 6 fizzing spore pods acquired&lt;br /&gt;
*step15: Impassable rubble cleared and ready for final (?) showdown&lt;br /&gt;
*step16: Defeated Nemesis (1st battle, drops Legendary Regalia Hat)&lt;br /&gt;
*step17: Returned to Guild with Legendary Regalia Hat&lt;br /&gt;
*step18: ?&lt;br /&gt;
*step19: Defeated 1st assassin - menacing thug (wanderer)&lt;br /&gt;
*step20: ?&lt;br /&gt;
*step21: Defeated 2nd assassin - Mob Penguin hitman (wanderer)&lt;br /&gt;
*step22: ?&lt;br /&gt;
*step23: Defeated 3rd assassin - class specific (wanderer)&lt;br /&gt;
*step24: ?&lt;br /&gt;
*step25: Defeated 4th assassin - class specific (wanderer) &lt;br /&gt;
*step26: Spoke to Guild after defeating 4th assassin/acquiring secret tropical island volcano lair map&lt;br /&gt;
*step27: Defeated Nemesis (2nd battle, drops Legendary Regalia Pants)&lt;br /&gt;
*step28: Started fight with Nemesis after Volcano maze (3rd battle)&lt;br /&gt;
*step29: Defeated 1st form of Nemesis (3rd battle)&lt;br /&gt;
*finished: Defeated 2nd form of Nemesis (3rd battle, drops Legendary Regalia Accessory)&lt;br /&gt;
&lt;br /&gt;
===questG05Dark===&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questG06Delivery===&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
==Miscellaneous Quests==&lt;br /&gt;
===questM01Untinker===&lt;br /&gt;
Returning the screwdriver to the Untinker.&lt;br /&gt;
* unstarted&lt;br /&gt;
* step1: collected the rusty screwdriver&lt;br /&gt;
* finished: screwdriver returned&lt;br /&gt;
&lt;br /&gt;
===questM02Artist===&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questM03Bugbear===&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questM04Galaktic===&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questM05Toot===&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questM06Gourd===&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questM07Hammer===&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questM08Baker===&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questM09Rocks===&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questM10Azazel===&lt;br /&gt;
questM10Azazel tracks the player&#039;s progress in the {{kolwiki|Azazel,_Ma_Belle|Azazel, Ma Belle quest}}.&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: received the quest, from Azazel or the stranger in Moaning Panda Square&lt;br /&gt;
*finished: returned Azazel&#039;s talismans to him&lt;br /&gt;
&lt;br /&gt;
===questM11Postal===&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questM12Pirate===&lt;br /&gt;
questM12Pirate tracks the player&#039;s progress in the {{kolwiki|Cap&#039;m Caronch Quest}}.&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: Cap&#039;m Caronch&#039;s Map found&lt;br /&gt;
*step1: acquired Cap&#039;m Caronch&#039;s nasty booty from the booty crab&lt;br /&gt;
*step2: received the Orcish Frat House blueprints&lt;br /&gt;
*step3: retrieved Cap&#039;m Caronch&#039;s dentures from the Frat House&lt;br /&gt;
*step4: returned the dentures to the Cap&#039;m and accepted the beer pong challenge&lt;br /&gt;
*step5: won a game of beer pong&lt;br /&gt;
*step6: acquired pirate fledges&lt;br /&gt;
*finished: unlocked Belowdecks&lt;br /&gt;
&lt;br /&gt;
===questM13Escape===&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questM14Bounty===&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questM15Lol===&lt;br /&gt;
questM15Lol tracks the player&#039;s progress in {{kolwiki|A Quest, LOL}}. (No, but seriously.)&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questM16Temple===&lt;br /&gt;
The Hidden Legend of the Temple (&amp;quot;Dakota&amp;quot; Fanning)&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questM17Babies===&lt;br /&gt;
Lady Spookyraven&#039;s Babies&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questM18Swamp===&lt;br /&gt;
Marty and His Swamp Problems&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questM19Hippy===&lt;br /&gt;
Give a Hippy a Boat...&lt;br /&gt;
* unstarted: quest not yet received&lt;br /&gt;
* started: Spoke to That Hippy and accepted quest.&lt;br /&gt;
* step1: Acquired Worse Homes and Gardens.&lt;br /&gt;
* step2: Read Worse Homes and Gardens (why?)&lt;br /&gt;
* step3: Crafted the Junk Junk.&lt;br /&gt;
* finished: Spoke to the Hippy with the Junk Junk in inventory.&lt;br /&gt;
&lt;br /&gt;
===questM20Necklace===&lt;br /&gt;
questM20Necklace tracks the player&#039;s progress in {{kolwiki|Spookyraven_Manor_Quest#Lady_Spookyraven.27s_Necklace_.28First_Floor.29|retrieving Lady Spookyraven&#039;s necklace}}.&lt;br /&gt;
&lt;br /&gt;
* unstarted: quest not yet received&lt;br /&gt;
* started: quest received from the telegram&lt;br /&gt;
* step1: billiards room key found&lt;br /&gt;
* step2: Pool Cue acquired&lt;br /&gt;
* step3: library key found&lt;br /&gt;
* step4: necklace found&lt;br /&gt;
* finished: necklace returned to Lady Spookyraven (quest complete)&lt;br /&gt;
&lt;br /&gt;
===questM21Dance===&lt;br /&gt;
questM21Dance tracks the player&#039;s progress in the Second Floor portion of the {{kolwiki|Lady_spookyraven&#039;s_dance|Spookyraven Manor quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: quest received, from Lady Spookyraven&#039;s ghostly telegram&lt;br /&gt;
*step1: spoken to Lady Spookyraven on the Second Floor&lt;br /&gt;
*step2: acquired Lady Spookyraven&#039;s dancing things&lt;br /&gt;
*step3: returned Lady Spookyraven&#039;s dancing things to her&lt;br /&gt;
*finished: danced with Lady Spookyraven in the Ballroom&lt;br /&gt;
&lt;br /&gt;
===questM22Shirt===&lt;br /&gt;
The Shirt Off His Lack of Back&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questM23Meatsmith===&lt;br /&gt;
Helping Make Ends Meat&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* step1 - Got a {{kolwiki|check to the Meatsmith}}.&lt;br /&gt;
* finished - Returned {{kolwiki|check to the Meatsmith}} to the Meatsmith.&lt;br /&gt;
&lt;br /&gt;
===questM24Doc===&lt;br /&gt;
What&#039;s Up, Doc?&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* step1 - Collected the Herbs and need to return them to Doc Galaktik&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questM25Armorer===&lt;br /&gt;
Lending a Hand (and a Foot)&lt;br /&gt;
* unstarted&lt;br /&gt;
* started - accepted the quest from the Armorer and Leggerer&lt;br /&gt;
* step1 - &lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questM26Oracle===&lt;br /&gt;
The Oracle quest (The Source Path)&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
==Sea Quests==&lt;br /&gt;
===questS01OldGuy===&lt;br /&gt;
=finished&lt;br /&gt;
===questS02Monkee===&lt;br /&gt;
=unstarted&lt;br /&gt;
&lt;br /&gt;
When Mom is rescued the Quest is completed &lt;br /&gt;
&lt;br /&gt;
=finished&lt;br /&gt;
&lt;br /&gt;
====merkinQuestPath====&lt;br /&gt;
merkinQuestPath indicates which path the player has chosen in the {{kolwiki|Mer-Kin Deepcity}}, during the {{kolwiki|Sea Monkees Quest}}.&lt;br /&gt;
&lt;br /&gt;
Possible values:&lt;br /&gt;
* none: Player has not yet chosen a path&lt;br /&gt;
* gladiator: Player will fight Yog-Urt, Elder Goddess of Hatred&lt;br /&gt;
* scholar: Player will fight Shub-Jigguwatt, Elder God of Violence&lt;br /&gt;
* done: Player has completed the Sea Monkees Quest&lt;br /&gt;
&lt;br /&gt;
====skateParkStatus====&lt;br /&gt;
skateParkStatus tracks the player&#039;s progress in the {{kolwiki|war for the Skate Park}}.&lt;br /&gt;
&lt;br /&gt;
*war: the war is ongoing&lt;br /&gt;
*ice: the roller skates have been chased out&lt;br /&gt;
*roller: the ice skates have been chased out&lt;br /&gt;
*peace: both sides have been chased out&lt;br /&gt;
&lt;br /&gt;
==Quests Granted by Items==&lt;br /&gt;
===questI01Scapegoat===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questI02Beat===&lt;br /&gt;
=unstarted&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Quests Granted by Familiars==&lt;br /&gt;
===questF01Primordial===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questF02Hyboria===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questF03Future===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questF04Elves===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questF05Clancy===&lt;br /&gt;
=unstarted&lt;br /&gt;
&lt;br /&gt;
==Bug Bear Invasion Properties==&lt;br /&gt;
&lt;br /&gt;
===mothershipProgress===&lt;br /&gt;
mothershipProgress tracks progress of level completion in the {{kolwiki|Bugbear Mothership}}. It goes from 0 to 3 as that level is cleared.&lt;br /&gt;
&lt;br /&gt;
Possible values: 0-3&lt;br /&gt;
&lt;br /&gt;
===statusEngineering===&lt;br /&gt;
===statusGalley===&lt;br /&gt;
===statusMedbay===&lt;br /&gt;
===statusMorgue===&lt;br /&gt;
===statusNavigation===&lt;br /&gt;
===statusScienceLab===&lt;br /&gt;
===statusSonar===&lt;br /&gt;
===statusSpecialOps===&lt;br /&gt;
===statusWasteProcessing===&lt;br /&gt;
All of these work the same way. &lt;br /&gt;
*0-x (integers): insufficient bodata collected)&lt;br /&gt;
*open: all biodata collected and zone accessible&lt;br /&gt;
* unlocked: biodata collected but zone not yet accessible&lt;br /&gt;
* cleared: zone has been cleared&lt;br /&gt;
&lt;br /&gt;
==Quests from the Elemental Planes==&lt;br /&gt;
===Spring Break Beach===&lt;br /&gt;
The Elemental Plane of Sleaze&lt;br /&gt;
=====questESlMushStash=====&lt;br /&gt;
Jimmy&#039;s Quest to collect receipts from the Fun-Guy Mansion.&lt;br /&gt;
=====questESlAudit=====&lt;br /&gt;
Taco Dan&#039;s Quest to collect receipts from the Fun-Guy Mansion.&lt;br /&gt;
=====questESlBacteria=====&lt;br /&gt;
Broden&#039;s Quest to collect bacteria from the Fun-Guy Mansion.&lt;br /&gt;
=====questESlCheeseburger=====&lt;br /&gt;
Jimmy&#039;s Quest to collect ingredients from the Sloppy Seconds Diner.&lt;br /&gt;
=====questESlSprinkles=====&lt;br /&gt;
Taco Dan&#039;s Quest to collect ingredients from the Sloppy Seconds Diner.&lt;br /&gt;
=====questESlCocktail=====&lt;br /&gt;
Broden&#039;s Quest to collect sprinkles from the Sloppy Seconds Diner.&lt;br /&gt;
=====questESlSalt=====&lt;br /&gt;
Jimmy&#039;s Quest to collect salt from the Sunken Yacht.&lt;br /&gt;
=====questESlFish=====&lt;br /&gt;
Taco Dan&#039;s Quest to collect fish meat from the Sunken Yacht.&lt;br /&gt;
=====questESlDebt=====&lt;br /&gt;
Broden&#039;s Quest to collect broupons from the Sunken Yacht.&lt;br /&gt;
&lt;br /&gt;
===Conspiracy Island===&lt;br /&gt;
The Elemental Plane of Spooky&lt;br /&gt;
=====questESpOutOfOrder=====&lt;br /&gt;
Deep Dark Jungle - Out of Order&lt;br /&gt;
=====questESpJunglePun=====&lt;br /&gt;
Deep Dark Jungle - Pungle in the Jungle&lt;br /&gt;
=====questESpSmokes=====&lt;br /&gt;
Deep Dark Jungle - Everyone&#039;s Running Out of Smokes&lt;br /&gt;
=====questESpClipper=====&lt;br /&gt;
Mansion of Dr. Weirdeaux - The Big Clipper&lt;br /&gt;
=====questESpSerum=====&lt;br /&gt;
Mansion of Dr. Weirdeaux - Serum Sortie&lt;br /&gt;
=====questESpEVE=====&lt;br /&gt;
Secret Government Laboratory - Choking on the Rind&lt;br /&gt;
=====questESpFakeMedium=====&lt;br /&gt;
Secret Government Laboratory - Fake Medium at Large&lt;br /&gt;
=====questESpGore=====&lt;br /&gt;
Secret Government Laboratory - Gore Tipper&lt;br /&gt;
&lt;br /&gt;
{{PropertyNav}}&lt;/div&gt;</summary>
		<author><name>Malibu Stacey</name></author>
	</entry>
	<entry>
		<id>https://wiki.kolmafia.us/index.php?title=Quest_Tracking_Preferences&amp;diff=8253</id>
		<title>Quest Tracking Preferences</title>
		<link rel="alternate" type="text/html" href="https://wiki.kolmafia.us/index.php?title=Quest_Tracking_Preferences&amp;diff=8253"/>
		<updated>2020-06-11T07:14:26Z</updated>

		<summary type="html">&lt;p&gt;Malibu Stacey: add steps for questM19Hippy&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{TOCright}}&lt;br /&gt;
KoLMafia internally tracks progress for a number of quests. These are stored as preferences in settings\[charactername]_prefs.&lt;br /&gt;
&lt;br /&gt;
==Council Quests==&lt;br /&gt;
===questL02Larva===&lt;br /&gt;
questL02Larva tracks the player&#039;s progress in the {{kolwiki|Spooky_Forest_Quest|Spooky Forest quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received from the Council&lt;br /&gt;
*step1: mosquito larva acquired&lt;br /&gt;
*finished: mosquito larva returned to the Council&lt;br /&gt;
&lt;br /&gt;
===questL03Rat===&lt;br /&gt;
questL03Rat tracks the player&#039;s progress in the {{kolwiki|Typical_Tavern_Quest|Typical Tavern quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received from the Council&lt;br /&gt;
*step1: spoke to Bart Ender in the Typical Tavern&lt;br /&gt;
*step2: turned off the Rat Faucet&lt;br /&gt;
*finished: told Bart about the Faucet&lt;br /&gt;
&lt;br /&gt;
===questL04Bat===&lt;br /&gt;
questL04Bat tracks the player&#039;s progress in the {{kolwiki|Boss_Bat_Quest|Boss Bat quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received from the Council&lt;br /&gt;
*step1-step3: demolished 1-3 walls in the Bat Hole&lt;br /&gt;
*step4: Boss Bat defeated&lt;br /&gt;
*finished: returned to the Council to report success&lt;br /&gt;
&lt;br /&gt;
===questL05Goblin===&lt;br /&gt;
questL05Goblin tracks the player&#039;s progress in the {{kolwiki|The_King_of_Cobb&#039;s_Knob_Quest|The King of Cobb&#039;s Knob quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received from the Council&lt;br /&gt;
*step1: Cobb&#039;s Knob map decrypted&lt;br /&gt;
*finished: Knob Goblin King defeated&lt;br /&gt;
&lt;br /&gt;
===questL06Friar===&lt;br /&gt;
&lt;br /&gt;
questL06Friar tracks the player&#039;s progress in the {{kolwiki|Deep_Fat_Friars&#039;_Gate_Quest|Friars&#039; quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received from the Council&lt;br /&gt;
*step1: details received from the Friars&lt;br /&gt;
*step2: box of birthday candles, dodecagram &amp;amp; eldritch butterknife acquired.&lt;br /&gt;
*finished: cleansed the taint&lt;br /&gt;
&lt;br /&gt;
===questL07Cyrptic===&lt;br /&gt;
questL07Cyrptic tracks the player&#039;s progress in the {{kolwiki|Undefile_the_Cyrpt_Quest|Undefile the Cyrpt quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received from the Council&lt;br /&gt;
*finished: Bonerdagon defeated&lt;br /&gt;
&lt;br /&gt;
====Evilness====&lt;br /&gt;
When evilness in each zone is 25 or less the zone boss will be the next encounter.&lt;br /&gt;
When total evilness is 0 and all 4 bosses are defeated, the Haert of the Cyrpt will be accessible.&lt;br /&gt;
* cyrptAlcoveEvilness tracks current evilness in the Alcove&lt;br /&gt;
* cyrptCrannyEvilness tracks current evilness in the Cranny&lt;br /&gt;
* cyrptNicheEvilness tracks current evilness in the Niche&lt;br /&gt;
* cyrptNookEvilness tracks current evilness in the Nook&lt;br /&gt;
* cyrptTotalEvilness tracks the sum of evilness in the Cyrpt&lt;br /&gt;
&lt;br /&gt;
===questL08Trapper===&lt;br /&gt;
&lt;br /&gt;
questL08Trapper tracks the player&#039;s progress in the {{kolwiki|Mt._McLargeHuge_Quest|Mt. McLargeHuge Quest}}.&lt;br /&gt;
&lt;br /&gt;
* unstarted: quest not yet received from the Council&lt;br /&gt;
* started: quest received from the Council&lt;br /&gt;
* step1: cheese and ore requested by the Trapper&lt;br /&gt;
* step2: cheese and ore returned to the Trapper&lt;br /&gt;
* step3: discovered the stairs up to the Mist-Shrouded Peak (via either route)&lt;br /&gt;
* step4: fought at least one yeti&lt;br /&gt;
* step5: defeated the monster at the top of the Peak&lt;br /&gt;
* finished: returned the fur to the Trapper (quest complete)&lt;br /&gt;
&lt;br /&gt;
===questL09Topping===&lt;br /&gt;
questL08Trapper tracks the player&#039;s progress in the {{kolwiki|Orc_Chasm_Quest|Orc Chasm Quest}}.&lt;br /&gt;
&lt;br /&gt;
* unstarted: quest not yet received from the Council&lt;br /&gt;
* started: quest received from the Council&lt;br /&gt;
* step1: bridge built&lt;br /&gt;
* step2: like, totally got the deets from the Highland Lord&lt;br /&gt;
* step3: lit all three signal fires&lt;br /&gt;
* finished: quest complete&lt;br /&gt;
&lt;br /&gt;
====booPeakProgress====&lt;br /&gt;
booPeakProgress tracks the hauntedness level of {{kolwiki|A-boo Peak}}. A value of 18, for instance, indicates that A-boo Peak is 18% haunted.&lt;br /&gt;
&lt;br /&gt;
Possible values: 0 - 100&lt;br /&gt;
&lt;br /&gt;
====chasmBridgeProgress====&lt;br /&gt;
chasmBridgeProgress tracks the player&#039;s progress in building a bridge across the {{kolwiki|Orc Chasm}}. A value of 10, for instance, indicates that the bridge is 10 planks long.&lt;br /&gt;
&lt;br /&gt;
Possible values: 0 - 30&lt;br /&gt;
&lt;br /&gt;
====oilPeakProgress====&lt;br /&gt;
oilPeakProgress tracks the remaining pressure at {{kolwiki|Oil Peak}}. It decreases as the player reduces the pressure in the zone.&lt;br /&gt;
&lt;br /&gt;
Possible values: 0.00 - 310.66&lt;br /&gt;
* 310.66: Pressure not yet reduced&lt;br /&gt;
* 0.00: Subquest completed&lt;br /&gt;
&lt;br /&gt;
====twinPeakProgress====&lt;br /&gt;
twinPeakProgress is a nibble bitmask with least significant bit set for the first choice and the most significant for the fourth. You can parse this with bitwise operators. Here&#039;s some code that demonstrates how to use it.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight&amp;gt;&lt;br /&gt;
void comma(buffer b, string s) {&lt;br /&gt;
	if(length(b) &amp;gt; 0)&lt;br /&gt;
		b.append(&amp;quot;, &amp;quot;);&lt;br /&gt;
	b.append(s);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
boolean mysterious(int progress, int c) { &lt;br /&gt;
	return (progress &amp;amp; (1 &amp;lt;&amp;lt; c)) == 0;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
string twinPeak() {&lt;br /&gt;
	int p = get_property(&amp;quot;twinPeakProgress&amp;quot;).to_int();&lt;br /&gt;
	buffer need;&lt;br /&gt;
	if(mysterious(p, 0)) need.comma(&amp;quot;4 Stench Resistance&amp;quot;);&lt;br /&gt;
	if(mysterious(p, 1)) need.comma(&amp;quot;+50% Item Drop&amp;quot;);&lt;br /&gt;
	if(mysterious(p, 2)) need.comma(&amp;quot;Jar of Oil&amp;quot;);&lt;br /&gt;
	// Only check for final if first three complete&lt;br /&gt;
	if(length(need) == 0) {&lt;br /&gt;
		if(mysterious(p, 3))&lt;br /&gt;
			return &amp;quot;Need +40% Initiative&amp;quot;;&lt;br /&gt;
		return &amp;quot;Twin Peak Completed&amp;quot;;&lt;br /&gt;
	}&lt;br /&gt;
	return &amp;quot;Need &amp;quot; + need;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====booPeakLit====&lt;br /&gt;
booPeakLit is a boolean which tracks if you have lit the fire at A-boo Peak or not&lt;br /&gt;
&lt;br /&gt;
====oilPeakLit====&lt;br /&gt;
oilPeakLit is a boolean which tracks if you have lit the fire at Oil Peak or not&lt;br /&gt;
&lt;br /&gt;
(note, twinPeakLit would be obsolete as it would simply track twinPeakProgress == 15)&lt;br /&gt;
&lt;br /&gt;
===questL10Garbage===&lt;br /&gt;
&lt;br /&gt;
questL10Garbage tracks the player&#039;s progress in {{kolwiki|Giant_Trash_Quest|the Giant Trash Quest}}.&lt;br /&gt;
&lt;br /&gt;
* unstarted: quest not yet received from the Council&lt;br /&gt;
* started: quest received from the Council&lt;br /&gt;
* step2: giant beanstalk grown&lt;br /&gt;
* step3 - step6: four Immateria acquired&lt;br /&gt;
* step7: S.O.C.K. acquired ({{kolwiki|The_Castle_in_the_Clouds_in_the_Sky_(Basement)|Castle Basement}} open)&lt;br /&gt;
* step8: {{kolwiki|The_Castle_in_the_Clouds_in_the_Sky_(Basement)|Castle Ground Floor}} open&lt;br /&gt;
* step9: {{kolwiki|The_Castle_in_the_Clouds_in_the_Sky_(Basement)|Castle Top Floor}} open&lt;br /&gt;
* step10: chore wheel turned&lt;br /&gt;
* finished: returned to the Council&lt;br /&gt;
&lt;br /&gt;
===questL11MacGuffin===&lt;br /&gt;
questL11MacGuffin tracks the player&#039;s progress in the {{kolwiki|Quest_for_the_Holy_MacGuffin|Holy MacGuffin quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: quest received from the Council&lt;br /&gt;
*step1: Black Market located (blackForestProgress == 5)&lt;br /&gt;
*step2: retrieved your father&#039;s MacGuffin diary&lt;br /&gt;
*finished: returned the MacGuffin to the Council&lt;br /&gt;
&lt;br /&gt;
====questL11Black====&lt;br /&gt;
questL11Black tracks the player&#039;s progress in the {{kolwiki|Quest_for_the_Holy_MacGuffin|Black Market portion of the Holy MacGuffin quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started:  quest received from the Council&lt;br /&gt;
*step1: spent at least one turn in the Black Forest&lt;br /&gt;
*step2: Black Market found&lt;br /&gt;
*step3: forged identification documents purchased&lt;br /&gt;
*finished: MacGuffin diary acquired&lt;br /&gt;
&lt;br /&gt;
=====blackForestProgress=====&lt;br /&gt;
blackForestProgress tracks the player&#039;s progress in [http://kolmafia.us/showthread.php?15995 discovering the Black Market].&lt;br /&gt;
&lt;br /&gt;
*0: no progress in exploring the Forest&lt;br /&gt;
*1: blackberry bushes located&lt;br /&gt;
*2: black cottage located&lt;br /&gt;
*3: black mineshaft located&lt;br /&gt;
*4: black church located&lt;br /&gt;
*5: black market located&lt;br /&gt;
&lt;br /&gt;
====questL11Manor====&lt;br /&gt;
questL11Manor tracks the player&#039;s progress in the {{kolwiki|Quest_for_the_Holy_MacGuffin#Spookyraven_quest_.28In_a_Manor_of_Spooking|Spookyraven Manor portion of the Holy Macguffin quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received, by reading your father&#039;s MacGuffin diary&lt;br /&gt;
*step1: Spookyraven Manor Cellar opened&lt;br /&gt;
*step2: recipe: mortar-dissolving solution read&lt;br /&gt;
*step3: Suspicious Masonry demolished&lt;br /&gt;
*finished: Lord Spookyraven defeated&lt;br /&gt;
&lt;br /&gt;
=====spookyravenRecipeUsed=====&lt;br /&gt;
spookyravenRecipeUsed tracks whether and how the player has read recipe: mortar-dissolving solution&lt;br /&gt;
&lt;br /&gt;
*none: recipe not yet read&lt;br /&gt;
*with_glasses: recipe read with Lord Spookyraven&#039;s spectacles&lt;br /&gt;
*no_glasses: recipe read without the spectacles&lt;br /&gt;
&lt;br /&gt;
====questL11Desert====&lt;br /&gt;
Explore the Arid, Extra-Dry Desert to find the pyramid mentioned in your father&#039;s journal.&lt;br /&gt;
&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: quest started by reading your father&#039;s MacGuffin diary&lt;br /&gt;
*finished: discovered the Small Pyramid&lt;br /&gt;
&lt;br /&gt;
=====desertExploration=====&lt;br /&gt;
*0: haven&#039;t yet started exploring the Desert&lt;br /&gt;
*1-99: Desert exploration in progress&lt;br /&gt;
*100: Desert fully explored&lt;br /&gt;
&lt;br /&gt;
====questL11Pyramid====&lt;br /&gt;
questL11Pyramid tracks the player&#039;s progress in the {{kolwiki|Quest_for_the_Holy_MacGuffin#A_Small_Pyramid|Pyramid portion of the Holy Macguffin quest}}.&lt;br /&gt;
&lt;br /&gt;
* unstarted: Ancient Buried Pyramid not yet discovered&lt;br /&gt;
* started: Ancient Buried Pyramid discovered&lt;br /&gt;
* step1: Middle Chamber opened&lt;br /&gt;
* step2: The Lower Chambers opened&lt;br /&gt;
* step3: Control Room opened&lt;br /&gt;
* finished: MacGuffin retrieved (quest complete)&lt;br /&gt;
&lt;br /&gt;
=====gnasirProgress=====&lt;br /&gt;
gnasirProgress is a nibble bitmask with one bit for each possible way you can advance {{kolwiki|Quest_for_the_Holy_MacGuffin|Gnasir&#039;s quest}}. You can parse this with bitwise operators. Here&#039;s some code that demonstrates how to use it.&lt;br /&gt;
&amp;lt;syntaxhighlight&amp;gt;&lt;br /&gt;
int gnasirProgress = get_property(&amp;quot;gnasirProgress&amp;quot;).to_int();&lt;br /&gt;
buffer gnasir;&lt;br /&gt;
if((gnasirProgress &amp;amp; 1) == 0)&lt;br /&gt;
	print(&amp;quot;Gnasir wants a stone rose&amp;quot;);&lt;br /&gt;
if((gnasirProgress &amp;amp; 2) == 0)&lt;br /&gt;
	print(&amp;quot;Gnasir wants a can of black paint&amp;quot;);&lt;br /&gt;
if((gnasirProgress &amp;amp; 4) == 0)&lt;br /&gt;
	print(&amp;quot;Gnasir wants a killing jar&amp;quot;);&lt;br /&gt;
if((gnasirProgress &amp;amp; 8) == 0)&lt;br /&gt;
	print(&amp;quot;Gnasir wants a 15 worm-riding manual page&amp;quot;);&lt;br /&gt;
if((gnasirProgress &amp;amp; 16) == 0)&lt;br /&gt;
	print(&amp;quot;You need to use a drum machine to ride the worm&amp;quot;);&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====questL11Ron====&lt;br /&gt;
Ron Copperhead&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: quest received, by reading your father&#039;s MacGuffin diary&lt;br /&gt;
*step1: received the intro adventure at A Mob of Zeppelin Protestors&lt;br /&gt;
*step2: cleared all 80 protestors and opened access to The Red Zeppelin&lt;br /&gt;
*step3: received the intro adventure at The Red Zeppelin&lt;br /&gt;
*step4: Found Ron &amp;quot;The Weasel&amp;quot; Copperhead&lt;br /&gt;
*finished: defeated Ron &amp;quot;The Weasel&amp;quot; Copperhead and received the Copperhead Charm (rampant)&lt;br /&gt;
&lt;br /&gt;
=====zeppelinProtestors=====&lt;br /&gt;
Tracks protesters removed&lt;br /&gt;
&lt;br /&gt;
====questL11Shen====&lt;br /&gt;
Shen Copperhead&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received from the Council&lt;br /&gt;
*started: quest received, by reading your father&#039;s MacGuffin diary&lt;br /&gt;
*step1: spoke to Shen Copperhead in the Copperhead club and received first item request (and poisoning)&lt;br /&gt;
*step2: acquired first item&lt;br /&gt;
*step3: returned first item, received second item request (and poisoning)&lt;br /&gt;
*step4: acquired second item&lt;br /&gt;
*step5: returned second item, received third item request (and poisoning)&lt;br /&gt;
*step6: acquired third item&lt;br /&gt;
*step7: returned third item&lt;br /&gt;
*finished: received the Copperhead Charm&lt;br /&gt;
&lt;br /&gt;
====questL11Palindome====&lt;br /&gt;
questL11Palindome tracks the player&#039;s progress in the {{kolwiki|Quest_for_the_Holy_MacGuffin#The_Palindome|Palindome portion of the Never Odd or Even quest}}.&lt;br /&gt;
&lt;br /&gt;
* unstarted: quest not yet received from the Council&lt;br /&gt;
* started: have the Talisman o&#039; Namsilat&lt;br /&gt;
* step1: arranged the photos in Dr. Awkward&#039;s office&lt;br /&gt;
* step2: read 2 Love Me, Vol. 2&lt;br /&gt;
* step3: met Mr. Alarm in his office (received the wet stunt nut stew quest)&lt;br /&gt;
* step4: cooked wet stunt nut stew&lt;br /&gt;
* step5: returned the stew to Mr. Alarm&lt;br /&gt;
* finished: defeated Dr. Awkward&lt;br /&gt;
&lt;br /&gt;
====questL11Worship====&lt;br /&gt;
questL11Worship tracks progress through the {{kolwiki|Quest_for_the_Holy_MacGuffin#Hidden_Temple_quest_.28Gotta_Worship_Them_All.29|Hidden Temple portion of the Quest for the Holy MacGuffin}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received, by reading your father&#039;s MacGuffin diary&lt;br /&gt;
*step1: (Hidden Temple opened?)&lt;br /&gt;
*step2: correct button pressed in the Temple&lt;br /&gt;
*step3: Hidden City uncovered&lt;br /&gt;
*step4: four stone triangles acquired&lt;br /&gt;
*finished: ancient amulet acquired from the Protector Spectre&lt;br /&gt;
&lt;br /&gt;
=====questL11Business=====&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: Hidden Office Building opened&lt;br /&gt;
*finished: crackling stone sphere acquired&lt;br /&gt;
&lt;br /&gt;
======hiddenOfficeProgress======&lt;br /&gt;
hiddenOfficeProgress tracks progress through the {{kolwiki|Hidden Office Building}} during the Quest for the Holy MacGuffin.&lt;br /&gt;
&lt;br /&gt;
Possible values: 0, 1, 6 - 8&lt;br /&gt;
* 0: Haven&#039;t opened the Hidden Office Building&lt;br /&gt;
* 1: Hidden Office Building is open for adventuring&lt;br /&gt;
* 6: Encountered the Protector Spirit&lt;br /&gt;
* 7: Found the stone sphere&lt;br /&gt;
* 8: Placed the stone sphere in the relevant overgrown shrine&lt;br /&gt;
&lt;br /&gt;
=====questL11Curses=====&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: Hidden Apartment Building opened&lt;br /&gt;
*finished: moss-covered stone sphere acquired&lt;br /&gt;
&lt;br /&gt;
======hiddenApartmentProgress======&lt;br /&gt;
hiddenApartmentProgress tracks progress through the {{kolwiki|Hidden Apartment Building}} during the Quest for the Holy MacGuffin.&lt;br /&gt;
&lt;br /&gt;
Possible values: 0, 1, 6 - 8&lt;br /&gt;
* 0: Haven&#039;t opened the Hidden Apartment Building&lt;br /&gt;
* 1: Hidden Apartment Building is open for adventuring&lt;br /&gt;
* 6: Encountered the Protector Spirit&lt;br /&gt;
* 7: Found the stone sphere&lt;br /&gt;
* 8: Placed the stone sphere in the relevant overgrown shrine&lt;br /&gt;
&lt;br /&gt;
=====questL11Doctor=====&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: Hidden Hospital opened&lt;br /&gt;
*finished: dripping stone sphere acquired&lt;br /&gt;
&lt;br /&gt;
======hiddenHospitalProgress======&lt;br /&gt;
hiddenHospitalProgress tracks progress through the {{kolwiki|Hidden Hospital}} during the Quest for the Holy MacGuffin.&lt;br /&gt;
&lt;br /&gt;
Possible values: 0 - 8&lt;br /&gt;
* 0: Haven&#039;t opened the Hidden Hospital&lt;br /&gt;
* 1: Hidden Hospital is open for adventuring, but haven&#039;t bowled.&lt;br /&gt;
* 6: Encountered the Protector Spirit&lt;br /&gt;
* 7: Found the stone sphere&lt;br /&gt;
* 8: Placed the stone sphere in the relevant overgrown shrine&lt;br /&gt;
&lt;br /&gt;
=====questL11Spare=====&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: Hidden Bowling Alley opened&lt;br /&gt;
*finished: scorched stone sphere acquired&lt;br /&gt;
&lt;br /&gt;
======hiddenBowlingAlleyProgress======&lt;br /&gt;
hiddenBowlingAlleyProgress tracks progress through the {{kolwiki|Hidden Bowling Alley}} during the Quest for the Holy MacGuffin.&lt;br /&gt;
&lt;br /&gt;
* 0: Haven&#039;t opened the Hidden Bowling Alley&lt;br /&gt;
* 1: Hidden Bowling Alley is open for adventuring&lt;br /&gt;
* 2-5: Number of times bowled is 1 less than hiddenBowlingAlleyProgress &lt;br /&gt;
* 6: Encountered the Protector Spirit&lt;br /&gt;
* 7: Found the stone sphere&lt;br /&gt;
* 8: Placed the stone sphere in the relevant overgrown shrine&lt;br /&gt;
&lt;br /&gt;
=====hiddenTavernUnlock=====&lt;br /&gt;
hiddenTavernUnlock tracks whether or not you have unlocked the {{kolwiki|Hidden Tavern}} during the Quest for the Holy MacGuffin.&lt;br /&gt;
&lt;br /&gt;
* When the value is equal to your number of ascensions, the Tavern is unlocked&lt;br /&gt;
* When the value is any other number, the Tavern is locked&lt;br /&gt;
&lt;br /&gt;
===questL12War===&lt;br /&gt;
questL12War tracks progress during the {{kolwiki|Mysterious Island Quest}}.&lt;br /&gt;
&lt;br /&gt;
* unstarted: quest not yet received from the Council&lt;br /&gt;
* started: quest received&lt;br /&gt;
* step1: War started&lt;br /&gt;
* finished: War ended; boss defeated (quest complete)&lt;br /&gt;
&lt;br /&gt;
====warProgress====&lt;br /&gt;
Possible values for the progress of the {{kolwiki|Mysterious Island Quest|Isle War}}:&lt;br /&gt;
*unstarted: We can still visit the small version of the Mysterious Island&lt;br /&gt;
*started: The war is in progress&lt;br /&gt;
*finished: The final boss or bosses were defeated&lt;br /&gt;
&lt;br /&gt;
====fratboysDefeated====&lt;br /&gt;
counts how many frat warriors have been killed on the battlefield (starts at 0).&lt;br /&gt;
&lt;br /&gt;
====hippiesDefeated====&lt;br /&gt;
counts how many war hippies have been killed on the battlefield (starts at 0).&lt;br /&gt;
&lt;br /&gt;
====sideDefeated====&lt;br /&gt;
Which side of the {{kolwiki|Mysterious Island Quest|Isle War}} was defeated during the Level 12 quest. &lt;br /&gt;
&lt;br /&gt;
Possible values:&lt;br /&gt;
*neither&lt;br /&gt;
*hippies&lt;br /&gt;
*fratboys&lt;br /&gt;
*both&lt;br /&gt;
&lt;br /&gt;
====sidequestArenaCompleted====&lt;br /&gt;
Tracks the status of {{kolwiki|The Mysterious Island Arena}} sidequest&lt;br /&gt;
&lt;br /&gt;
Possible values:&lt;br /&gt;
*none&lt;br /&gt;
*fratboy&lt;br /&gt;
*hippy&lt;br /&gt;
&lt;br /&gt;
====sidequestFarmCompleted====&lt;br /&gt;
Tracks the status of {{kolwiki|McMillicancuddy&#039;s Farm}} sidequest&lt;br /&gt;
&lt;br /&gt;
Possible values:&lt;br /&gt;
*none&lt;br /&gt;
*fratboy&lt;br /&gt;
*hippy&lt;br /&gt;
&lt;br /&gt;
====sidequestJunkyardCompleted====&lt;br /&gt;
Tracks the status of {{kolwiki|The Junkyard}} sidequest&lt;br /&gt;
&lt;br /&gt;
Possible values:&lt;br /&gt;
*none&lt;br /&gt;
*fratboy&lt;br /&gt;
*hippy&lt;br /&gt;
&lt;br /&gt;
====sidequestLighthouseCompleted====&lt;br /&gt;
Tracks the status of {{kolwiki|The Lighthouse}} sidequest&lt;br /&gt;
&lt;br /&gt;
Possible values:&lt;br /&gt;
*none&lt;br /&gt;
*fratboy&lt;br /&gt;
*hippy&lt;br /&gt;
&lt;br /&gt;
====sidequestNunsCompleted====&lt;br /&gt;
Tracks the status of {{kolwiki|Our Lady of Perpetual Indecision}} sidequest&lt;br /&gt;
&lt;br /&gt;
Possible values:&lt;br /&gt;
*none&lt;br /&gt;
*fratboy&lt;br /&gt;
*hippy&lt;br /&gt;
&lt;br /&gt;
====sidequestOrchardCompleted====&lt;br /&gt;
Tracks the status of {{kolwiki|The Organic Orchard}} sidequest&lt;br /&gt;
&lt;br /&gt;
Possible values:&lt;br /&gt;
*none&lt;br /&gt;
*fratboy&lt;br /&gt;
*hippy&lt;br /&gt;
&lt;br /&gt;
===questL12HippyFrat===&lt;br /&gt;
questL12War tracks progress during the {{kolwiki|Mysterious Island Quest}} in the {{kolwiki|Kingdom of Exploathing}} path&lt;br /&gt;
&lt;br /&gt;
* unstarted: quest not yet received from the Council&lt;br /&gt;
* started: quest received&lt;br /&gt;
* step1: War started&lt;br /&gt;
* finished: War ended; boss defeated (quest complete)&lt;br /&gt;
&lt;br /&gt;
===questL13Final===&lt;br /&gt;
Progress for the {{kolwiki|Naughty Sorceress Quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received from the Council&lt;br /&gt;
*started: quest received; Registration Desk open (???)&lt;br /&gt;
*step1: spent at least one turn fighting competitors&lt;br /&gt;
*step2: competitors defeated&lt;br /&gt;
*step3: sash acquired&lt;br /&gt;
*step4: met Frank&lt;br /&gt;
*step5: Hedge Maze cleared&lt;br /&gt;
*step6: Tower Door locks unlocked&lt;br /&gt;
*step7: wall of skin defeated&lt;br /&gt;
*step8: wall of meat defeated&lt;br /&gt;
*step9: wall of bones defeated&lt;br /&gt;
*step10: antique mirror handled&lt;br /&gt;
*step11: shadow class defeated&lt;br /&gt;
*step12: Naughty Sorceress defeated&lt;br /&gt;
*step13: Council informed&lt;br /&gt;
*finished: prism smashed; King Ralph freed; Astral Gash accessible&lt;br /&gt;
&lt;br /&gt;
===questL13Warehouse===&lt;br /&gt;
the final quest if you ascend as {{kolwiki|Actually Ed the Undying}} where you adventure in {{kolwiki|The Secret Council Warehouse}}.&lt;br /&gt;
*unstarted&lt;br /&gt;
*started&lt;br /&gt;
*finished&lt;br /&gt;
Current progress in the warehouse is tracked in warehouseProgress.&lt;br /&gt;
&lt;br /&gt;
==Guild Quests==&lt;br /&gt;
===questG01Meatcar===&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questG02Whitecastle===&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questG03Ego===&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questG04Nemesis===&lt;br /&gt;
questG04Nemesis tracks the player&#039;s progress in the {{kolwiki|Me and My Nemesis|Nemesis quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received from the guild&lt;br /&gt;
*step1: Tomb of the Unknown [Your Class] Here encountered at The Unquiet Garves&lt;br /&gt;
*step2: Defeated the Unknown [Your Class]&lt;br /&gt;
*step3: Post combat choice encountered after defeating the Unknown [Your Class]&lt;br /&gt;
*step4: Epic Weapon acquired&lt;br /&gt;
*step5: &amp;quot;fun&amp;quot; house opened&lt;br /&gt;
*step6: Defeated The Clownlord Beelzebozo&lt;br /&gt;
*step7: Guild instructs you to make your Legendary Epic Weapon&lt;br /&gt;
*step8: Meatsmithed your Legendary Epic Weapon&lt;br /&gt;
*step9: Returned to Guild with Legendary Epic Weapon&lt;br /&gt;
*step10: Talked to Guild and opened the Dark Cave&lt;br /&gt;
*step11: Encountered the Dark Cave entrance at least once&lt;br /&gt;
*step12: Passed the Dark Cave entrance&lt;br /&gt;
*step13: ?&lt;br /&gt;
*step14: 6 fizzing spore pods acquired&lt;br /&gt;
*step15: Impassable rubble cleared and ready for final (?) showdown&lt;br /&gt;
*step16: Defeated Nemesis (1st battle, drops Legendary Regalia Hat)&lt;br /&gt;
*step17: Returned to Guild with Legendary Regalia Hat&lt;br /&gt;
*step18: ?&lt;br /&gt;
*step19: Defeated 1st assassin - menacing thug (wanderer)&lt;br /&gt;
*step20: ?&lt;br /&gt;
*step21: Defeated 2nd assassin - Mob Penguin hitman (wanderer)&lt;br /&gt;
*step22: ?&lt;br /&gt;
*step23: Defeated 3rd assassin - class specific (wanderer)&lt;br /&gt;
*step24: ?&lt;br /&gt;
*step25: Defeated 4th assassin - class specific (wanderer) &lt;br /&gt;
*step26: Spoke to Guild after defeating 4th assassin/acquiring secret tropical island volcano lair map&lt;br /&gt;
*step27: Defeated Nemesis (2nd battle, drops Legendary Regalia Pants)&lt;br /&gt;
*step28: Started fight with Nemesis after Volcano maze (3rd battle)&lt;br /&gt;
*step29: Defeated 1st form of Nemesis (3rd battle)&lt;br /&gt;
*finished: Defeated 2nd form of Nemesis (3rd battle, drops Legendary Regalia Accessory)&lt;br /&gt;
&lt;br /&gt;
===questG05Dark===&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questG06Delivery===&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
==Miscellaneous Quests==&lt;br /&gt;
===questM01Untinker===&lt;br /&gt;
Returning the screwdriver to the Untinker.&lt;br /&gt;
* unstarted&lt;br /&gt;
* step1: collected the rusty screwdriver&lt;br /&gt;
* finished: screwdriver returned&lt;br /&gt;
&lt;br /&gt;
===questM02Artist===&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questM03Bugbear===&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questM04Galaktic===&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questM05Toot===&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questM06Gourd===&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questM07Hammer===&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questM08Baker===&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questM09Rocks===&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questM10Azazel===&lt;br /&gt;
questM10Azazel tracks the player&#039;s progress in the {{kolwiki|Azazel,_Ma_Belle|Azazel, Ma Belle quest}}.&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: received the quest, from Azazel or the stranger in Moaning Panda Square&lt;br /&gt;
*finished: returned Azazel&#039;s talismans to him&lt;br /&gt;
&lt;br /&gt;
===questM11Postal===&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questM12Pirate===&lt;br /&gt;
questM12Pirate tracks the player&#039;s progress in the {{kolwiki|Cap&#039;m Caronch Quest}}.&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: Cap&#039;m Caronch&#039;s Map found&lt;br /&gt;
*step1: acquired Cap&#039;m Caronch&#039;s nasty booty from the booty crab&lt;br /&gt;
*step2: received the Orcish Frat House blueprints&lt;br /&gt;
*step3: retrieved Cap&#039;m Caronch&#039;s dentures from the Frat House&lt;br /&gt;
*step4: returned the dentures to the Cap&#039;m and accepted the beer pong challenge&lt;br /&gt;
*step5: won a game of beer pong&lt;br /&gt;
*step6: acquired pirate fledges&lt;br /&gt;
*finished: unlocked Belowdecks&lt;br /&gt;
&lt;br /&gt;
===questM13Escape===&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questM14Bounty===&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questM15Lol===&lt;br /&gt;
questM15Lol tracks the player&#039;s progress in {{kolwiki|A Quest, LOL}}. (No, but seriously.)&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questM16Temple===&lt;br /&gt;
The Hidden Legend of the Temple (&amp;quot;Dakota&amp;quot; Fanning)&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questM17Babies===&lt;br /&gt;
Lady Spookyraven&#039;s Babies&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questM18Swamp===&lt;br /&gt;
Marty and His Swamp Problems&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questM19Hippy===&lt;br /&gt;
Give a Hippy a Boat...&lt;br /&gt;
* unstarted: quest not yet received&lt;br /&gt;
* started: Spoke to That Hippy and accepted quest.&lt;br /&gt;
* step1: Acquired Worse Homes and Gardens.&lt;br /&gt;
* step2: ?&lt;br /&gt;
* step3: Crafted the Junk Junk.&lt;br /&gt;
* finished: Spoke to the Hippy with the Junk Junk in inventory.&lt;br /&gt;
&lt;br /&gt;
===questM20Necklace===&lt;br /&gt;
questM20Necklace tracks the player&#039;s progress in {{kolwiki|Spookyraven_Manor_Quest#Lady_Spookyraven.27s_Necklace_.28First_Floor.29|retrieving Lady Spookyraven&#039;s necklace}}.&lt;br /&gt;
&lt;br /&gt;
* unstarted: quest not yet received&lt;br /&gt;
* started: quest received from the telegram&lt;br /&gt;
* step1: billiards room key found&lt;br /&gt;
* step2: Pool Cue acquired&lt;br /&gt;
* step3: library key found&lt;br /&gt;
* step4: necklace found&lt;br /&gt;
* finished: necklace returned to Lady Spookyraven (quest complete)&lt;br /&gt;
&lt;br /&gt;
===questM21Dance===&lt;br /&gt;
questM21Dance tracks the player&#039;s progress in the Second Floor portion of the {{kolwiki|Lady_spookyraven&#039;s_dance|Spookyraven Manor quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: quest received, from Lady Spookyraven&#039;s ghostly telegram&lt;br /&gt;
*step1: spoken to Lady Spookyraven on the Second Floor&lt;br /&gt;
*step2: acquired Lady Spookyraven&#039;s dancing things&lt;br /&gt;
*step3: returned Lady Spookyraven&#039;s dancing things to her&lt;br /&gt;
*finished: danced with Lady Spookyraven in the Ballroom&lt;br /&gt;
&lt;br /&gt;
===questM22Shirt===&lt;br /&gt;
The Shirt Off His Lack of Back&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questM23Meatsmith===&lt;br /&gt;
Helping Make Ends Meat&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* step1 - Got a {{kolwiki|check to the Meatsmith}}.&lt;br /&gt;
* finished - Returned {{kolwiki|check to the Meatsmith}} to the Meatsmith.&lt;br /&gt;
&lt;br /&gt;
===questM24Doc===&lt;br /&gt;
What&#039;s Up, Doc?&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* step1 - Collected the Herbs and need to return them to Doc Galaktik&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questM25Armorer===&lt;br /&gt;
Lending a Hand (and a Foot)&lt;br /&gt;
* unstarted&lt;br /&gt;
* started - accepted the quest from the Armorer and Leggerer&lt;br /&gt;
* step1 - &lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questM26Oracle===&lt;br /&gt;
The Oracle quest (The Source Path)&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
==Sea Quests==&lt;br /&gt;
===questS01OldGuy===&lt;br /&gt;
=finished&lt;br /&gt;
===questS02Monkee===&lt;br /&gt;
=unstarted&lt;br /&gt;
&lt;br /&gt;
When Mom is rescued the Quest is completed &lt;br /&gt;
&lt;br /&gt;
=finished&lt;br /&gt;
&lt;br /&gt;
====merkinQuestPath====&lt;br /&gt;
merkinQuestPath indicates which path the player has chosen in the {{kolwiki|Mer-Kin Deepcity}}, during the {{kolwiki|Sea Monkees Quest}}.&lt;br /&gt;
&lt;br /&gt;
Possible values:&lt;br /&gt;
* none: Player has not yet chosen a path&lt;br /&gt;
* gladiator: Player will fight Yog-Urt, Elder Goddess of Hatred&lt;br /&gt;
* scholar: Player will fight Shub-Jigguwatt, Elder God of Violence&lt;br /&gt;
* done: Player has completed the Sea Monkees Quest&lt;br /&gt;
&lt;br /&gt;
====skateParkStatus====&lt;br /&gt;
skateParkStatus tracks the player&#039;s progress in the {{kolwiki|war for the Skate Park}}.&lt;br /&gt;
&lt;br /&gt;
*war: the war is ongoing&lt;br /&gt;
*ice: the roller skates have been chased out&lt;br /&gt;
*roller: the ice skates have been chased out&lt;br /&gt;
*peace: both sides have been chased out&lt;br /&gt;
&lt;br /&gt;
==Quests Granted by Items==&lt;br /&gt;
===questI01Scapegoat===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questI02Beat===&lt;br /&gt;
=unstarted&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Quests Granted by Familiars==&lt;br /&gt;
===questF01Primordial===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questF02Hyboria===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questF03Future===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questF04Elves===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questF05Clancy===&lt;br /&gt;
=unstarted&lt;br /&gt;
&lt;br /&gt;
==Bug Bear Invasion Properties==&lt;br /&gt;
&lt;br /&gt;
===mothershipProgress===&lt;br /&gt;
mothershipProgress tracks progress of level completion in the {{kolwiki|Bugbear Mothership}}. It goes from 0 to 3 as that level is cleared.&lt;br /&gt;
&lt;br /&gt;
Possible values: 0-3&lt;br /&gt;
&lt;br /&gt;
===statusEngineering===&lt;br /&gt;
===statusGalley===&lt;br /&gt;
===statusMedbay===&lt;br /&gt;
===statusMorgue===&lt;br /&gt;
===statusNavigation===&lt;br /&gt;
===statusScienceLab===&lt;br /&gt;
===statusSonar===&lt;br /&gt;
===statusSpecialOps===&lt;br /&gt;
===statusWasteProcessing===&lt;br /&gt;
All of these work the same way. &lt;br /&gt;
*0-x (integers): insufficient bodata collected)&lt;br /&gt;
*open: all biodata collected and zone accessible&lt;br /&gt;
* unlocked: biodata collected but zone not yet accessible&lt;br /&gt;
* cleared: zone has been cleared&lt;br /&gt;
&lt;br /&gt;
==Quests from the Elemental Planes==&lt;br /&gt;
===Spring Break Beach===&lt;br /&gt;
The Elemental Plane of Sleaze&lt;br /&gt;
=====questESlMushStash=====&lt;br /&gt;
Jimmy&#039;s Quest to collect receipts from the Fun-Guy Mansion.&lt;br /&gt;
=====questESlAudit=====&lt;br /&gt;
Taco Dan&#039;s Quest to collect receipts from the Fun-Guy Mansion.&lt;br /&gt;
=====questESlBacteria=====&lt;br /&gt;
Broden&#039;s Quest to collect bacteria from the Fun-Guy Mansion.&lt;br /&gt;
=====questESlCheeseburger=====&lt;br /&gt;
Jimmy&#039;s Quest to collect ingredients from the Sloppy Seconds Diner.&lt;br /&gt;
=====questESlSprinkles=====&lt;br /&gt;
Taco Dan&#039;s Quest to collect ingredients from the Sloppy Seconds Diner.&lt;br /&gt;
=====questESlCocktail=====&lt;br /&gt;
Broden&#039;s Quest to collect sprinkles from the Sloppy Seconds Diner.&lt;br /&gt;
=====questESlSalt=====&lt;br /&gt;
Jimmy&#039;s Quest to collect salt from the Sunken Yacht.&lt;br /&gt;
=====questESlFish=====&lt;br /&gt;
Taco Dan&#039;s Quest to collect fish meat from the Sunken Yacht.&lt;br /&gt;
=====questESlDebt=====&lt;br /&gt;
Broden&#039;s Quest to collect broupons from the Sunken Yacht.&lt;br /&gt;
&lt;br /&gt;
===Conspiracy Island===&lt;br /&gt;
The Elemental Plane of Spooky&lt;br /&gt;
=====questESpOutOfOrder=====&lt;br /&gt;
Deep Dark Jungle - Out of Order&lt;br /&gt;
=====questESpJunglePun=====&lt;br /&gt;
Deep Dark Jungle - Pungle in the Jungle&lt;br /&gt;
=====questESpSmokes=====&lt;br /&gt;
Deep Dark Jungle - Everyone&#039;s Running Out of Smokes&lt;br /&gt;
=====questESpClipper=====&lt;br /&gt;
Mansion of Dr. Weirdeaux - The Big Clipper&lt;br /&gt;
=====questESpSerum=====&lt;br /&gt;
Mansion of Dr. Weirdeaux - Serum Sortie&lt;br /&gt;
=====questESpEVE=====&lt;br /&gt;
Secret Government Laboratory - Choking on the Rind&lt;br /&gt;
=====questESpFakeMedium=====&lt;br /&gt;
Secret Government Laboratory - Fake Medium at Large&lt;br /&gt;
=====questESpGore=====&lt;br /&gt;
Secret Government Laboratory - Gore Tipper&lt;br /&gt;
&lt;br /&gt;
{{PropertyNav}}&lt;/div&gt;</summary>
		<author><name>Malibu Stacey</name></author>
	</entry>
	<entry>
		<id>https://wiki.kolmafia.us/index.php?title=Quest_Tracking_Preferences&amp;diff=8252</id>
		<title>Quest Tracking Preferences</title>
		<link rel="alternate" type="text/html" href="https://wiki.kolmafia.us/index.php?title=Quest_Tracking_Preferences&amp;diff=8252"/>
		<updated>2020-06-03T08:39:50Z</updated>

		<summary type="html">&lt;p&gt;Malibu Stacey: add 2 new quest properties. Tidy up a bunch of entries.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{TOCright}}&lt;br /&gt;
KoLMafia internally tracks progress for a number of quests. These are stored as preferences in settings\[charactername]_prefs.&lt;br /&gt;
&lt;br /&gt;
==Council Quests==&lt;br /&gt;
===questL02Larva===&lt;br /&gt;
questL02Larva tracks the player&#039;s progress in the {{kolwiki|Spooky_Forest_Quest|Spooky Forest quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received from the Council&lt;br /&gt;
*step1: mosquito larva acquired&lt;br /&gt;
*finished: mosquito larva returned to the Council&lt;br /&gt;
&lt;br /&gt;
===questL03Rat===&lt;br /&gt;
questL03Rat tracks the player&#039;s progress in the {{kolwiki|Typical_Tavern_Quest|Typical Tavern quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received from the Council&lt;br /&gt;
*step1: spoke to Bart Ender in the Typical Tavern&lt;br /&gt;
*step2: turned off the Rat Faucet&lt;br /&gt;
*finished: told Bart about the Faucet&lt;br /&gt;
&lt;br /&gt;
===questL04Bat===&lt;br /&gt;
questL04Bat tracks the player&#039;s progress in the {{kolwiki|Boss_Bat_Quest|Boss Bat quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received from the Council&lt;br /&gt;
*step1-step3: demolished 1-3 walls in the Bat Hole&lt;br /&gt;
*step4: Boss Bat defeated&lt;br /&gt;
*finished: returned to the Council to report success&lt;br /&gt;
&lt;br /&gt;
===questL05Goblin===&lt;br /&gt;
questL05Goblin tracks the player&#039;s progress in the {{kolwiki|The_King_of_Cobb&#039;s_Knob_Quest|The King of Cobb&#039;s Knob quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received from the Council&lt;br /&gt;
*step1: Cobb&#039;s Knob map decrypted&lt;br /&gt;
*finished: Knob Goblin King defeated&lt;br /&gt;
&lt;br /&gt;
===questL06Friar===&lt;br /&gt;
&lt;br /&gt;
questL06Friar tracks the player&#039;s progress in the {{kolwiki|Deep_Fat_Friars&#039;_Gate_Quest|Friars&#039; quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received from the Council&lt;br /&gt;
*step1: details received from the Friars&lt;br /&gt;
*step2: box of birthday candles, dodecagram &amp;amp; eldritch butterknife acquired.&lt;br /&gt;
*finished: cleansed the taint&lt;br /&gt;
&lt;br /&gt;
===questL07Cyrptic===&lt;br /&gt;
questL07Cyrptic tracks the player&#039;s progress in the {{kolwiki|Undefile_the_Cyrpt_Quest|Undefile the Cyrpt quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received from the Council&lt;br /&gt;
*finished: Bonerdagon defeated&lt;br /&gt;
&lt;br /&gt;
====Evilness====&lt;br /&gt;
When evilness in each zone is 25 or less the zone boss will be the next encounter.&lt;br /&gt;
When total evilness is 0 and all 4 bosses are defeated, the Haert of the Cyrpt will be accessible.&lt;br /&gt;
* cyrptAlcoveEvilness tracks current evilness in the Alcove&lt;br /&gt;
* cyrptCrannyEvilness tracks current evilness in the Cranny&lt;br /&gt;
* cyrptNicheEvilness tracks current evilness in the Niche&lt;br /&gt;
* cyrptNookEvilness tracks current evilness in the Nook&lt;br /&gt;
* cyrptTotalEvilness tracks the sum of evilness in the Cyrpt&lt;br /&gt;
&lt;br /&gt;
===questL08Trapper===&lt;br /&gt;
&lt;br /&gt;
questL08Trapper tracks the player&#039;s progress in the {{kolwiki|Mt._McLargeHuge_Quest|Mt. McLargeHuge Quest}}.&lt;br /&gt;
&lt;br /&gt;
* unstarted: quest not yet received from the Council&lt;br /&gt;
* started: quest received from the Council&lt;br /&gt;
* step1: cheese and ore requested by the Trapper&lt;br /&gt;
* step2: cheese and ore returned to the Trapper&lt;br /&gt;
* step3: discovered the stairs up to the Mist-Shrouded Peak (via either route)&lt;br /&gt;
* step4: fought at least one yeti&lt;br /&gt;
* step5: defeated the monster at the top of the Peak&lt;br /&gt;
* finished: returned the fur to the Trapper (quest complete)&lt;br /&gt;
&lt;br /&gt;
===questL09Topping===&lt;br /&gt;
questL08Trapper tracks the player&#039;s progress in the {{kolwiki|Orc_Chasm_Quest|Orc Chasm Quest}}.&lt;br /&gt;
&lt;br /&gt;
* unstarted: quest not yet received from the Council&lt;br /&gt;
* started: quest received from the Council&lt;br /&gt;
* step1: bridge built&lt;br /&gt;
* step2: like, totally got the deets from the Highland Lord&lt;br /&gt;
* step3: lit all three signal fires&lt;br /&gt;
* finished: quest complete&lt;br /&gt;
&lt;br /&gt;
====booPeakProgress====&lt;br /&gt;
booPeakProgress tracks the hauntedness level of {{kolwiki|A-boo Peak}}. A value of 18, for instance, indicates that A-boo Peak is 18% haunted.&lt;br /&gt;
&lt;br /&gt;
Possible values: 0 - 100&lt;br /&gt;
&lt;br /&gt;
====chasmBridgeProgress====&lt;br /&gt;
chasmBridgeProgress tracks the player&#039;s progress in building a bridge across the {{kolwiki|Orc Chasm}}. A value of 10, for instance, indicates that the bridge is 10 planks long.&lt;br /&gt;
&lt;br /&gt;
Possible values: 0 - 30&lt;br /&gt;
&lt;br /&gt;
====oilPeakProgress====&lt;br /&gt;
oilPeakProgress tracks the remaining pressure at {{kolwiki|Oil Peak}}. It decreases as the player reduces the pressure in the zone.&lt;br /&gt;
&lt;br /&gt;
Possible values: 0.00 - 310.66&lt;br /&gt;
* 310.66: Pressure not yet reduced&lt;br /&gt;
* 0.00: Subquest completed&lt;br /&gt;
&lt;br /&gt;
====twinPeakProgress====&lt;br /&gt;
twinPeakProgress is a nibble bitmask with least significant bit set for the first choice and the most significant for the fourth. You can parse this with bitwise operators. Here&#039;s some code that demonstrates how to use it.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight&amp;gt;&lt;br /&gt;
void comma(buffer b, string s) {&lt;br /&gt;
	if(length(b) &amp;gt; 0)&lt;br /&gt;
		b.append(&amp;quot;, &amp;quot;);&lt;br /&gt;
	b.append(s);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
boolean mysterious(int progress, int c) { &lt;br /&gt;
	return (progress &amp;amp; (1 &amp;lt;&amp;lt; c)) == 0;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
string twinPeak() {&lt;br /&gt;
	int p = get_property(&amp;quot;twinPeakProgress&amp;quot;).to_int();&lt;br /&gt;
	buffer need;&lt;br /&gt;
	if(mysterious(p, 0)) need.comma(&amp;quot;4 Stench Resistance&amp;quot;);&lt;br /&gt;
	if(mysterious(p, 1)) need.comma(&amp;quot;+50% Item Drop&amp;quot;);&lt;br /&gt;
	if(mysterious(p, 2)) need.comma(&amp;quot;Jar of Oil&amp;quot;);&lt;br /&gt;
	// Only check for final if first three complete&lt;br /&gt;
	if(length(need) == 0) {&lt;br /&gt;
		if(mysterious(p, 3))&lt;br /&gt;
			return &amp;quot;Need +40% Initiative&amp;quot;;&lt;br /&gt;
		return &amp;quot;Twin Peak Completed&amp;quot;;&lt;br /&gt;
	}&lt;br /&gt;
	return &amp;quot;Need &amp;quot; + need;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====booPeakLit====&lt;br /&gt;
booPeakLit is a boolean which tracks if you have lit the fire at A-boo Peak or not&lt;br /&gt;
&lt;br /&gt;
====oilPeakLit====&lt;br /&gt;
oilPeakLit is a boolean which tracks if you have lit the fire at Oil Peak or not&lt;br /&gt;
&lt;br /&gt;
(note, twinPeakLit would be obsolete as it would simply track twinPeakProgress == 15)&lt;br /&gt;
&lt;br /&gt;
===questL10Garbage===&lt;br /&gt;
&lt;br /&gt;
questL10Garbage tracks the player&#039;s progress in {{kolwiki|Giant_Trash_Quest|the Giant Trash Quest}}.&lt;br /&gt;
&lt;br /&gt;
* unstarted: quest not yet received from the Council&lt;br /&gt;
* started: quest received from the Council&lt;br /&gt;
* step2: giant beanstalk grown&lt;br /&gt;
* step3 - step6: four Immateria acquired&lt;br /&gt;
* step7: S.O.C.K. acquired ({{kolwiki|The_Castle_in_the_Clouds_in_the_Sky_(Basement)|Castle Basement}} open)&lt;br /&gt;
* step8: {{kolwiki|The_Castle_in_the_Clouds_in_the_Sky_(Basement)|Castle Ground Floor}} open&lt;br /&gt;
* step9: {{kolwiki|The_Castle_in_the_Clouds_in_the_Sky_(Basement)|Castle Top Floor}} open&lt;br /&gt;
* step10: chore wheel turned&lt;br /&gt;
* finished: returned to the Council&lt;br /&gt;
&lt;br /&gt;
===questL11MacGuffin===&lt;br /&gt;
questL11MacGuffin tracks the player&#039;s progress in the {{kolwiki|Quest_for_the_Holy_MacGuffin|Holy MacGuffin quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: quest received from the Council&lt;br /&gt;
*step1: Black Market located (blackForestProgress == 5)&lt;br /&gt;
*step2: retrieved your father&#039;s MacGuffin diary&lt;br /&gt;
*finished: returned the MacGuffin to the Council&lt;br /&gt;
&lt;br /&gt;
====questL11Black====&lt;br /&gt;
questL11Black tracks the player&#039;s progress in the {{kolwiki|Quest_for_the_Holy_MacGuffin|Black Market portion of the Holy MacGuffin quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started:  quest received from the Council&lt;br /&gt;
*step1: spent at least one turn in the Black Forest&lt;br /&gt;
*step2: Black Market found&lt;br /&gt;
*step3: forged identification documents purchased&lt;br /&gt;
*finished: MacGuffin diary acquired&lt;br /&gt;
&lt;br /&gt;
=====blackForestProgress=====&lt;br /&gt;
blackForestProgress tracks the player&#039;s progress in [http://kolmafia.us/showthread.php?15995 discovering the Black Market].&lt;br /&gt;
&lt;br /&gt;
*0: no progress in exploring the Forest&lt;br /&gt;
*1: blackberry bushes located&lt;br /&gt;
*2: black cottage located&lt;br /&gt;
*3: black mineshaft located&lt;br /&gt;
*4: black church located&lt;br /&gt;
*5: black market located&lt;br /&gt;
&lt;br /&gt;
====questL11Manor====&lt;br /&gt;
questL11Manor tracks the player&#039;s progress in the {{kolwiki|Quest_for_the_Holy_MacGuffin#Spookyraven_quest_.28In_a_Manor_of_Spooking|Spookyraven Manor portion of the Holy Macguffin quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received, by reading your father&#039;s MacGuffin diary&lt;br /&gt;
*step1: Spookyraven Manor Cellar opened&lt;br /&gt;
*step2: recipe: mortar-dissolving solution read&lt;br /&gt;
*step3: Suspicious Masonry demolished&lt;br /&gt;
*finished: Lord Spookyraven defeated&lt;br /&gt;
&lt;br /&gt;
=====spookyravenRecipeUsed=====&lt;br /&gt;
spookyravenRecipeUsed tracks whether and how the player has read recipe: mortar-dissolving solution&lt;br /&gt;
&lt;br /&gt;
*none: recipe not yet read&lt;br /&gt;
*with_glasses: recipe read with Lord Spookyraven&#039;s spectacles&lt;br /&gt;
*no_glasses: recipe read without the spectacles&lt;br /&gt;
&lt;br /&gt;
====questL11Desert====&lt;br /&gt;
Explore the Arid, Extra-Dry Desert to find the pyramid mentioned in your father&#039;s journal.&lt;br /&gt;
&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: quest started by reading your father&#039;s MacGuffin diary&lt;br /&gt;
*finished: discovered the Small Pyramid&lt;br /&gt;
&lt;br /&gt;
=====desertExploration=====&lt;br /&gt;
*0: haven&#039;t yet started exploring the Desert&lt;br /&gt;
*1-99: Desert exploration in progress&lt;br /&gt;
*100: Desert fully explored&lt;br /&gt;
&lt;br /&gt;
====questL11Pyramid====&lt;br /&gt;
questL11Pyramid tracks the player&#039;s progress in the {{kolwiki|Quest_for_the_Holy_MacGuffin#A_Small_Pyramid|Pyramid portion of the Holy Macguffin quest}}.&lt;br /&gt;
&lt;br /&gt;
* unstarted: Ancient Buried Pyramid not yet discovered&lt;br /&gt;
* started: Ancient Buried Pyramid discovered&lt;br /&gt;
* step1: Middle Chamber opened&lt;br /&gt;
* step2: The Lower Chambers opened&lt;br /&gt;
* step3: Control Room opened&lt;br /&gt;
* finished: MacGuffin retrieved (quest complete)&lt;br /&gt;
&lt;br /&gt;
=====gnasirProgress=====&lt;br /&gt;
gnasirProgress is a nibble bitmask with one bit for each possible way you can advance {{kolwiki|Quest_for_the_Holy_MacGuffin|Gnasir&#039;s quest}}. You can parse this with bitwise operators. Here&#039;s some code that demonstrates how to use it.&lt;br /&gt;
&amp;lt;syntaxhighlight&amp;gt;&lt;br /&gt;
int gnasirProgress = get_property(&amp;quot;gnasirProgress&amp;quot;).to_int();&lt;br /&gt;
buffer gnasir;&lt;br /&gt;
if((gnasirProgress &amp;amp; 1) == 0)&lt;br /&gt;
	print(&amp;quot;Gnasir wants a stone rose&amp;quot;);&lt;br /&gt;
if((gnasirProgress &amp;amp; 2) == 0)&lt;br /&gt;
	print(&amp;quot;Gnasir wants a can of black paint&amp;quot;);&lt;br /&gt;
if((gnasirProgress &amp;amp; 4) == 0)&lt;br /&gt;
	print(&amp;quot;Gnasir wants a killing jar&amp;quot;);&lt;br /&gt;
if((gnasirProgress &amp;amp; 8) == 0)&lt;br /&gt;
	print(&amp;quot;Gnasir wants a 15 worm-riding manual page&amp;quot;);&lt;br /&gt;
if((gnasirProgress &amp;amp; 16) == 0)&lt;br /&gt;
	print(&amp;quot;You need to use a drum machine to ride the worm&amp;quot;);&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====questL11Ron====&lt;br /&gt;
Ron Copperhead&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: quest received, by reading your father&#039;s MacGuffin diary&lt;br /&gt;
*step1: received the intro adventure at A Mob of Zeppelin Protestors&lt;br /&gt;
*step2: cleared all 80 protestors and opened access to The Red Zeppelin&lt;br /&gt;
*step3: received the intro adventure at The Red Zeppelin&lt;br /&gt;
*step4: Found Ron &amp;quot;The Weasel&amp;quot; Copperhead&lt;br /&gt;
*finished: defeated Ron &amp;quot;The Weasel&amp;quot; Copperhead and received the Copperhead Charm (rampant)&lt;br /&gt;
&lt;br /&gt;
=====zeppelinProtestors=====&lt;br /&gt;
Tracks protesters removed&lt;br /&gt;
&lt;br /&gt;
====questL11Shen====&lt;br /&gt;
Shen Copperhead&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received from the Council&lt;br /&gt;
*started: quest received, by reading your father&#039;s MacGuffin diary&lt;br /&gt;
*step1: spoke to Shen Copperhead in the Copperhead club and received first item request (and poisoning)&lt;br /&gt;
*step2: acquired first item&lt;br /&gt;
*step3: returned first item, received second item request (and poisoning)&lt;br /&gt;
*step4: acquired second item&lt;br /&gt;
*step5: returned second item, received third item request (and poisoning)&lt;br /&gt;
*step6: acquired third item&lt;br /&gt;
*step7: returned third item&lt;br /&gt;
*finished: received the Copperhead Charm&lt;br /&gt;
&lt;br /&gt;
====questL11Palindome====&lt;br /&gt;
questL11Palindome tracks the player&#039;s progress in the {{kolwiki|Quest_for_the_Holy_MacGuffin#The_Palindome|Palindome portion of the Never Odd or Even quest}}.&lt;br /&gt;
&lt;br /&gt;
* unstarted: quest not yet received from the Council&lt;br /&gt;
* started: have the Talisman o&#039; Namsilat&lt;br /&gt;
* step1: arranged the photos in Dr. Awkward&#039;s office&lt;br /&gt;
* step2: read 2 Love Me, Vol. 2&lt;br /&gt;
* step3: met Mr. Alarm in his office (received the wet stunt nut stew quest)&lt;br /&gt;
* step4: cooked wet stunt nut stew&lt;br /&gt;
* step5: returned the stew to Mr. Alarm&lt;br /&gt;
* finished: defeated Dr. Awkward&lt;br /&gt;
&lt;br /&gt;
====questL11Worship====&lt;br /&gt;
questL11Worship tracks progress through the {{kolwiki|Quest_for_the_Holy_MacGuffin#Hidden_Temple_quest_.28Gotta_Worship_Them_All.29|Hidden Temple portion of the Quest for the Holy MacGuffin}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received, by reading your father&#039;s MacGuffin diary&lt;br /&gt;
*step1: (Hidden Temple opened?)&lt;br /&gt;
*step2: correct button pressed in the Temple&lt;br /&gt;
*step3: Hidden City uncovered&lt;br /&gt;
*step4: four stone triangles acquired&lt;br /&gt;
*finished: ancient amulet acquired from the Protector Spectre&lt;br /&gt;
&lt;br /&gt;
=====questL11Business=====&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: Hidden Office Building opened&lt;br /&gt;
*finished: crackling stone sphere acquired&lt;br /&gt;
&lt;br /&gt;
======hiddenOfficeProgress======&lt;br /&gt;
hiddenOfficeProgress tracks progress through the {{kolwiki|Hidden Office Building}} during the Quest for the Holy MacGuffin.&lt;br /&gt;
&lt;br /&gt;
Possible values: 0, 1, 6 - 8&lt;br /&gt;
* 0: Haven&#039;t opened the Hidden Office Building&lt;br /&gt;
* 1: Hidden Office Building is open for adventuring&lt;br /&gt;
* 6: Encountered the Protector Spirit&lt;br /&gt;
* 7: Found the stone sphere&lt;br /&gt;
* 8: Placed the stone sphere in the relevant overgrown shrine&lt;br /&gt;
&lt;br /&gt;
=====questL11Curses=====&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: Hidden Apartment Building opened&lt;br /&gt;
*finished: moss-covered stone sphere acquired&lt;br /&gt;
&lt;br /&gt;
======hiddenApartmentProgress======&lt;br /&gt;
hiddenApartmentProgress tracks progress through the {{kolwiki|Hidden Apartment Building}} during the Quest for the Holy MacGuffin.&lt;br /&gt;
&lt;br /&gt;
Possible values: 0, 1, 6 - 8&lt;br /&gt;
* 0: Haven&#039;t opened the Hidden Apartment Building&lt;br /&gt;
* 1: Hidden Apartment Building is open for adventuring&lt;br /&gt;
* 6: Encountered the Protector Spirit&lt;br /&gt;
* 7: Found the stone sphere&lt;br /&gt;
* 8: Placed the stone sphere in the relevant overgrown shrine&lt;br /&gt;
&lt;br /&gt;
=====questL11Doctor=====&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: Hidden Hospital opened&lt;br /&gt;
*finished: dripping stone sphere acquired&lt;br /&gt;
&lt;br /&gt;
======hiddenHospitalProgress======&lt;br /&gt;
hiddenHospitalProgress tracks progress through the {{kolwiki|Hidden Hospital}} during the Quest for the Holy MacGuffin.&lt;br /&gt;
&lt;br /&gt;
Possible values: 0 - 8&lt;br /&gt;
* 0: Haven&#039;t opened the Hidden Hospital&lt;br /&gt;
* 1: Hidden Hospital is open for adventuring, but haven&#039;t bowled.&lt;br /&gt;
* 6: Encountered the Protector Spirit&lt;br /&gt;
* 7: Found the stone sphere&lt;br /&gt;
* 8: Placed the stone sphere in the relevant overgrown shrine&lt;br /&gt;
&lt;br /&gt;
=====questL11Spare=====&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: Hidden Bowling Alley opened&lt;br /&gt;
*finished: scorched stone sphere acquired&lt;br /&gt;
&lt;br /&gt;
======hiddenBowlingAlleyProgress======&lt;br /&gt;
hiddenBowlingAlleyProgress tracks progress through the {{kolwiki|Hidden Bowling Alley}} during the Quest for the Holy MacGuffin.&lt;br /&gt;
&lt;br /&gt;
* 0: Haven&#039;t opened the Hidden Bowling Alley&lt;br /&gt;
* 1: Hidden Bowling Alley is open for adventuring&lt;br /&gt;
* 2-5: Number of times bowled is 1 less than hiddenBowlingAlleyProgress &lt;br /&gt;
* 6: Encountered the Protector Spirit&lt;br /&gt;
* 7: Found the stone sphere&lt;br /&gt;
* 8: Placed the stone sphere in the relevant overgrown shrine&lt;br /&gt;
&lt;br /&gt;
=====hiddenTavernUnlock=====&lt;br /&gt;
hiddenTavernUnlock tracks whether or not you have unlocked the {{kolwiki|Hidden Tavern}} during the Quest for the Holy MacGuffin.&lt;br /&gt;
&lt;br /&gt;
* When the value is equal to your number of ascensions, the Tavern is unlocked&lt;br /&gt;
* When the value is any other number, the Tavern is locked&lt;br /&gt;
&lt;br /&gt;
===questL12War===&lt;br /&gt;
questL12War tracks progress during the {{kolwiki|Mysterious Island Quest}}.&lt;br /&gt;
&lt;br /&gt;
* unstarted: quest not yet received from the Council&lt;br /&gt;
* started: quest received&lt;br /&gt;
* step1: War started&lt;br /&gt;
* finished: War ended; boss defeated (quest complete)&lt;br /&gt;
&lt;br /&gt;
====warProgress====&lt;br /&gt;
Possible values for the progress of the {{kolwiki|Mysterious Island Quest|Isle War}}:&lt;br /&gt;
*unstarted: We can still visit the small version of the Mysterious Island&lt;br /&gt;
*started: The war is in progress&lt;br /&gt;
*finished: The final boss or bosses were defeated&lt;br /&gt;
&lt;br /&gt;
====fratboysDefeated====&lt;br /&gt;
counts how many frat warriors have been killed on the battlefield (starts at 0).&lt;br /&gt;
&lt;br /&gt;
====hippiesDefeated====&lt;br /&gt;
counts how many war hippies have been killed on the battlefield (starts at 0).&lt;br /&gt;
&lt;br /&gt;
====sideDefeated====&lt;br /&gt;
Which side of the {{kolwiki|Mysterious Island Quest|Isle War}} was defeated during the Level 12 quest. &lt;br /&gt;
&lt;br /&gt;
Possible values:&lt;br /&gt;
*neither&lt;br /&gt;
*hippies&lt;br /&gt;
*fratboys&lt;br /&gt;
*both&lt;br /&gt;
&lt;br /&gt;
====sidequestArenaCompleted====&lt;br /&gt;
Tracks the status of {{kolwiki|The Mysterious Island Arena}} sidequest&lt;br /&gt;
&lt;br /&gt;
Possible values:&lt;br /&gt;
*none&lt;br /&gt;
*fratboy&lt;br /&gt;
*hippy&lt;br /&gt;
&lt;br /&gt;
====sidequestFarmCompleted====&lt;br /&gt;
Tracks the status of {{kolwiki|McMillicancuddy&#039;s Farm}} sidequest&lt;br /&gt;
&lt;br /&gt;
Possible values:&lt;br /&gt;
*none&lt;br /&gt;
*fratboy&lt;br /&gt;
*hippy&lt;br /&gt;
&lt;br /&gt;
====sidequestJunkyardCompleted====&lt;br /&gt;
Tracks the status of {{kolwiki|The Junkyard}} sidequest&lt;br /&gt;
&lt;br /&gt;
Possible values:&lt;br /&gt;
*none&lt;br /&gt;
*fratboy&lt;br /&gt;
*hippy&lt;br /&gt;
&lt;br /&gt;
====sidequestLighthouseCompleted====&lt;br /&gt;
Tracks the status of {{kolwiki|The Lighthouse}} sidequest&lt;br /&gt;
&lt;br /&gt;
Possible values:&lt;br /&gt;
*none&lt;br /&gt;
*fratboy&lt;br /&gt;
*hippy&lt;br /&gt;
&lt;br /&gt;
====sidequestNunsCompleted====&lt;br /&gt;
Tracks the status of {{kolwiki|Our Lady of Perpetual Indecision}} sidequest&lt;br /&gt;
&lt;br /&gt;
Possible values:&lt;br /&gt;
*none&lt;br /&gt;
*fratboy&lt;br /&gt;
*hippy&lt;br /&gt;
&lt;br /&gt;
====sidequestOrchardCompleted====&lt;br /&gt;
Tracks the status of {{kolwiki|The Organic Orchard}} sidequest&lt;br /&gt;
&lt;br /&gt;
Possible values:&lt;br /&gt;
*none&lt;br /&gt;
*fratboy&lt;br /&gt;
*hippy&lt;br /&gt;
&lt;br /&gt;
===questL12HippyFrat===&lt;br /&gt;
questL12War tracks progress during the {{kolwiki|Mysterious Island Quest}} in the {{kolwiki|Kingdom of Exploathing}} path&lt;br /&gt;
&lt;br /&gt;
* unstarted: quest not yet received from the Council&lt;br /&gt;
* started: quest received&lt;br /&gt;
* step1: War started&lt;br /&gt;
* finished: War ended; boss defeated (quest complete)&lt;br /&gt;
&lt;br /&gt;
===questL13Final===&lt;br /&gt;
Progress for the {{kolwiki|Naughty Sorceress Quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received from the Council&lt;br /&gt;
*started: quest received; Registration Desk open (???)&lt;br /&gt;
*step1: spent at least one turn fighting competitors&lt;br /&gt;
*step2: competitors defeated&lt;br /&gt;
*step3: sash acquired&lt;br /&gt;
*step4: met Frank&lt;br /&gt;
*step5: Hedge Maze cleared&lt;br /&gt;
*step6: Tower Door locks unlocked&lt;br /&gt;
*step7: wall of skin defeated&lt;br /&gt;
*step8: wall of meat defeated&lt;br /&gt;
*step9: wall of bones defeated&lt;br /&gt;
*step10: antique mirror handled&lt;br /&gt;
*step11: shadow class defeated&lt;br /&gt;
*step12: Naughty Sorceress defeated&lt;br /&gt;
*step13: Council informed&lt;br /&gt;
*finished: prism smashed; King Ralph freed; Astral Gash accessible&lt;br /&gt;
&lt;br /&gt;
===questL13Warehouse===&lt;br /&gt;
the final quest if you ascend as {{kolwiki|Actually Ed the Undying}} where you adventure in {{kolwiki|The Secret Council Warehouse}}.&lt;br /&gt;
*unstarted&lt;br /&gt;
*started&lt;br /&gt;
*finished&lt;br /&gt;
Current progress in the warehouse is tracked in warehouseProgress.&lt;br /&gt;
&lt;br /&gt;
==Guild Quests==&lt;br /&gt;
===questG01Meatcar===&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questG02Whitecastle===&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questG03Ego===&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questG04Nemesis===&lt;br /&gt;
questG04Nemesis tracks the player&#039;s progress in the {{kolwiki|Me and My Nemesis|Nemesis quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received from the guild&lt;br /&gt;
*step1: Tomb of the Unknown [Your Class] Here encountered at The Unquiet Garves&lt;br /&gt;
*step2: Defeated the Unknown [Your Class]&lt;br /&gt;
*step3: Post combat choice encountered after defeating the Unknown [Your Class]&lt;br /&gt;
*step4: Epic Weapon acquired&lt;br /&gt;
*step5: &amp;quot;fun&amp;quot; house opened&lt;br /&gt;
*step6: Defeated The Clownlord Beelzebozo&lt;br /&gt;
*step7: Guild instructs you to make your Legendary Epic Weapon&lt;br /&gt;
*step8: Meatsmithed your Legendary Epic Weapon&lt;br /&gt;
*step9: Returned to Guild with Legendary Epic Weapon&lt;br /&gt;
*step10: Talked to Guild and opened the Dark Cave&lt;br /&gt;
*step11: Encountered the Dark Cave entrance at least once&lt;br /&gt;
*step12: Passed the Dark Cave entrance&lt;br /&gt;
*step13: ?&lt;br /&gt;
*step14: 6 fizzing spore pods acquired&lt;br /&gt;
*step15: Impassable rubble cleared and ready for final (?) showdown&lt;br /&gt;
*step16: Defeated Nemesis (1st battle, drops Legendary Regalia Hat)&lt;br /&gt;
*step17: Returned to Guild with Legendary Regalia Hat&lt;br /&gt;
*step18: ?&lt;br /&gt;
*step19: Defeated 1st assassin - menacing thug (wanderer)&lt;br /&gt;
*step20: ?&lt;br /&gt;
*step21: Defeated 2nd assassin - Mob Penguin hitman (wanderer)&lt;br /&gt;
*step22: ?&lt;br /&gt;
*step23: Defeated 3rd assassin - class specific (wanderer)&lt;br /&gt;
*step24: ?&lt;br /&gt;
*step25: Defeated 4th assassin - class specific (wanderer) &lt;br /&gt;
*step26: Spoke to Guild after defeating 4th assassin/acquiring secret tropical island volcano lair map&lt;br /&gt;
*step27: Defeated Nemesis (2nd battle, drops Legendary Regalia Pants)&lt;br /&gt;
*step28: Started fight with Nemesis after Volcano maze (3rd battle)&lt;br /&gt;
*step29: Defeated 1st form of Nemesis (3rd battle)&lt;br /&gt;
*finished: Defeated 2nd form of Nemesis (3rd battle, drops Legendary Regalia Accessory)&lt;br /&gt;
&lt;br /&gt;
===questG05Dark===&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questG06Delivery===&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
==Miscellaneous Quests==&lt;br /&gt;
===questM01Untinker===&lt;br /&gt;
Returning the screwdriver to the Untinker.&lt;br /&gt;
* unstarted&lt;br /&gt;
* step1: collected the rusty screwdriver&lt;br /&gt;
* finished: screwdriver returned&lt;br /&gt;
&lt;br /&gt;
===questM02Artist===&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questM03Bugbear===&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questM04Galaktic===&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questM05Toot===&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questM06Gourd===&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questM07Hammer===&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questM08Baker===&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questM09Rocks===&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questM10Azazel===&lt;br /&gt;
questM10Azazel tracks the player&#039;s progress in the {{kolwiki|Azazel,_Ma_Belle|Azazel, Ma Belle quest}}.&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: received the quest, from Azazel or the stranger in Moaning Panda Square&lt;br /&gt;
*finished: returned Azazel&#039;s talismans to him&lt;br /&gt;
&lt;br /&gt;
===questM11Postal===&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questM12Pirate===&lt;br /&gt;
questM12Pirate tracks the player&#039;s progress in the {{kolwiki|Cap&#039;m Caronch Quest}}.&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: Cap&#039;m Caronch&#039;s Map found&lt;br /&gt;
*step1: acquired Cap&#039;m Caronch&#039;s nasty booty from the booty crab&lt;br /&gt;
*step2: received the Orcish Frat House blueprints&lt;br /&gt;
*step3: retrieved Cap&#039;m Caronch&#039;s dentures from the Frat House&lt;br /&gt;
*step4: returned the dentures to the Cap&#039;m and accepted the beer pong challenge&lt;br /&gt;
*step5: won a game of beer pong&lt;br /&gt;
*step6: acquired pirate fledges&lt;br /&gt;
*finished: unlocked Belowdecks&lt;br /&gt;
&lt;br /&gt;
===questM13Escape===&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questM14Bounty===&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questM15Lol===&lt;br /&gt;
questM15Lol tracks the player&#039;s progress in {{kolwiki|A Quest, LOL}}. (No, but seriously.)&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questM16Temple===&lt;br /&gt;
The Hidden Legend of the Temple (&amp;quot;Dakota&amp;quot; Fanning)&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questM17Babies===&lt;br /&gt;
Lady Spookyraven&#039;s Babies&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questM18Swamp===&lt;br /&gt;
Marty and His Swamp Problems&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questM19Hippy===&lt;br /&gt;
Hippy Give a Hippy a Boat...&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questM20Necklace===&lt;br /&gt;
questM20Necklace tracks the player&#039;s progress in {{kolwiki|Spookyraven_Manor_Quest#Lady_Spookyraven.27s_Necklace_.28First_Floor.29|retrieving Lady Spookyraven&#039;s necklace}}.&lt;br /&gt;
&lt;br /&gt;
* unstarted: quest not yet received&lt;br /&gt;
* started: quest received from the telegram&lt;br /&gt;
* step1: billiards room key found&lt;br /&gt;
* step2: Pool Cue acquired&lt;br /&gt;
* step3: library key found&lt;br /&gt;
* step4: necklace found&lt;br /&gt;
* finished: necklace returned to Lady Spookyraven (quest complete)&lt;br /&gt;
&lt;br /&gt;
===questM21Dance===&lt;br /&gt;
questM21Dance tracks the player&#039;s progress in the Second Floor portion of the {{kolwiki|Lady_spookyraven&#039;s_dance|Spookyraven Manor quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: quest received, from Lady Spookyraven&#039;s ghostly telegram&lt;br /&gt;
*step1: spoken to Lady Spookyraven on the Second Floor&lt;br /&gt;
*step2: acquired Lady Spookyraven&#039;s dancing things&lt;br /&gt;
*step3: returned Lady Spookyraven&#039;s dancing things to her&lt;br /&gt;
*finished: danced with Lady Spookyraven in the Ballroom&lt;br /&gt;
&lt;br /&gt;
===questM22Shirt===&lt;br /&gt;
The Shirt Off His Lack of Back&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questM23Meatsmith===&lt;br /&gt;
Helping Make Ends Meat&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* step1 - Got a {{kolwiki|check to the Meatsmith}}.&lt;br /&gt;
* finished - Returned {{kolwiki|check to the Meatsmith}} to the Meatsmith.&lt;br /&gt;
&lt;br /&gt;
===questM24Doc===&lt;br /&gt;
What&#039;s Up, Doc?&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* step1 - Collected the Herbs and need to return them to Doc Galaktik&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questM25Armorer===&lt;br /&gt;
Lending a Hand (and a Foot)&lt;br /&gt;
* unstarted&lt;br /&gt;
* started - accepted the quest from the Armorer and Leggerer&lt;br /&gt;
* step1 - &lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
===questM26Oracle===&lt;br /&gt;
The Oracle quest (The Source Path)&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
==Sea Quests==&lt;br /&gt;
===questS01OldGuy===&lt;br /&gt;
=finished&lt;br /&gt;
===questS02Monkee===&lt;br /&gt;
=unstarted&lt;br /&gt;
&lt;br /&gt;
When Mom is rescued the Quest is completed &lt;br /&gt;
&lt;br /&gt;
=finished&lt;br /&gt;
&lt;br /&gt;
====merkinQuestPath====&lt;br /&gt;
merkinQuestPath indicates which path the player has chosen in the {{kolwiki|Mer-Kin Deepcity}}, during the {{kolwiki|Sea Monkees Quest}}.&lt;br /&gt;
&lt;br /&gt;
Possible values:&lt;br /&gt;
* none: Player has not yet chosen a path&lt;br /&gt;
* gladiator: Player will fight Yog-Urt, Elder Goddess of Hatred&lt;br /&gt;
* scholar: Player will fight Shub-Jigguwatt, Elder God of Violence&lt;br /&gt;
* done: Player has completed the Sea Monkees Quest&lt;br /&gt;
&lt;br /&gt;
====skateParkStatus====&lt;br /&gt;
skateParkStatus tracks the player&#039;s progress in the {{kolwiki|war for the Skate Park}}.&lt;br /&gt;
&lt;br /&gt;
*war: the war is ongoing&lt;br /&gt;
*ice: the roller skates have been chased out&lt;br /&gt;
*roller: the ice skates have been chased out&lt;br /&gt;
*peace: both sides have been chased out&lt;br /&gt;
&lt;br /&gt;
==Quests Granted by Items==&lt;br /&gt;
===questI01Scapegoat===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questI02Beat===&lt;br /&gt;
=unstarted&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Quests Granted by Familiars==&lt;br /&gt;
===questF01Primordial===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questF02Hyboria===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questF03Future===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questF04Elves===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questF05Clancy===&lt;br /&gt;
=unstarted&lt;br /&gt;
&lt;br /&gt;
==Bug Bear Invasion Properties==&lt;br /&gt;
&lt;br /&gt;
===mothershipProgress===&lt;br /&gt;
mothershipProgress tracks progress of level completion in the {{kolwiki|Bugbear Mothership}}. It goes from 0 to 3 as that level is cleared.&lt;br /&gt;
&lt;br /&gt;
Possible values: 0-3&lt;br /&gt;
&lt;br /&gt;
===statusEngineering===&lt;br /&gt;
===statusGalley===&lt;br /&gt;
===statusMedbay===&lt;br /&gt;
===statusMorgue===&lt;br /&gt;
===statusNavigation===&lt;br /&gt;
===statusScienceLab===&lt;br /&gt;
===statusSonar===&lt;br /&gt;
===statusSpecialOps===&lt;br /&gt;
===statusWasteProcessing===&lt;br /&gt;
All of these work the same way. &lt;br /&gt;
*0-x (integers): insufficient bodata collected)&lt;br /&gt;
*open: all biodata collected and zone accessible&lt;br /&gt;
* unlocked: biodata collected but zone not yet accessible&lt;br /&gt;
* cleared: zone has been cleared&lt;br /&gt;
&lt;br /&gt;
==Quests from the Elemental Planes==&lt;br /&gt;
===Spring Break Beach===&lt;br /&gt;
The Elemental Plane of Sleaze&lt;br /&gt;
=====questESlMushStash=====&lt;br /&gt;
Jimmy&#039;s Quest to collect receipts from the Fun-Guy Mansion.&lt;br /&gt;
=====questESlAudit=====&lt;br /&gt;
Taco Dan&#039;s Quest to collect receipts from the Fun-Guy Mansion.&lt;br /&gt;
=====questESlBacteria=====&lt;br /&gt;
Broden&#039;s Quest to collect bacteria from the Fun-Guy Mansion.&lt;br /&gt;
=====questESlCheeseburger=====&lt;br /&gt;
Jimmy&#039;s Quest to collect ingredients from the Sloppy Seconds Diner.&lt;br /&gt;
=====questESlSprinkles=====&lt;br /&gt;
Taco Dan&#039;s Quest to collect ingredients from the Sloppy Seconds Diner.&lt;br /&gt;
=====questESlCocktail=====&lt;br /&gt;
Broden&#039;s Quest to collect sprinkles from the Sloppy Seconds Diner.&lt;br /&gt;
=====questESlSalt=====&lt;br /&gt;
Jimmy&#039;s Quest to collect salt from the Sunken Yacht.&lt;br /&gt;
=====questESlFish=====&lt;br /&gt;
Taco Dan&#039;s Quest to collect fish meat from the Sunken Yacht.&lt;br /&gt;
=====questESlDebt=====&lt;br /&gt;
Broden&#039;s Quest to collect broupons from the Sunken Yacht.&lt;br /&gt;
&lt;br /&gt;
===Conspiracy Island===&lt;br /&gt;
The Elemental Plane of Spooky&lt;br /&gt;
=====questESpOutOfOrder=====&lt;br /&gt;
Deep Dark Jungle - Out of Order&lt;br /&gt;
=====questESpJunglePun=====&lt;br /&gt;
Deep Dark Jungle - Pungle in the Jungle&lt;br /&gt;
=====questESpSmokes=====&lt;br /&gt;
Deep Dark Jungle - Everyone&#039;s Running Out of Smokes&lt;br /&gt;
=====questESpClipper=====&lt;br /&gt;
Mansion of Dr. Weirdeaux - The Big Clipper&lt;br /&gt;
=====questESpSerum=====&lt;br /&gt;
Mansion of Dr. Weirdeaux - Serum Sortie&lt;br /&gt;
=====questESpEVE=====&lt;br /&gt;
Secret Government Laboratory - Choking on the Rind&lt;br /&gt;
=====questESpFakeMedium=====&lt;br /&gt;
Secret Government Laboratory - Fake Medium at Large&lt;br /&gt;
=====questESpGore=====&lt;br /&gt;
Secret Government Laboratory - Gore Tipper&lt;br /&gt;
&lt;br /&gt;
{{PropertyNav}}&lt;/div&gt;</summary>
		<author><name>Malibu Stacey</name></author>
	</entry>
	<entry>
		<id>https://wiki.kolmafia.us/index.php?title=Quest_Tracking_Preferences&amp;diff=8251</id>
		<title>Quest Tracking Preferences</title>
		<link rel="alternate" type="text/html" href="https://wiki.kolmafia.us/index.php?title=Quest_Tracking_Preferences&amp;diff=8251"/>
		<updated>2020-04-24T05:12:10Z</updated>

		<summary type="html">&lt;p&gt;Malibu Stacey: add most of the missing steps to the Nemesis quest. also update Spookyraven 1st floor quest step with recent change.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{TOCright}}&lt;br /&gt;
KoLMafia internally tracks progress for a number of quests. These are stored as preferences in settings\[charactername]_prefs.&lt;br /&gt;
&lt;br /&gt;
==Council Quests==&lt;br /&gt;
===questL02Larva===&lt;br /&gt;
questL02Larva tracks the player&#039;s progress in the {{kolwiki|Spooky_Forest_Quest|Spooky Forest quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received from the Council&lt;br /&gt;
*step1: mosquito larva acquired&lt;br /&gt;
*finished: mosquito larva returned to the Council&lt;br /&gt;
&lt;br /&gt;
===questL03Rat===&lt;br /&gt;
questL03Rat tracks the player&#039;s progress in the {{kolwiki|Typical_Tavern_Quest|Typical Tavern quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received from the Council&lt;br /&gt;
*step1: spoke to Bart Ender in the Typical Tavern&lt;br /&gt;
*step2: turned off the Rat Faucet&lt;br /&gt;
*finished: told Bart about the Faucet&lt;br /&gt;
&lt;br /&gt;
===questL04Bat===&lt;br /&gt;
questL04Bat tracks the player&#039;s progress in the {{kolwiki|Boss_Bat_Quest|Boss Bat quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received from the Council&lt;br /&gt;
*step1-step3: demolished 1-3 walls in the Bat Hole&lt;br /&gt;
*step4: Boss Bat defeated&lt;br /&gt;
*finished: returned to the Council to report success&lt;br /&gt;
&lt;br /&gt;
===questL05Goblin===&lt;br /&gt;
questL05Goblin tracks the player&#039;s progress in the {{kolwiki|The_King_of_Cobb&#039;s_Knob_Quest|The King of Cobb&#039;s Knob quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received from the Council&lt;br /&gt;
*step1: Cobb&#039;s Knob map decrypted&lt;br /&gt;
*finished: Knob Goblin King defeated&lt;br /&gt;
&lt;br /&gt;
===questL06Friar===&lt;br /&gt;
&lt;br /&gt;
questL06Friar tracks the player&#039;s progress in the {{kolwiki|Deep_Fat_Friars&#039;_Gate_Quest|Friars&#039; quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received from the Council&lt;br /&gt;
*step1: details received from the Friars&lt;br /&gt;
*step2: box of birthday candles, dodecagram &amp;amp; eldritch butterknife acquired.&lt;br /&gt;
*finished: cleansed the taint&lt;br /&gt;
&lt;br /&gt;
===questL07Cyrptic===&lt;br /&gt;
questL07Cyrptic tracks the player&#039;s progress in the {{kolwiki|Undefile_the_Cyrpt_Quest|Undefile the Cyrpt quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received from the Council&lt;br /&gt;
*finished: Bonerdagon defeated&lt;br /&gt;
&lt;br /&gt;
====Evilness====&lt;br /&gt;
When evilness in each zone is 25 or less the zone boss will be the next encounter.&lt;br /&gt;
When total evilness is 0 and all 4 bosses are defeated, the Haert of the Cyrpt will be accessible.&lt;br /&gt;
* cyrptAlcoveEvilness tracks current evilness in the Alcove&lt;br /&gt;
* cyrptCrannyEvilness tracks current evilness in the Cranny&lt;br /&gt;
* cyrptNicheEvilness tracks current evilness in the Niche&lt;br /&gt;
* cyrptNookEvilness tracks current evilness in the Nook&lt;br /&gt;
* cyrptTotalEvilness tracks the sum of evilness in the Cyrpt&lt;br /&gt;
&lt;br /&gt;
===questL08Trapper===&lt;br /&gt;
&lt;br /&gt;
questL08Trapper tracks the player&#039;s progress in the {{kolwiki|Mt._McLargeHuge_Quest|Mt. McLargeHuge Quest}}.&lt;br /&gt;
&lt;br /&gt;
* unstarted: quest not yet received from the Council&lt;br /&gt;
* started: quest received from the Council&lt;br /&gt;
* step1: cheese and ore requested by the Trapper&lt;br /&gt;
* step2: cheese and ore returned to the Trapper&lt;br /&gt;
* step3: discovered the stairs up to the Mist-Shrouded Peak (via either route)&lt;br /&gt;
* step4: fought at least one yeti&lt;br /&gt;
* step5: defeated the monster at the top of the Peak&lt;br /&gt;
* finished: returned the fur to the Trapper (quest complete)&lt;br /&gt;
&lt;br /&gt;
===questL09Topping===&lt;br /&gt;
questL08Trapper tracks the player&#039;s progress in the {{kolwiki|Orc_Chasm_Quest|Orc Chasm Quest}}.&lt;br /&gt;
&lt;br /&gt;
* unstarted: quest not yet received from the Council&lt;br /&gt;
* started: quest received from the Council&lt;br /&gt;
* step1: bridge built&lt;br /&gt;
* step2: like, totally got the deets from the Highland Lord&lt;br /&gt;
* step3: lit all three signal fires&lt;br /&gt;
* finished: quest complete&lt;br /&gt;
&lt;br /&gt;
====booPeakProgress====&lt;br /&gt;
booPeakProgress tracks the hauntedness level of {{kolwiki|A-boo Peak}}. A value of 18, for instance, indicates that A-boo Peak is 18% haunted.&lt;br /&gt;
&lt;br /&gt;
Possible values: 0 - 100&lt;br /&gt;
&lt;br /&gt;
====chasmBridgeProgress====&lt;br /&gt;
chasmBridgeProgress tracks the player&#039;s progress in building a bridge across the {{kolwiki|Orc Chasm}}. A value of 10, for instance, indicates that the bridge is 10 planks long.&lt;br /&gt;
&lt;br /&gt;
Possible values: 0 - 30&lt;br /&gt;
&lt;br /&gt;
====oilPeakProgress====&lt;br /&gt;
oilPeakProgress tracks the remaining pressure at {{kolwiki|Oil Peak}}. It decreases as the player reduces the pressure in the zone.&lt;br /&gt;
&lt;br /&gt;
Possible values: 0.00 - 310.66&lt;br /&gt;
* 310.66: Pressure not yet reduced&lt;br /&gt;
* 0.00: Subquest completed&lt;br /&gt;
&lt;br /&gt;
====twinPeakProgress====&lt;br /&gt;
twinPeakProgress is a nibble bitmask with least significant bit set for the first choice and the most significant for the fourth. You can parse this with bitwise operators. Here&#039;s some code that demonstrates how to use it.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight&amp;gt;&lt;br /&gt;
void comma(buffer b, string s) {&lt;br /&gt;
	if(length(b) &amp;gt; 0)&lt;br /&gt;
		b.append(&amp;quot;, &amp;quot;);&lt;br /&gt;
	b.append(s);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
boolean mysterious(int progress, int c) { &lt;br /&gt;
	return (progress &amp;amp; (1 &amp;lt;&amp;lt; c)) == 0;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
string twinPeak() {&lt;br /&gt;
	int p = get_property(&amp;quot;twinPeakProgress&amp;quot;).to_int();&lt;br /&gt;
	buffer need;&lt;br /&gt;
	if(mysterious(p, 0)) need.comma(&amp;quot;4 Stench Resistance&amp;quot;);&lt;br /&gt;
	if(mysterious(p, 1)) need.comma(&amp;quot;+50% Item Drop&amp;quot;);&lt;br /&gt;
	if(mysterious(p, 2)) need.comma(&amp;quot;Jar of Oil&amp;quot;);&lt;br /&gt;
	// Only check for final if first three complete&lt;br /&gt;
	if(length(need) == 0) {&lt;br /&gt;
		if(mysterious(p, 3))&lt;br /&gt;
			return &amp;quot;Need +40% Initiative&amp;quot;;&lt;br /&gt;
		return &amp;quot;Twin Peak Completed&amp;quot;;&lt;br /&gt;
	}&lt;br /&gt;
	return &amp;quot;Need &amp;quot; + need;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====booPeakLit====&lt;br /&gt;
booPeakLit is a boolean which tracks if you have lit the fire at A-boo Peak or not&lt;br /&gt;
&lt;br /&gt;
====oilPeakLit====&lt;br /&gt;
oilPeakLit is a boolean which tracks if you have lit the fire at Oil Peak or not&lt;br /&gt;
&lt;br /&gt;
(note, twinPeakLit would be obsolete as it would simply track twinPeakProgress == 15)&lt;br /&gt;
&lt;br /&gt;
===questL10Garbage===&lt;br /&gt;
&lt;br /&gt;
questL10Garbage tracks the player&#039;s progress in {{kolwiki|Giant_Trash_Quest|the Giant Trash Quest}}.&lt;br /&gt;
&lt;br /&gt;
* unstarted: quest not yet received from the Council&lt;br /&gt;
* started: quest received from the Council&lt;br /&gt;
* step2: giant beanstalk grown&lt;br /&gt;
* step3 - step6: four Immateria acquired&lt;br /&gt;
* step7: S.O.C.K. acquired ({{kolwiki|The_Castle_in_the_Clouds_in_the_Sky_(Basement)|Castle Basement}} open)&lt;br /&gt;
* step8: {{kolwiki|The_Castle_in_the_Clouds_in_the_Sky_(Basement)|Castle Ground Floor}} open&lt;br /&gt;
* step9: {{kolwiki|The_Castle_in_the_Clouds_in_the_Sky_(Basement)|Castle Top Floor}} open&lt;br /&gt;
* step10: chore wheel turned&lt;br /&gt;
* finished: returned to the Council&lt;br /&gt;
&lt;br /&gt;
===questL11MacGuffin===&lt;br /&gt;
questL11MacGuffin tracks the player&#039;s progress in the {{kolwiki|Quest_for_the_Holy_MacGuffin|Holy MacGuffin quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: quest received from the Council&lt;br /&gt;
*step1: Black Market located (blackForestProgress == 5)&lt;br /&gt;
*step2: retrieved your father&#039;s MacGuffin diary&lt;br /&gt;
*finished: returned the MacGuffin to the Council&lt;br /&gt;
&lt;br /&gt;
====questL11Black====&lt;br /&gt;
questL11Black tracks the player&#039;s progress in the {{kolwiki|Quest_for_the_Holy_MacGuffin|Black Market portion of the Holy MacGuffin quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started:  quest received from the Council&lt;br /&gt;
*step1: spent at least one turn in the Black Forest&lt;br /&gt;
*step2: Black Market found&lt;br /&gt;
*step3: forged identification documents purchased&lt;br /&gt;
*finished: MacGuffin diary acquired&lt;br /&gt;
&lt;br /&gt;
=====blackForestProgress=====&lt;br /&gt;
blackForestProgress tracks the player&#039;s progress in [http://kolmafia.us/showthread.php?15995 discovering the Black Market].&lt;br /&gt;
&lt;br /&gt;
*0: no progress in exploring the Forest&lt;br /&gt;
*1: blackberry bushes located&lt;br /&gt;
*2: black cottage located&lt;br /&gt;
*3: black mineshaft located&lt;br /&gt;
*4: black church located&lt;br /&gt;
*5: black market located&lt;br /&gt;
&lt;br /&gt;
====questL11Manor====&lt;br /&gt;
questL11Manor tracks the player&#039;s progress in the {{kolwiki|Quest_for_the_Holy_MacGuffin#Spookyraven_quest_.28In_a_Manor_of_Spooking|Spookyraven Manor portion of the Holy Macguffin quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received, by reading your father&#039;s MacGuffin diary&lt;br /&gt;
*step1: Spookyraven Manor Cellar opened&lt;br /&gt;
*step2: recipe: mortar-dissolving solution read&lt;br /&gt;
*step3: Suspicious Masonry demolished&lt;br /&gt;
*finished: Lord Spookyraven defeated&lt;br /&gt;
&lt;br /&gt;
=====spookyravenRecipeUsed=====&lt;br /&gt;
spookyravenRecipeUsed tracks whether and how the player has read recipe: mortar-dissolving solution&lt;br /&gt;
&lt;br /&gt;
*none: recipe not yet read&lt;br /&gt;
*with_glasses: recipe read with Lord Spookyraven&#039;s spectacles&lt;br /&gt;
*no_glasses: recipe read without the spectacles&lt;br /&gt;
&lt;br /&gt;
====questL11Desert====&lt;br /&gt;
Explore the Arid, Extra-Dry Desert to find the pyramid mentioned in your father&#039;s journal.&lt;br /&gt;
&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: quest started by reading your father&#039;s MacGuffin diary&lt;br /&gt;
*finished: discovered the Small Pyramid&lt;br /&gt;
&lt;br /&gt;
=====desertExploration=====&lt;br /&gt;
*0: haven&#039;t yet started exploring the Desert&lt;br /&gt;
*1-99: Desert exploration in progress&lt;br /&gt;
*100: Desert fully explored&lt;br /&gt;
&lt;br /&gt;
====questL11Pyramid====&lt;br /&gt;
questL11Pyramid tracks the player&#039;s progress in the {{kolwiki|Quest_for_the_Holy_MacGuffin#A_Small_Pyramid|Pyramid portion of the Holy Macguffin quest}}.&lt;br /&gt;
&lt;br /&gt;
* unstarted: Ancient Buried Pyramid not yet discovered&lt;br /&gt;
* started: Ancient Buried Pyramid discovered&lt;br /&gt;
* step1: Middle Chamber opened&lt;br /&gt;
* step2: The Lower Chambers opened&lt;br /&gt;
* step3: Control Room opened&lt;br /&gt;
* finished: MacGuffin retrieved (quest complete)&lt;br /&gt;
&lt;br /&gt;
=====gnasirProgress=====&lt;br /&gt;
gnasirProgress is a nibble bitmask with one bit for each possible way you can advance {{kolwiki|Quest_for_the_Holy_MacGuffin|Gnasir&#039;s quest}}. You can parse this with bitwise operators. Here&#039;s some code that demonstrates how to use it.&lt;br /&gt;
&amp;lt;syntaxhighlight&amp;gt;&lt;br /&gt;
int gnasirProgress = get_property(&amp;quot;gnasirProgress&amp;quot;).to_int();&lt;br /&gt;
buffer gnasir;&lt;br /&gt;
if((gnasirProgress &amp;amp; 1) == 0)&lt;br /&gt;
	print(&amp;quot;Gnasir wants a stone rose&amp;quot;);&lt;br /&gt;
if((gnasirProgress &amp;amp; 2) == 0)&lt;br /&gt;
	print(&amp;quot;Gnasir wants a can of black paint&amp;quot;);&lt;br /&gt;
if((gnasirProgress &amp;amp; 4) == 0)&lt;br /&gt;
	print(&amp;quot;Gnasir wants a killing jar&amp;quot;);&lt;br /&gt;
if((gnasirProgress &amp;amp; 8) == 0)&lt;br /&gt;
	print(&amp;quot;Gnasir wants a 15 worm-riding manual page&amp;quot;);&lt;br /&gt;
if((gnasirProgress &amp;amp; 16) == 0)&lt;br /&gt;
	print(&amp;quot;You need to use a drum machine to ride the worm&amp;quot;);&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====questL11Ron====&lt;br /&gt;
Ron Copperhead&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: quest received, by reading your father&#039;s MacGuffin diary&lt;br /&gt;
*step1: received the intro adventure at A Mob of Zeppelin Protestors&lt;br /&gt;
*step2: cleared all 80 protestors and opened access to The Red Zeppelin&lt;br /&gt;
*step3: received the intro adventure at The Red Zeppelin&lt;br /&gt;
*step4: Found Ron &amp;quot;The Weasel&amp;quot; Copperhead&lt;br /&gt;
*finished: defeated Ron &amp;quot;The Weasel&amp;quot; Copperhead and received the Copperhead Charm (rampant)&lt;br /&gt;
&lt;br /&gt;
=====zeppelinProtestors=====&lt;br /&gt;
Tracks protesters removed&lt;br /&gt;
&lt;br /&gt;
====questL11Shen====&lt;br /&gt;
Shen Copperhead&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received from the Council&lt;br /&gt;
*started: quest received, by reading your father&#039;s MacGuffin diary&lt;br /&gt;
*step1: spoke to Shen Copperhead in the Copperhead club and received first item request (and poisoning)&lt;br /&gt;
*step2: acquired first item&lt;br /&gt;
*step3: returned first item, received second item request (and poisoning)&lt;br /&gt;
*step4: acquired second item&lt;br /&gt;
*step5: returned second item, received third item request (and poisoning)&lt;br /&gt;
*step6: acquired third item&lt;br /&gt;
*step7: returned third item&lt;br /&gt;
*finished: received the Copperhead Charm&lt;br /&gt;
&lt;br /&gt;
====questL11Palindome====&lt;br /&gt;
questL11Palindome tracks the player&#039;s progress in the {{kolwiki|Quest_for_the_Holy_MacGuffin#The_Palindome|Palindome portion of the Never Odd or Even quest}}.&lt;br /&gt;
&lt;br /&gt;
* unstarted: quest not yet received from the Council&lt;br /&gt;
* started: have the Talisman o&#039; Namsilat&lt;br /&gt;
* step1: arranged the photos in Dr. Awkward&#039;s office&lt;br /&gt;
* step2: read 2 Love Me, Vol. 2&lt;br /&gt;
* step3: met Mr. Alarm in his office (received the wet stunt nut stew quest)&lt;br /&gt;
* step4: cooked wet stunt nut stew&lt;br /&gt;
* step5: returned the stew to Mr. Alarm&lt;br /&gt;
* finished: defeated Dr. Awkward&lt;br /&gt;
&lt;br /&gt;
====questL11Worship====&lt;br /&gt;
questL11Worship tracks progress through the {{kolwiki|Quest_for_the_Holy_MacGuffin#Hidden_Temple_quest_.28Gotta_Worship_Them_All.29|Hidden Temple portion of the Quest for the Holy MacGuffin}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received, by reading your father&#039;s MacGuffin diary&lt;br /&gt;
*step1: (Hidden Temple opened?)&lt;br /&gt;
*step2: correct button pressed in the Temple&lt;br /&gt;
*step3: Hidden City uncovered&lt;br /&gt;
*step4: four stone triangles acquired&lt;br /&gt;
*finished: ancient amulet acquired from the Protector Spectre&lt;br /&gt;
&lt;br /&gt;
=====questL11Business=====&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: Hidden Office Building opened&lt;br /&gt;
*finished: crackling stone sphere acquired&lt;br /&gt;
&lt;br /&gt;
======hiddenOfficeProgress======&lt;br /&gt;
hiddenOfficeProgress tracks progress through the {{kolwiki|Hidden Office Building}} during the Quest for the Holy MacGuffin.&lt;br /&gt;
&lt;br /&gt;
Possible values: 0, 1, 6 - 8&lt;br /&gt;
* 0: Haven&#039;t opened the Hidden Office Building&lt;br /&gt;
* 1: Hidden Office Building is open for adventuring&lt;br /&gt;
* 6: Encountered the Protector Spirit&lt;br /&gt;
* 7: Found the stone sphere&lt;br /&gt;
* 8: Placed the stone sphere in the relevant overgrown shrine&lt;br /&gt;
&lt;br /&gt;
=====questL11Curses=====&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: Hidden Apartment Building opened&lt;br /&gt;
*finished: moss-covered stone sphere acquired&lt;br /&gt;
&lt;br /&gt;
======hiddenApartmentProgress======&lt;br /&gt;
hiddenApartmentProgress tracks progress through the {{kolwiki|Hidden Apartment Building}} during the Quest for the Holy MacGuffin.&lt;br /&gt;
&lt;br /&gt;
Possible values: 0, 1, 6 - 8&lt;br /&gt;
* 0: Haven&#039;t opened the Hidden Apartment Building&lt;br /&gt;
* 1: Hidden Apartment Building is open for adventuring&lt;br /&gt;
* 6: Encountered the Protector Spirit&lt;br /&gt;
* 7: Found the stone sphere&lt;br /&gt;
* 8: Placed the stone sphere in the relevant overgrown shrine&lt;br /&gt;
&lt;br /&gt;
=====questL11Doctor=====&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: Hidden Hospital opened&lt;br /&gt;
*finished: dripping stone sphere acquired&lt;br /&gt;
&lt;br /&gt;
======hiddenHospitalProgress======&lt;br /&gt;
hiddenHospitalProgress tracks progress through the {{kolwiki|Hidden Hospital}} during the Quest for the Holy MacGuffin.&lt;br /&gt;
&lt;br /&gt;
Possible values: 0 - 8&lt;br /&gt;
* 0: Haven&#039;t opened the Hidden Hospital&lt;br /&gt;
* 1: Hidden Hospital is open for adventuring, but haven&#039;t bowled.&lt;br /&gt;
* 6: Encountered the Protector Spirit&lt;br /&gt;
* 7: Found the stone sphere&lt;br /&gt;
* 8: Placed the stone sphere in the relevant overgrown shrine&lt;br /&gt;
&lt;br /&gt;
=====questL11Spare=====&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: Hidden Bowling Alley opened&lt;br /&gt;
*finished: scorched stone sphere acquired&lt;br /&gt;
&lt;br /&gt;
======hiddenBowlingAlleyProgress======&lt;br /&gt;
hiddenBowlingAlleyProgress tracks progress through the {{kolwiki|Hidden Bowling Alley}} during the Quest for the Holy MacGuffin.&lt;br /&gt;
&lt;br /&gt;
* 0: Haven&#039;t opened the Hidden Bowling Alley&lt;br /&gt;
* 1: Hidden Bowling Alley is open for adventuring&lt;br /&gt;
* 2-5: Number of times bowled is 1 less than hiddenBowlingAlleyProgress &lt;br /&gt;
* 6: Encountered the Protector Spirit&lt;br /&gt;
* 7: Found the stone sphere&lt;br /&gt;
* 8: Placed the stone sphere in the relevant overgrown shrine&lt;br /&gt;
&lt;br /&gt;
=====hiddenTavernUnlock=====&lt;br /&gt;
hiddenTavernUnlock tracks whether or not you have unlocked the {{kolwiki|Hidden Tavern}} during the Quest for the Holy MacGuffin.&lt;br /&gt;
&lt;br /&gt;
* When the value is equal to your number of ascensions, the Tavern is unlocked&lt;br /&gt;
* When the value is any other number, the Tavern is locked&lt;br /&gt;
&lt;br /&gt;
===questL12War===&lt;br /&gt;
questL12War tracks progress during the {{kolwiki|Mysterious Island Quest}}.&lt;br /&gt;
&lt;br /&gt;
* unstarted: quest not yet received from the Council&lt;br /&gt;
* started: quest received&lt;br /&gt;
* step1: War started&lt;br /&gt;
* finished: War ended; boss defeated (quest complete)&lt;br /&gt;
&lt;br /&gt;
====warProgress====&lt;br /&gt;
Possible values for the progress of the {{kolwiki|Mysterious Island Quest|Isle War}}:&lt;br /&gt;
*unstarted: We can still visit the small version of the Mysterious Island&lt;br /&gt;
*started: The war is in progress&lt;br /&gt;
*finished: The final boss or bosses were defeated&lt;br /&gt;
&lt;br /&gt;
====fratboysDefeated====&lt;br /&gt;
counts how many frat warriors have been killed on the battlefield (starts at 0).&lt;br /&gt;
&lt;br /&gt;
====hippiesDefeated====&lt;br /&gt;
counts how many war hippies have been killed on the battlefield (starts at 0).&lt;br /&gt;
&lt;br /&gt;
====sideDefeated====&lt;br /&gt;
Which side of the {{kolwiki|Mysterious Island Quest|Isle War}} was defeated during the Level 12 quest. &lt;br /&gt;
&lt;br /&gt;
Possible values:&lt;br /&gt;
*neither&lt;br /&gt;
*hippies&lt;br /&gt;
*fratboys&lt;br /&gt;
*both&lt;br /&gt;
&lt;br /&gt;
====sidequestArenaCompleted====&lt;br /&gt;
Tracks the status of {{kolwiki|The Mysterious Island Arena}} sidequest&lt;br /&gt;
&lt;br /&gt;
Possible values:&lt;br /&gt;
*none&lt;br /&gt;
*fratboy&lt;br /&gt;
*hippy&lt;br /&gt;
&lt;br /&gt;
====sidequestFarmCompleted====&lt;br /&gt;
Tracks the status of {{kolwiki|McMillicancuddy&#039;s Farm}} sidequest&lt;br /&gt;
&lt;br /&gt;
Possible values:&lt;br /&gt;
*none&lt;br /&gt;
*fratboy&lt;br /&gt;
*hippy&lt;br /&gt;
&lt;br /&gt;
====sidequestJunkyardCompleted====&lt;br /&gt;
Tracks the status of {{kolwiki|The Junkyard}} sidequest&lt;br /&gt;
&lt;br /&gt;
Possible values:&lt;br /&gt;
*none&lt;br /&gt;
*fratboy&lt;br /&gt;
*hippy&lt;br /&gt;
&lt;br /&gt;
====sidequestLighthouseCompleted====&lt;br /&gt;
Tracks the status of {{kolwiki|The Lighthouse}} sidequest&lt;br /&gt;
&lt;br /&gt;
Possible values:&lt;br /&gt;
*none&lt;br /&gt;
*fratboy&lt;br /&gt;
*hippy&lt;br /&gt;
&lt;br /&gt;
====sidequestNunsCompleted====&lt;br /&gt;
Tracks the status of {{kolwiki|Our Lady of Perpetual Indecision}} sidequest&lt;br /&gt;
&lt;br /&gt;
Possible values:&lt;br /&gt;
*none&lt;br /&gt;
*fratboy&lt;br /&gt;
*hippy&lt;br /&gt;
&lt;br /&gt;
====sidequestOrchardCompleted====&lt;br /&gt;
Tracks the status of {{kolwiki|The Organic Orchard}} sidequest&lt;br /&gt;
&lt;br /&gt;
Possible values:&lt;br /&gt;
*none&lt;br /&gt;
*fratboy&lt;br /&gt;
*hippy&lt;br /&gt;
&lt;br /&gt;
===questL12HippyFrat===&lt;br /&gt;
questL12War tracks progress during the {{kolwiki|Mysterious Island Quest}} in the {{kolwiki|Kingdom of Exploathing}} path&lt;br /&gt;
&lt;br /&gt;
* unstarted: quest not yet received from the Council&lt;br /&gt;
* started: quest received&lt;br /&gt;
* step1: War started&lt;br /&gt;
* finished: War ended; boss defeated (quest complete)&lt;br /&gt;
&lt;br /&gt;
===questL13Final===&lt;br /&gt;
Progress for the {{kolwiki|Naughty Sorceress Quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received from the Council&lt;br /&gt;
*started: quest received; Registration Desk open (???)&lt;br /&gt;
*step1: spent at least one turn fighting competitors&lt;br /&gt;
*step2: competitors defeated&lt;br /&gt;
*step3: sash acquired&lt;br /&gt;
*step4: met Frank&lt;br /&gt;
*step5: Hedge Maze cleared&lt;br /&gt;
*step6: Tower Door locks unlocked&lt;br /&gt;
*step7: wall of skin defeated&lt;br /&gt;
*step8: wall of meat defeated&lt;br /&gt;
*step9: wall of bones defeated&lt;br /&gt;
*step10: antique mirror handled&lt;br /&gt;
*step11: shadow class defeated&lt;br /&gt;
*step12: Naughty Sorceress defeated&lt;br /&gt;
*step13: Council informed&lt;br /&gt;
*finished: prism smashed; King Ralph freed; Astral Gash accessible&lt;br /&gt;
&lt;br /&gt;
===questL13Warehouse===&lt;br /&gt;
the final quest if you ascend as {{kolwiki|Actually Ed the Undying}} where you adventure in {{kolwiki|The Secret Council Warehouse}}.&lt;br /&gt;
*unstarted&lt;br /&gt;
*started&lt;br /&gt;
*finished&lt;br /&gt;
Current progress in the warehouse is tracked in warehouseProgress.&lt;br /&gt;
&lt;br /&gt;
==Guild Quests==&lt;br /&gt;
===questG01Meatcar===&lt;br /&gt;
&lt;br /&gt;
===questG02Whitecastle===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questG03Ego===&lt;br /&gt;
=started&lt;br /&gt;
===questG04Nemesis===&lt;br /&gt;
questG04Nemesis tracks the player&#039;s progress in the {{kolwiki|Me and My Nemesis|Nemesis quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received from the guild&lt;br /&gt;
*step1: Tomb of the Unknown [Your Class] Here encountered at The Unquiet Garves&lt;br /&gt;
*step2: Defeated the Unknown [Your Class]&lt;br /&gt;
*step3: Post combat choice encountered after defeating the Unknown [Your Class]&lt;br /&gt;
*step4: Epic Weapon acquired&lt;br /&gt;
*step5: &amp;quot;fun&amp;quot; house opened&lt;br /&gt;
*step6: Defeated The Clownlord Beelzebozo&lt;br /&gt;
*step7: Guild instructs you to make your Legendary Epic Weapon&lt;br /&gt;
*step8: Meatsmithed your Legendary Epic Weapon&lt;br /&gt;
*step9: Returned to Guild with Legendary Epic Weapon&lt;br /&gt;
*step10: Talked to Guild and opened the Dark Cave&lt;br /&gt;
*step11: Encountered the Dark Cave entrance at least once&lt;br /&gt;
*step12: Passed the Dark Cave entrance&lt;br /&gt;
*step13: ?&lt;br /&gt;
*step14: 6 fizzing spore pods acquired&lt;br /&gt;
*step15: Impassable rubble cleared and ready for final (?) showdown&lt;br /&gt;
*step16: Defeated Nemesis (1st battle, drops Legendary Regalia Hat)&lt;br /&gt;
*step17: Returned to Guild with Legendary Regalia Hat&lt;br /&gt;
*step18: ?&lt;br /&gt;
*step19: Defeated 1st assassin - menacing thug (wanderer)&lt;br /&gt;
*step20: ?&lt;br /&gt;
*step21: Defeated 2nd assassin - Mob Penguin hitman (wanderer)&lt;br /&gt;
*step22: ?&lt;br /&gt;
*step23: Defeated 3rd assassin - class specific (wanderer)&lt;br /&gt;
*step24: ?&lt;br /&gt;
*step25: Defeated 4th assassin - class specific (wanderer) &lt;br /&gt;
*step26: Spoke to Guild after defeating 4th assassin/acquiring secret tropical island volcano lair map&lt;br /&gt;
*step27: Defeated Nemesis (2nd battle, drops Legendary Regalia Pants)&lt;br /&gt;
*step28: Started fight with Nemesis after Volcano maze (3rd battle)&lt;br /&gt;
*step29: Defeated 1st form of Nemesis (3rd battle)&lt;br /&gt;
*finished: Defeated 2nd form of Nemesis (3rd battle, drops Legendary Regalia Accessory)&lt;br /&gt;
&lt;br /&gt;
===questG05Dark===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questG06Delivery===&lt;br /&gt;
=unstarted&lt;br /&gt;
&lt;br /&gt;
==Miscellaneous Quests==&lt;br /&gt;
===questM01Untinker===&lt;br /&gt;
Returning the screwdriver to the Untinker.&lt;br /&gt;
&lt;br /&gt;
* unstarted&lt;br /&gt;
* step1: collected the rusty screwdriver&lt;br /&gt;
* finished: screwdriver returned&lt;br /&gt;
&lt;br /&gt;
===questM02Artist===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questM03Bugbear===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questM04Galaktic===&lt;br /&gt;
=started&lt;br /&gt;
===questM05Toot===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questM06Gourd===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questM07Hammer===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questM08Baker===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questM09Rocks===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questM10Azazel===&lt;br /&gt;
questM10Azazel tracks the player&#039;s progress in the {{kolwiki|Azazel,_Ma_Belle|Azazel, Ma Belle quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: received the quest, from Azazel or the stranger in Moaning Panda Square&lt;br /&gt;
*finished: returned Azazel&#039;s talismans to him&lt;br /&gt;
&lt;br /&gt;
===questM11Postal===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questM12Pirate===&lt;br /&gt;
questM12Pirate tracks the player&#039;s progress in the {{kolwiki|Cap&#039;m Caronch Quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: Cap&#039;m Caronch&#039;s Map found&lt;br /&gt;
*step1: acquired Cap&#039;m Caronch&#039;s nasty booty from the booty crab&lt;br /&gt;
*step2: received the Orcish Frat House blueprints&lt;br /&gt;
*step3: retrieved Cap&#039;m Caronch&#039;s dentures from the Frat House&lt;br /&gt;
*step4: returned the dentures to the Cap&#039;m and accepted the beer pong challenge&lt;br /&gt;
*step5: won a game of beer pong&lt;br /&gt;
*step6: acquired pirate fledges&lt;br /&gt;
*finished: unlocked Belowdecks&lt;br /&gt;
&lt;br /&gt;
===questM13Escape===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questM14Bounty===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questM15Lol===&lt;br /&gt;
questM15Lol tracks the player&#039;s progress in {{kolwiki|A Quest, LOL}}. (No, but seriously.)&lt;br /&gt;
&lt;br /&gt;
*unstarted:&lt;br /&gt;
*finished:&lt;br /&gt;
&lt;br /&gt;
===questM16Temple===&lt;br /&gt;
quest to find the Hidden Temple&lt;br /&gt;
&lt;br /&gt;
*unstarted:&lt;br /&gt;
*finished:&lt;br /&gt;
&lt;br /&gt;
===questM17Babies===&lt;br /&gt;
Lady Spookyraven&#039;s Babies&lt;br /&gt;
&lt;br /&gt;
===questM18Swamp===&lt;br /&gt;
Marty and His Swamp Problems&lt;br /&gt;
&lt;br /&gt;
===questM19Hippy===&lt;br /&gt;
Hippy Give a Hippy a Boat...&lt;br /&gt;
&lt;br /&gt;
===questM20Necklace===&lt;br /&gt;
questM20Necklace tracks the player&#039;s progress in {{kolwiki|Spookyraven_Manor_Quest#Lady_Spookyraven.27s_Necklace_.28First_Floor.29|retrieving Lady Spookyraven&#039;s necklace}}.&lt;br /&gt;
&lt;br /&gt;
* unstarted: quest not yet received&lt;br /&gt;
* started: quest received from the telegram&lt;br /&gt;
* step1: billiards room key found&lt;br /&gt;
* step2: Pool Cue acquired&lt;br /&gt;
* step3: library key found&lt;br /&gt;
* step4: necklace found&lt;br /&gt;
* finished: necklace returned to Lady Spookyraven (quest complete)&lt;br /&gt;
&lt;br /&gt;
===questM21Dance===&lt;br /&gt;
questM21Dance tracks the player&#039;s progress in the Second Floor portion of the {{kolwiki|Lady_spookyraven&#039;s_dance|Spookyraven Manor quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: quest received, from Lady Spookyraven&#039;s ghostly telegram&lt;br /&gt;
*step1: spoken to Lady Spookyraven on the Second Floor&lt;br /&gt;
*step2: acquired Lady Spookyraven&#039;s dancing things&lt;br /&gt;
*step3: returned Lady Spookyraven&#039;s dancing things to her&lt;br /&gt;
*finished: danced with Lady Spookyraven in the Ballroom&lt;br /&gt;
&lt;br /&gt;
===questM22Shirt===&lt;br /&gt;
The Shirt Off His Lack of Back&lt;br /&gt;
&lt;br /&gt;
===questM23Meatsmith===&lt;br /&gt;
Helping Make Ends Meat&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* step1 - Got a {{kolwiki|check to the Meatsmith}}.&lt;br /&gt;
* finished - Returned {{kolwiki|check to the Meatsmith}} to the Meatsmith.&lt;br /&gt;
&lt;br /&gt;
===questM24Doc===&lt;br /&gt;
What&#039;s Up, Doc?&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* step1 - Collected the Herbs and need to return them to Doc Galaktik&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
==Sea Quests==&lt;br /&gt;
===questS01OldGuy===&lt;br /&gt;
=finished&lt;br /&gt;
===questS02Monkee===&lt;br /&gt;
=unstarted&lt;br /&gt;
&lt;br /&gt;
When Mom is rescued the Quest is completed &lt;br /&gt;
&lt;br /&gt;
=finished&lt;br /&gt;
&lt;br /&gt;
====merkinQuestPath====&lt;br /&gt;
merkinQuestPath indicates which path the player has chosen in the {{kolwiki|Mer-Kin Deepcity}}, during the {{kolwiki|Sea Monkees Quest}}.&lt;br /&gt;
&lt;br /&gt;
Possible values:&lt;br /&gt;
* none: Player has not yet chosen a path&lt;br /&gt;
* gladiator: Player will fight Yog-Urt, Elder Goddess of Hatred&lt;br /&gt;
* scholar: Player will fight Shub-Jigguwatt, Elder God of Violence&lt;br /&gt;
* done: Player has completed the Sea Monkees Quest&lt;br /&gt;
&lt;br /&gt;
====skateParkStatus====&lt;br /&gt;
skateParkStatus tracks the player&#039;s progress in the {{kolwiki|war for the Skate Park}}.&lt;br /&gt;
&lt;br /&gt;
*war: the war is ongoing&lt;br /&gt;
*ice: the roller skates have been chased out&lt;br /&gt;
*roller: the ice skates have been chased out&lt;br /&gt;
*peace: both sides have been chased out&lt;br /&gt;
&lt;br /&gt;
==Quests Granted by Items==&lt;br /&gt;
===questI01Scapegoat===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questI02Beat===&lt;br /&gt;
=unstarted&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Quests Granted by Familiars==&lt;br /&gt;
===questF01Primordial===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questF02Hyboria===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questF03Future===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questF04Elves===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questF05Clancy===&lt;br /&gt;
=unstarted&lt;br /&gt;
&lt;br /&gt;
==Bug Bear Invasion Properties==&lt;br /&gt;
&lt;br /&gt;
===mothershipProgress===&lt;br /&gt;
mothershipProgress tracks progress of level completion in the {{kolwiki|Bugbear Mothership}}. It goes from 0 to 3 as that level is cleared.&lt;br /&gt;
&lt;br /&gt;
Possible values: 0-3&lt;br /&gt;
&lt;br /&gt;
===statusEngineering===&lt;br /&gt;
===statusGalley===&lt;br /&gt;
===statusMedbay===&lt;br /&gt;
===statusMorgue===&lt;br /&gt;
===statusNavigation===&lt;br /&gt;
===statusScienceLab===&lt;br /&gt;
===statusSonar===&lt;br /&gt;
===statusSpecialOps===&lt;br /&gt;
===statusWasteProcessing===&lt;br /&gt;
All of these work the same way. &lt;br /&gt;
*0-x (integers): insufficient bodata collected)&lt;br /&gt;
*open: all biodata collected and zone accessible&lt;br /&gt;
* unlocked: biodata collected but zone not yet accessible&lt;br /&gt;
* cleared: zone has been cleared&lt;br /&gt;
&lt;br /&gt;
==Quests from the Elemental Planes==&lt;br /&gt;
===Spring Break Beach===&lt;br /&gt;
The Elemental Plane of Sleaze&lt;br /&gt;
=====questESlMushStash=====&lt;br /&gt;
Jimmy&#039;s Quest to collect receipts from the Fun-Guy Mansion.&lt;br /&gt;
=====questESlAudit=====&lt;br /&gt;
Taco Dan&#039;s Quest to collect receipts from the Fun-Guy Mansion.&lt;br /&gt;
=====questESlBacteria=====&lt;br /&gt;
Broden&#039;s Quest to collect bacteria from the Fun-Guy Mansion.&lt;br /&gt;
=====questESlCheeseburger=====&lt;br /&gt;
Jimmy&#039;s Quest to collect ingredients from the Sloppy Seconds Diner.&lt;br /&gt;
=====questESlSprinkles=====&lt;br /&gt;
Taco Dan&#039;s Quest to collect ingredients from the Sloppy Seconds Diner.&lt;br /&gt;
=====questESlCocktail=====&lt;br /&gt;
Broden&#039;s Quest to collect sprinkles from the Sloppy Seconds Diner.&lt;br /&gt;
=====questESlSalt=====&lt;br /&gt;
Jimmy&#039;s Quest to collect salt from the Sunken Yacht.&lt;br /&gt;
=====questESlFish=====&lt;br /&gt;
Taco Dan&#039;s Quest to collect fish meat from the Sunken Yacht.&lt;br /&gt;
=====questESlDebt=====&lt;br /&gt;
Broden&#039;s Quest to collect broupons from the Sunken Yacht.&lt;br /&gt;
&lt;br /&gt;
===Conspiracy Island===&lt;br /&gt;
The Elemental Plane of Spooky&lt;br /&gt;
=====questESpOutOfOrder=====&lt;br /&gt;
Deep Dark Jungle - Out of Order&lt;br /&gt;
=====questESpJunglePun=====&lt;br /&gt;
Deep Dark Jungle - Pungle in the Jungle&lt;br /&gt;
=====questESpSmokes=====&lt;br /&gt;
Deep Dark Jungle - Everyone&#039;s Running Out of Smokes&lt;br /&gt;
=====questESpClipper=====&lt;br /&gt;
Mansion of Dr. Weirdeaux - The Big Clipper&lt;br /&gt;
=====questESpSerum=====&lt;br /&gt;
Mansion of Dr. Weirdeaux - Serum Sortie&lt;br /&gt;
=====questESpEVE=====&lt;br /&gt;
Secret Government Laboratory - Choking on the Rind&lt;br /&gt;
=====questESpFakeMedium=====&lt;br /&gt;
Secret Government Laboratory - Fake Medium at Large&lt;br /&gt;
=====questESpGore=====&lt;br /&gt;
Secret Government Laboratory - Gore Tipper&lt;br /&gt;
&lt;br /&gt;
{{PropertyNav}}&lt;/div&gt;</summary>
		<author><name>Malibu Stacey</name></author>
	</entry>
	<entry>
		<id>https://wiki.kolmafia.us/index.php?title=Quest_Tracking_Preferences&amp;diff=8250</id>
		<title>Quest Tracking Preferences</title>
		<link rel="alternate" type="text/html" href="https://wiki.kolmafia.us/index.php?title=Quest_Tracking_Preferences&amp;diff=8250"/>
		<updated>2020-04-23T22:49:28Z</updated>

		<summary type="html">&lt;p&gt;Malibu Stacey: /* Council Quests */ add recent changes and the cyrpt zone properties&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{TOCright}}&lt;br /&gt;
KoLMafia internally tracks progress for a number of quests. These are stored as preferences in settings\[charactername]_prefs.&lt;br /&gt;
&lt;br /&gt;
==Council Quests==&lt;br /&gt;
===questL02Larva===&lt;br /&gt;
questL02Larva tracks the player&#039;s progress in the {{kolwiki|Spooky_Forest_Quest|Spooky Forest quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received from the Council&lt;br /&gt;
*step1: mosquito larva acquired&lt;br /&gt;
*finished: mosquito larva returned to the Council&lt;br /&gt;
&lt;br /&gt;
===questL03Rat===&lt;br /&gt;
questL03Rat tracks the player&#039;s progress in the {{kolwiki|Typical_Tavern_Quest|Typical Tavern quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received from the Council&lt;br /&gt;
*step1: spoke to Bart Ender in the Typical Tavern&lt;br /&gt;
*step2: turned off the Rat Faucet&lt;br /&gt;
*finished: told Bart about the Faucet&lt;br /&gt;
&lt;br /&gt;
===questL04Bat===&lt;br /&gt;
questL04Bat tracks the player&#039;s progress in the {{kolwiki|Boss_Bat_Quest|Boss Bat quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received from the Council&lt;br /&gt;
*step1-step3: demolished 1-3 walls in the Bat Hole&lt;br /&gt;
*step4: Boss Bat defeated&lt;br /&gt;
*finished: returned to the Council to report success&lt;br /&gt;
&lt;br /&gt;
===questL05Goblin===&lt;br /&gt;
questL05Goblin tracks the player&#039;s progress in the {{kolwiki|The_King_of_Cobb&#039;s_Knob_Quest|The King of Cobb&#039;s Knob quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received from the Council&lt;br /&gt;
*step1: Cobb&#039;s Knob map decrypted&lt;br /&gt;
*finished: Knob Goblin King defeated&lt;br /&gt;
&lt;br /&gt;
===questL06Friar===&lt;br /&gt;
&lt;br /&gt;
questL06Friar tracks the player&#039;s progress in the {{kolwiki|Deep_Fat_Friars&#039;_Gate_Quest|Friars&#039; quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received from the Council&lt;br /&gt;
*step1: details received from the Friars&lt;br /&gt;
*step2: box of birthday candles, dodecagram &amp;amp; eldritch butterknife acquired.&lt;br /&gt;
*finished: cleansed the taint&lt;br /&gt;
&lt;br /&gt;
===questL07Cyrptic===&lt;br /&gt;
questL07Cyrptic tracks the player&#039;s progress in the {{kolwiki|Undefile_the_Cyrpt_Quest|Undefile the Cyrpt quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received from the Council&lt;br /&gt;
*finished: Bonerdagon defeated&lt;br /&gt;
&lt;br /&gt;
====Evilness====&lt;br /&gt;
When evilness in each zone is 25 or less the zone boss will be the next encounter.&lt;br /&gt;
When total evilness is 0 and all 4 bosses are defeated, the Haert of the Cyrpt will be accessible.&lt;br /&gt;
* cyrptAlcoveEvilness tracks current evilness in the Alcove&lt;br /&gt;
* cyrptCrannyEvilness tracks current evilness in the Cranny&lt;br /&gt;
* cyrptNicheEvilness tracks current evilness in the Niche&lt;br /&gt;
* cyrptNookEvilness tracks current evilness in the Nook&lt;br /&gt;
* cyrptTotalEvilness tracks the sum of evilness in the Cyrpt&lt;br /&gt;
&lt;br /&gt;
===questL08Trapper===&lt;br /&gt;
&lt;br /&gt;
questL08Trapper tracks the player&#039;s progress in the {{kolwiki|Mt._McLargeHuge_Quest|Mt. McLargeHuge Quest}}.&lt;br /&gt;
&lt;br /&gt;
* unstarted: quest not yet received from the Council&lt;br /&gt;
* started: quest received from the Council&lt;br /&gt;
* step1: cheese and ore requested by the Trapper&lt;br /&gt;
* step2: cheese and ore returned to the Trapper&lt;br /&gt;
* step3: discovered the stairs up to the Mist-Shrouded Peak (via either route)&lt;br /&gt;
* step4: fought at least one yeti&lt;br /&gt;
* step5: defeated the monster at the top of the Peak&lt;br /&gt;
* finished: returned the fur to the Trapper (quest complete)&lt;br /&gt;
&lt;br /&gt;
===questL09Topping===&lt;br /&gt;
questL08Trapper tracks the player&#039;s progress in the {{kolwiki|Orc_Chasm_Quest|Orc Chasm Quest}}.&lt;br /&gt;
&lt;br /&gt;
* unstarted: quest not yet received from the Council&lt;br /&gt;
* started: quest received from the Council&lt;br /&gt;
* step1: bridge built&lt;br /&gt;
* step2: like, totally got the deets from the Highland Lord&lt;br /&gt;
* step3: lit all three signal fires&lt;br /&gt;
* finished: quest complete&lt;br /&gt;
&lt;br /&gt;
====booPeakProgress====&lt;br /&gt;
booPeakProgress tracks the hauntedness level of {{kolwiki|A-boo Peak}}. A value of 18, for instance, indicates that A-boo Peak is 18% haunted.&lt;br /&gt;
&lt;br /&gt;
Possible values: 0 - 100&lt;br /&gt;
&lt;br /&gt;
====chasmBridgeProgress====&lt;br /&gt;
chasmBridgeProgress tracks the player&#039;s progress in building a bridge across the {{kolwiki|Orc Chasm}}. A value of 10, for instance, indicates that the bridge is 10 planks long.&lt;br /&gt;
&lt;br /&gt;
Possible values: 0 - 30&lt;br /&gt;
&lt;br /&gt;
====oilPeakProgress====&lt;br /&gt;
oilPeakProgress tracks the remaining pressure at {{kolwiki|Oil Peak}}. It decreases as the player reduces the pressure in the zone.&lt;br /&gt;
&lt;br /&gt;
Possible values: 0.00 - 310.66&lt;br /&gt;
* 310.66: Pressure not yet reduced&lt;br /&gt;
* 0.00: Subquest completed&lt;br /&gt;
&lt;br /&gt;
====twinPeakProgress====&lt;br /&gt;
twinPeakProgress is a nibble bitmask with least significant bit set for the first choice and the most significant for the fourth. You can parse this with bitwise operators. Here&#039;s some code that demonstrates how to use it.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight&amp;gt;&lt;br /&gt;
void comma(buffer b, string s) {&lt;br /&gt;
	if(length(b) &amp;gt; 0)&lt;br /&gt;
		b.append(&amp;quot;, &amp;quot;);&lt;br /&gt;
	b.append(s);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
boolean mysterious(int progress, int c) { &lt;br /&gt;
	return (progress &amp;amp; (1 &amp;lt;&amp;lt; c)) == 0;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
string twinPeak() {&lt;br /&gt;
	int p = get_property(&amp;quot;twinPeakProgress&amp;quot;).to_int();&lt;br /&gt;
	buffer need;&lt;br /&gt;
	if(mysterious(p, 0)) need.comma(&amp;quot;4 Stench Resistance&amp;quot;);&lt;br /&gt;
	if(mysterious(p, 1)) need.comma(&amp;quot;+50% Item Drop&amp;quot;);&lt;br /&gt;
	if(mysterious(p, 2)) need.comma(&amp;quot;Jar of Oil&amp;quot;);&lt;br /&gt;
	// Only check for final if first three complete&lt;br /&gt;
	if(length(need) == 0) {&lt;br /&gt;
		if(mysterious(p, 3))&lt;br /&gt;
			return &amp;quot;Need +40% Initiative&amp;quot;;&lt;br /&gt;
		return &amp;quot;Twin Peak Completed&amp;quot;;&lt;br /&gt;
	}&lt;br /&gt;
	return &amp;quot;Need &amp;quot; + need;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====booPeakLit====&lt;br /&gt;
booPeakLit is a boolean which tracks if you have lit the fire at A-boo Peak or not&lt;br /&gt;
&lt;br /&gt;
====oilPeakLit====&lt;br /&gt;
oilPeakLit is a boolean which tracks if you have lit the fire at Oil Peak or not&lt;br /&gt;
&lt;br /&gt;
(note, twinPeakLit would be obsolete as it would simply track twinPeakProgress == 15)&lt;br /&gt;
&lt;br /&gt;
===questL10Garbage===&lt;br /&gt;
&lt;br /&gt;
questL10Garbage tracks the player&#039;s progress in {{kolwiki|Giant_Trash_Quest|the Giant Trash Quest}}.&lt;br /&gt;
&lt;br /&gt;
* unstarted: quest not yet received from the Council&lt;br /&gt;
* started: quest received from the Council&lt;br /&gt;
* step2: giant beanstalk grown&lt;br /&gt;
* step3 - step6: four Immateria acquired&lt;br /&gt;
* step7: S.O.C.K. acquired ({{kolwiki|The_Castle_in_the_Clouds_in_the_Sky_(Basement)|Castle Basement}} open)&lt;br /&gt;
* step8: {{kolwiki|The_Castle_in_the_Clouds_in_the_Sky_(Basement)|Castle Ground Floor}} open&lt;br /&gt;
* step9: {{kolwiki|The_Castle_in_the_Clouds_in_the_Sky_(Basement)|Castle Top Floor}} open&lt;br /&gt;
* step10: chore wheel turned&lt;br /&gt;
* finished: returned to the Council&lt;br /&gt;
&lt;br /&gt;
===questL11MacGuffin===&lt;br /&gt;
questL11MacGuffin tracks the player&#039;s progress in the {{kolwiki|Quest_for_the_Holy_MacGuffin|Holy MacGuffin quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: quest received from the Council&lt;br /&gt;
*step1: Black Market located (blackForestProgress == 5)&lt;br /&gt;
*step2: retrieved your father&#039;s MacGuffin diary&lt;br /&gt;
*finished: returned the MacGuffin to the Council&lt;br /&gt;
&lt;br /&gt;
====questL11Black====&lt;br /&gt;
questL11Black tracks the player&#039;s progress in the {{kolwiki|Quest_for_the_Holy_MacGuffin|Black Market portion of the Holy MacGuffin quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started:  quest received from the Council&lt;br /&gt;
*step1: spent at least one turn in the Black Forest&lt;br /&gt;
*step2: Black Market found&lt;br /&gt;
*step3: forged identification documents purchased&lt;br /&gt;
*finished: MacGuffin diary acquired&lt;br /&gt;
&lt;br /&gt;
=====blackForestProgress=====&lt;br /&gt;
blackForestProgress tracks the player&#039;s progress in [http://kolmafia.us/showthread.php?15995 discovering the Black Market].&lt;br /&gt;
&lt;br /&gt;
*0: no progress in exploring the Forest&lt;br /&gt;
*1: blackberry bushes located&lt;br /&gt;
*2: black cottage located&lt;br /&gt;
*3: black mineshaft located&lt;br /&gt;
*4: black church located&lt;br /&gt;
*5: black market located&lt;br /&gt;
&lt;br /&gt;
====questL11Manor====&lt;br /&gt;
questL11Manor tracks the player&#039;s progress in the {{kolwiki|Quest_for_the_Holy_MacGuffin#Spookyraven_quest_.28In_a_Manor_of_Spooking|Spookyraven Manor portion of the Holy Macguffin quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received, by reading your father&#039;s MacGuffin diary&lt;br /&gt;
*step1: Spookyraven Manor Cellar opened&lt;br /&gt;
*step2: recipe: mortar-dissolving solution read&lt;br /&gt;
*step3: Suspicious Masonry demolished&lt;br /&gt;
*finished: Lord Spookyraven defeated&lt;br /&gt;
&lt;br /&gt;
=====spookyravenRecipeUsed=====&lt;br /&gt;
spookyravenRecipeUsed tracks whether and how the player has read recipe: mortar-dissolving solution&lt;br /&gt;
&lt;br /&gt;
*none: recipe not yet read&lt;br /&gt;
*with_glasses: recipe read with Lord Spookyraven&#039;s spectacles&lt;br /&gt;
*no_glasses: recipe read without the spectacles&lt;br /&gt;
&lt;br /&gt;
====questL11Desert====&lt;br /&gt;
Explore the Arid, Extra-Dry Desert to find the pyramid mentioned in your father&#039;s journal.&lt;br /&gt;
&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: quest started by reading your father&#039;s MacGuffin diary&lt;br /&gt;
*finished: discovered the Small Pyramid&lt;br /&gt;
&lt;br /&gt;
=====desertExploration=====&lt;br /&gt;
*0: haven&#039;t yet started exploring the Desert&lt;br /&gt;
*1-99: Desert exploration in progress&lt;br /&gt;
*100: Desert fully explored&lt;br /&gt;
&lt;br /&gt;
====questL11Pyramid====&lt;br /&gt;
questL11Pyramid tracks the player&#039;s progress in the {{kolwiki|Quest_for_the_Holy_MacGuffin#A_Small_Pyramid|Pyramid portion of the Holy Macguffin quest}}.&lt;br /&gt;
&lt;br /&gt;
* unstarted: Ancient Buried Pyramid not yet discovered&lt;br /&gt;
* started: Ancient Buried Pyramid discovered&lt;br /&gt;
* step1: Middle Chamber opened&lt;br /&gt;
* step2: The Lower Chambers opened&lt;br /&gt;
* step3: Control Room opened&lt;br /&gt;
* finished: MacGuffin retrieved (quest complete)&lt;br /&gt;
&lt;br /&gt;
=====gnasirProgress=====&lt;br /&gt;
gnasirProgress is a nibble bitmask with one bit for each possible way you can advance {{kolwiki|Quest_for_the_Holy_MacGuffin|Gnasir&#039;s quest}}. You can parse this with bitwise operators. Here&#039;s some code that demonstrates how to use it.&lt;br /&gt;
&amp;lt;syntaxhighlight&amp;gt;&lt;br /&gt;
int gnasirProgress = get_property(&amp;quot;gnasirProgress&amp;quot;).to_int();&lt;br /&gt;
buffer gnasir;&lt;br /&gt;
if((gnasirProgress &amp;amp; 1) == 0)&lt;br /&gt;
	print(&amp;quot;Gnasir wants a stone rose&amp;quot;);&lt;br /&gt;
if((gnasirProgress &amp;amp; 2) == 0)&lt;br /&gt;
	print(&amp;quot;Gnasir wants a can of black paint&amp;quot;);&lt;br /&gt;
if((gnasirProgress &amp;amp; 4) == 0)&lt;br /&gt;
	print(&amp;quot;Gnasir wants a killing jar&amp;quot;);&lt;br /&gt;
if((gnasirProgress &amp;amp; 8) == 0)&lt;br /&gt;
	print(&amp;quot;Gnasir wants a 15 worm-riding manual page&amp;quot;);&lt;br /&gt;
if((gnasirProgress &amp;amp; 16) == 0)&lt;br /&gt;
	print(&amp;quot;You need to use a drum machine to ride the worm&amp;quot;);&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====questL11Ron====&lt;br /&gt;
Ron Copperhead&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: quest received, by reading your father&#039;s MacGuffin diary&lt;br /&gt;
*step1: received the intro adventure at A Mob of Zeppelin Protestors&lt;br /&gt;
*step2: cleared all 80 protestors and opened access to The Red Zeppelin&lt;br /&gt;
*step3: received the intro adventure at The Red Zeppelin&lt;br /&gt;
*step4: Found Ron &amp;quot;The Weasel&amp;quot; Copperhead&lt;br /&gt;
*finished: defeated Ron &amp;quot;The Weasel&amp;quot; Copperhead and received the Copperhead Charm (rampant)&lt;br /&gt;
&lt;br /&gt;
=====zeppelinProtestors=====&lt;br /&gt;
Tracks protesters removed&lt;br /&gt;
&lt;br /&gt;
====questL11Shen====&lt;br /&gt;
Shen Copperhead&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received from the Council&lt;br /&gt;
*started: quest received, by reading your father&#039;s MacGuffin diary&lt;br /&gt;
*step1: spoke to Shen Copperhead in the Copperhead club and received first item request (and poisoning)&lt;br /&gt;
*step2: acquired first item&lt;br /&gt;
*step3: returned first item, received second item request (and poisoning)&lt;br /&gt;
*step4: acquired second item&lt;br /&gt;
*step5: returned second item, received third item request (and poisoning)&lt;br /&gt;
*step6: acquired third item&lt;br /&gt;
*step7: returned third item&lt;br /&gt;
*finished: received the Copperhead Charm&lt;br /&gt;
&lt;br /&gt;
====questL11Palindome====&lt;br /&gt;
questL11Palindome tracks the player&#039;s progress in the {{kolwiki|Quest_for_the_Holy_MacGuffin#The_Palindome|Palindome portion of the Never Odd or Even quest}}.&lt;br /&gt;
&lt;br /&gt;
* unstarted: quest not yet received from the Council&lt;br /&gt;
* started: have the Talisman o&#039; Namsilat&lt;br /&gt;
* step1: arranged the photos in Dr. Awkward&#039;s office&lt;br /&gt;
* step2: read 2 Love Me, Vol. 2&lt;br /&gt;
* step3: met Mr. Alarm in his office (received the wet stunt nut stew quest)&lt;br /&gt;
* step4: cooked wet stunt nut stew&lt;br /&gt;
* step5: returned the stew to Mr. Alarm&lt;br /&gt;
* finished: defeated Dr. Awkward&lt;br /&gt;
&lt;br /&gt;
====questL11Worship====&lt;br /&gt;
questL11Worship tracks progress through the {{kolwiki|Quest_for_the_Holy_MacGuffin#Hidden_Temple_quest_.28Gotta_Worship_Them_All.29|Hidden Temple portion of the Quest for the Holy MacGuffin}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received, by reading your father&#039;s MacGuffin diary&lt;br /&gt;
*step1: (Hidden Temple opened?)&lt;br /&gt;
*step2: correct button pressed in the Temple&lt;br /&gt;
*step3: Hidden City uncovered&lt;br /&gt;
*step4: four stone triangles acquired&lt;br /&gt;
*finished: ancient amulet acquired from the Protector Spectre&lt;br /&gt;
&lt;br /&gt;
=====questL11Business=====&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: Hidden Office Building opened&lt;br /&gt;
*finished: crackling stone sphere acquired&lt;br /&gt;
&lt;br /&gt;
======hiddenOfficeProgress======&lt;br /&gt;
hiddenOfficeProgress tracks progress through the {{kolwiki|Hidden Office Building}} during the Quest for the Holy MacGuffin.&lt;br /&gt;
&lt;br /&gt;
Possible values: 0, 1, 6 - 8&lt;br /&gt;
* 0: Haven&#039;t opened the Hidden Office Building&lt;br /&gt;
* 1: Hidden Office Building is open for adventuring&lt;br /&gt;
* 6: Encountered the Protector Spirit&lt;br /&gt;
* 7: Found the stone sphere&lt;br /&gt;
* 8: Placed the stone sphere in the relevant overgrown shrine&lt;br /&gt;
&lt;br /&gt;
=====questL11Curses=====&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: Hidden Apartment Building opened&lt;br /&gt;
*finished: moss-covered stone sphere acquired&lt;br /&gt;
&lt;br /&gt;
======hiddenApartmentProgress======&lt;br /&gt;
hiddenApartmentProgress tracks progress through the {{kolwiki|Hidden Apartment Building}} during the Quest for the Holy MacGuffin.&lt;br /&gt;
&lt;br /&gt;
Possible values: 0, 1, 6 - 8&lt;br /&gt;
* 0: Haven&#039;t opened the Hidden Apartment Building&lt;br /&gt;
* 1: Hidden Apartment Building is open for adventuring&lt;br /&gt;
* 6: Encountered the Protector Spirit&lt;br /&gt;
* 7: Found the stone sphere&lt;br /&gt;
* 8: Placed the stone sphere in the relevant overgrown shrine&lt;br /&gt;
&lt;br /&gt;
=====questL11Doctor=====&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: Hidden Hospital opened&lt;br /&gt;
*finished: dripping stone sphere acquired&lt;br /&gt;
&lt;br /&gt;
======hiddenHospitalProgress======&lt;br /&gt;
hiddenHospitalProgress tracks progress through the {{kolwiki|Hidden Hospital}} during the Quest for the Holy MacGuffin.&lt;br /&gt;
&lt;br /&gt;
Possible values: 0 - 8&lt;br /&gt;
* 0: Haven&#039;t opened the Hidden Hospital&lt;br /&gt;
* 1: Hidden Hospital is open for adventuring, but haven&#039;t bowled.&lt;br /&gt;
* 6: Encountered the Protector Spirit&lt;br /&gt;
* 7: Found the stone sphere&lt;br /&gt;
* 8: Placed the stone sphere in the relevant overgrown shrine&lt;br /&gt;
&lt;br /&gt;
=====questL11Spare=====&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: Hidden Bowling Alley opened&lt;br /&gt;
*finished: scorched stone sphere acquired&lt;br /&gt;
&lt;br /&gt;
======hiddenBowlingAlleyProgress======&lt;br /&gt;
hiddenBowlingAlleyProgress tracks progress through the {{kolwiki|Hidden Bowling Alley}} during the Quest for the Holy MacGuffin.&lt;br /&gt;
&lt;br /&gt;
* 0: Haven&#039;t opened the Hidden Bowling Alley&lt;br /&gt;
* 1: Hidden Bowling Alley is open for adventuring&lt;br /&gt;
* 2-5: Number of times bowled is 1 less than hiddenBowlingAlleyProgress &lt;br /&gt;
* 6: Encountered the Protector Spirit&lt;br /&gt;
* 7: Found the stone sphere&lt;br /&gt;
* 8: Placed the stone sphere in the relevant overgrown shrine&lt;br /&gt;
&lt;br /&gt;
=====hiddenTavernUnlock=====&lt;br /&gt;
hiddenTavernUnlock tracks whether or not you have unlocked the {{kolwiki|Hidden Tavern}} during the Quest for the Holy MacGuffin.&lt;br /&gt;
&lt;br /&gt;
* When the value is equal to your number of ascensions, the Tavern is unlocked&lt;br /&gt;
* When the value is any other number, the Tavern is locked&lt;br /&gt;
&lt;br /&gt;
===questL12War===&lt;br /&gt;
questL12War tracks progress during the {{kolwiki|Mysterious Island Quest}}.&lt;br /&gt;
&lt;br /&gt;
* unstarted: quest not yet received from the Council&lt;br /&gt;
* started: quest received&lt;br /&gt;
* step1: War started&lt;br /&gt;
* finished: War ended; boss defeated (quest complete)&lt;br /&gt;
&lt;br /&gt;
====warProgress====&lt;br /&gt;
Possible values for the progress of the {{kolwiki|Mysterious Island Quest|Isle War}}:&lt;br /&gt;
*unstarted: We can still visit the small version of the Mysterious Island&lt;br /&gt;
*started: The war is in progress&lt;br /&gt;
*finished: The final boss or bosses were defeated&lt;br /&gt;
&lt;br /&gt;
====fratboysDefeated====&lt;br /&gt;
counts how many frat warriors have been killed on the battlefield (starts at 0).&lt;br /&gt;
&lt;br /&gt;
====hippiesDefeated====&lt;br /&gt;
counts how many war hippies have been killed on the battlefield (starts at 0).&lt;br /&gt;
&lt;br /&gt;
====sideDefeated====&lt;br /&gt;
Which side of the {{kolwiki|Mysterious Island Quest|Isle War}} was defeated during the Level 12 quest. &lt;br /&gt;
&lt;br /&gt;
Possible values:&lt;br /&gt;
*neither&lt;br /&gt;
*hippies&lt;br /&gt;
*fratboys&lt;br /&gt;
*both&lt;br /&gt;
&lt;br /&gt;
====sidequestArenaCompleted====&lt;br /&gt;
Tracks the status of {{kolwiki|The Mysterious Island Arena}} sidequest&lt;br /&gt;
&lt;br /&gt;
Possible values:&lt;br /&gt;
*none&lt;br /&gt;
*fratboy&lt;br /&gt;
*hippy&lt;br /&gt;
&lt;br /&gt;
====sidequestFarmCompleted====&lt;br /&gt;
Tracks the status of {{kolwiki|McMillicancuddy&#039;s Farm}} sidequest&lt;br /&gt;
&lt;br /&gt;
Possible values:&lt;br /&gt;
*none&lt;br /&gt;
*fratboy&lt;br /&gt;
*hippy&lt;br /&gt;
&lt;br /&gt;
====sidequestJunkyardCompleted====&lt;br /&gt;
Tracks the status of {{kolwiki|The Junkyard}} sidequest&lt;br /&gt;
&lt;br /&gt;
Possible values:&lt;br /&gt;
*none&lt;br /&gt;
*fratboy&lt;br /&gt;
*hippy&lt;br /&gt;
&lt;br /&gt;
====sidequestLighthouseCompleted====&lt;br /&gt;
Tracks the status of {{kolwiki|The Lighthouse}} sidequest&lt;br /&gt;
&lt;br /&gt;
Possible values:&lt;br /&gt;
*none&lt;br /&gt;
*fratboy&lt;br /&gt;
*hippy&lt;br /&gt;
&lt;br /&gt;
====sidequestNunsCompleted====&lt;br /&gt;
Tracks the status of {{kolwiki|Our Lady of Perpetual Indecision}} sidequest&lt;br /&gt;
&lt;br /&gt;
Possible values:&lt;br /&gt;
*none&lt;br /&gt;
*fratboy&lt;br /&gt;
*hippy&lt;br /&gt;
&lt;br /&gt;
====sidequestOrchardCompleted====&lt;br /&gt;
Tracks the status of {{kolwiki|The Organic Orchard}} sidequest&lt;br /&gt;
&lt;br /&gt;
Possible values:&lt;br /&gt;
*none&lt;br /&gt;
*fratboy&lt;br /&gt;
*hippy&lt;br /&gt;
&lt;br /&gt;
===questL12HippyFrat===&lt;br /&gt;
questL12War tracks progress during the {{kolwiki|Mysterious Island Quest}} in the {{kolwiki|Kingdom of Exploathing}} path&lt;br /&gt;
&lt;br /&gt;
* unstarted: quest not yet received from the Council&lt;br /&gt;
* started: quest received&lt;br /&gt;
* step1: War started&lt;br /&gt;
* finished: War ended; boss defeated (quest complete)&lt;br /&gt;
&lt;br /&gt;
===questL13Final===&lt;br /&gt;
Progress for the {{kolwiki|Naughty Sorceress Quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received from the Council&lt;br /&gt;
*started: quest received; Registration Desk open (???)&lt;br /&gt;
*step1: spent at least one turn fighting competitors&lt;br /&gt;
*step2: competitors defeated&lt;br /&gt;
*step3: sash acquired&lt;br /&gt;
*step4: met Frank&lt;br /&gt;
*step5: Hedge Maze cleared&lt;br /&gt;
*step6: Tower Door locks unlocked&lt;br /&gt;
*step7: wall of skin defeated&lt;br /&gt;
*step8: wall of meat defeated&lt;br /&gt;
*step9: wall of bones defeated&lt;br /&gt;
*step10: antique mirror handled&lt;br /&gt;
*step11: shadow class defeated&lt;br /&gt;
*step12: Naughty Sorceress defeated&lt;br /&gt;
*step13: Council informed&lt;br /&gt;
*finished: prism smashed; King Ralph freed; Astral Gash accessible&lt;br /&gt;
&lt;br /&gt;
===questL13Warehouse===&lt;br /&gt;
the final quest if you ascend as {{kolwiki|Actually Ed the Undying}} where you adventure in {{kolwiki|The Secret Council Warehouse}}.&lt;br /&gt;
*unstarted&lt;br /&gt;
*started&lt;br /&gt;
*finished&lt;br /&gt;
Current progress in the warehouse is tracked in warehouseProgress.&lt;br /&gt;
&lt;br /&gt;
==Guild Quests==&lt;br /&gt;
===questG01Meatcar===&lt;br /&gt;
&lt;br /&gt;
===questG02Whitecastle===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questG03Ego===&lt;br /&gt;
=started&lt;br /&gt;
===questG04Nemesis===&lt;br /&gt;
questG04Nemesis tracks the player&#039;s progress in the {{kolwiki|Me and My Nemesis|Nemesis quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received from the guild&lt;br /&gt;
*step1: The Unknown Your Class encountered?&lt;br /&gt;
*step2: The Unknown Your Class defeated&lt;br /&gt;
*step3: ?&lt;br /&gt;
*step4: epic weapon acquired&lt;br /&gt;
*step5: &amp;quot;fun&amp;quot; house opened&lt;br /&gt;
*step9: Have LEW&lt;br /&gt;
*step10: Talked to clan and opened the Dark Cave&lt;br /&gt;
*step11: Encountered the Dark Cave entrance at least once&lt;br /&gt;
*step12: Passed the Dark Cave entrance&lt;br /&gt;
*step15: Impassable rubble cleared and ready for final (?) showdown&lt;br /&gt;
*step16: Nemesis defeated and epic hat acquired&lt;br /&gt;
*step17: Returned to guild with epic hat&lt;br /&gt;
&lt;br /&gt;
===questG05Dark===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questG06Delivery===&lt;br /&gt;
=unstarted&lt;br /&gt;
&lt;br /&gt;
==Miscellaneous Quests==&lt;br /&gt;
===questM01Untinker===&lt;br /&gt;
Returning the screwdriver to the Untinker.&lt;br /&gt;
&lt;br /&gt;
* unstarted&lt;br /&gt;
* step1: collected the rusty screwdriver&lt;br /&gt;
* finished: screwdriver returned&lt;br /&gt;
&lt;br /&gt;
===questM02Artist===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questM03Bugbear===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questM04Galaktic===&lt;br /&gt;
=started&lt;br /&gt;
===questM05Toot===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questM06Gourd===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questM07Hammer===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questM08Baker===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questM09Rocks===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questM10Azazel===&lt;br /&gt;
questM10Azazel tracks the player&#039;s progress in the {{kolwiki|Azazel,_Ma_Belle|Azazel, Ma Belle quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: received the quest, from Azazel or the stranger in Moaning Panda Square&lt;br /&gt;
*finished: returned Azazel&#039;s talismans to him&lt;br /&gt;
&lt;br /&gt;
===questM11Postal===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questM12Pirate===&lt;br /&gt;
questM12Pirate tracks the player&#039;s progress in the {{kolwiki|Cap&#039;m Caronch Quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: Cap&#039;m Caronch&#039;s Map found&lt;br /&gt;
*step1: acquired Cap&#039;m Caronch&#039;s nasty booty from the booty crab&lt;br /&gt;
*step2: received the Orcish Frat House blueprints&lt;br /&gt;
*step3: retrieved Cap&#039;m Caronch&#039;s dentures from the Frat House&lt;br /&gt;
*step4: returned the dentures to the Cap&#039;m and accepted the beer pong challenge&lt;br /&gt;
*step5: won a game of beer pong&lt;br /&gt;
*step6: acquired pirate fledges&lt;br /&gt;
*finished: unlocked Belowdecks&lt;br /&gt;
&lt;br /&gt;
===questM13Escape===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questM14Bounty===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questM15Lol===&lt;br /&gt;
questM15Lol tracks the player&#039;s progress in {{kolwiki|A Quest, LOL}}. (No, but seriously.)&lt;br /&gt;
&lt;br /&gt;
*unstarted:&lt;br /&gt;
*finished:&lt;br /&gt;
&lt;br /&gt;
===questM16Temple===&lt;br /&gt;
quest to find the Hidden Temple&lt;br /&gt;
&lt;br /&gt;
*unstarted:&lt;br /&gt;
*finished:&lt;br /&gt;
&lt;br /&gt;
===questM17Babies===&lt;br /&gt;
Lady Spookyraven&#039;s Babies&lt;br /&gt;
&lt;br /&gt;
===questM18Swamp===&lt;br /&gt;
Marty and His Swamp Problems&lt;br /&gt;
&lt;br /&gt;
===questM19Hippy===&lt;br /&gt;
Hippy Give a Hippy a Boat...&lt;br /&gt;
&lt;br /&gt;
===questM20Necklace===&lt;br /&gt;
questM20Necklace tracks the player&#039;s progress in {{kolwiki|Spookyraven_Manor_Quest#Lady_Spookyraven.27s_Necklace_.28First_Floor.29|retrieving Lady Spookyraven&#039;s necklace}}.&lt;br /&gt;
&lt;br /&gt;
* unstarted: quest not yet received&lt;br /&gt;
* started: quest received from the telegram&lt;br /&gt;
* step1: billiards room key found&lt;br /&gt;
* step2: Encountered Pool Ghost non-combat once&lt;br /&gt;
* step3: library key found&lt;br /&gt;
* step4: necklace found&lt;br /&gt;
* finished: necklace returned to Lady Spookyraven (quest complete)&lt;br /&gt;
&lt;br /&gt;
===questM21Dance===&lt;br /&gt;
questM21Dance tracks the player&#039;s progress in the Second Floor portion of the {{kolwiki|Lady_spookyraven&#039;s_dance|Spookyraven Manor quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: quest received, from Lady Spookyraven&#039;s ghostly telegram&lt;br /&gt;
*step1: spoken to Lady Spookyraven on the Second Floor&lt;br /&gt;
*step2: acquired Lady Spookyraven&#039;s dancing things&lt;br /&gt;
*step3: returned Lady Spookyraven&#039;s dancing things to her&lt;br /&gt;
*finished: danced with Lady Spookyraven in the Ballroom&lt;br /&gt;
&lt;br /&gt;
===questM22Shirt===&lt;br /&gt;
The Shirt Off His Lack of Back&lt;br /&gt;
&lt;br /&gt;
===questM23Meatsmith===&lt;br /&gt;
Helping Make Ends Meat&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* step1 - Got a {{kolwiki|check to the Meatsmith}}.&lt;br /&gt;
* finished - Returned {{kolwiki|check to the Meatsmith}} to the Meatsmith.&lt;br /&gt;
&lt;br /&gt;
===questM24Doc===&lt;br /&gt;
What&#039;s Up, Doc?&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* step1 - Collected the Herbs and need to return them to Doc Galaktik&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
==Sea Quests==&lt;br /&gt;
===questS01OldGuy===&lt;br /&gt;
=finished&lt;br /&gt;
===questS02Monkee===&lt;br /&gt;
=unstarted&lt;br /&gt;
&lt;br /&gt;
When Mom is rescued the Quest is completed &lt;br /&gt;
&lt;br /&gt;
=finished&lt;br /&gt;
&lt;br /&gt;
====merkinQuestPath====&lt;br /&gt;
merkinQuestPath indicates which path the player has chosen in the {{kolwiki|Mer-Kin Deepcity}}, during the {{kolwiki|Sea Monkees Quest}}.&lt;br /&gt;
&lt;br /&gt;
Possible values:&lt;br /&gt;
* none: Player has not yet chosen a path&lt;br /&gt;
* gladiator: Player will fight Yog-Urt, Elder Goddess of Hatred&lt;br /&gt;
* scholar: Player will fight Shub-Jigguwatt, Elder God of Violence&lt;br /&gt;
* done: Player has completed the Sea Monkees Quest&lt;br /&gt;
&lt;br /&gt;
====skateParkStatus====&lt;br /&gt;
skateParkStatus tracks the player&#039;s progress in the {{kolwiki|war for the Skate Park}}.&lt;br /&gt;
&lt;br /&gt;
*war: the war is ongoing&lt;br /&gt;
*ice: the roller skates have been chased out&lt;br /&gt;
*roller: the ice skates have been chased out&lt;br /&gt;
*peace: both sides have been chased out&lt;br /&gt;
&lt;br /&gt;
==Quests Granted by Items==&lt;br /&gt;
===questI01Scapegoat===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questI02Beat===&lt;br /&gt;
=unstarted&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Quests Granted by Familiars==&lt;br /&gt;
===questF01Primordial===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questF02Hyboria===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questF03Future===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questF04Elves===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questF05Clancy===&lt;br /&gt;
=unstarted&lt;br /&gt;
&lt;br /&gt;
==Bug Bear Invasion Properties==&lt;br /&gt;
&lt;br /&gt;
===mothershipProgress===&lt;br /&gt;
mothershipProgress tracks progress of level completion in the {{kolwiki|Bugbear Mothership}}. It goes from 0 to 3 as that level is cleared.&lt;br /&gt;
&lt;br /&gt;
Possible values: 0-3&lt;br /&gt;
&lt;br /&gt;
===statusEngineering===&lt;br /&gt;
===statusGalley===&lt;br /&gt;
===statusMedbay===&lt;br /&gt;
===statusMorgue===&lt;br /&gt;
===statusNavigation===&lt;br /&gt;
===statusScienceLab===&lt;br /&gt;
===statusSonar===&lt;br /&gt;
===statusSpecialOps===&lt;br /&gt;
===statusWasteProcessing===&lt;br /&gt;
All of these work the same way. &lt;br /&gt;
*0-x (integers): insufficient bodata collected)&lt;br /&gt;
*open: all biodata collected and zone accessible&lt;br /&gt;
* unlocked: biodata collected but zone not yet accessible&lt;br /&gt;
* cleared: zone has been cleared&lt;br /&gt;
&lt;br /&gt;
==Quests from the Elemental Planes==&lt;br /&gt;
===Spring Break Beach===&lt;br /&gt;
The Elemental Plane of Sleaze&lt;br /&gt;
=====questESlMushStash=====&lt;br /&gt;
Jimmy&#039;s Quest to collect receipts from the Fun-Guy Mansion.&lt;br /&gt;
=====questESlAudit=====&lt;br /&gt;
Taco Dan&#039;s Quest to collect receipts from the Fun-Guy Mansion.&lt;br /&gt;
=====questESlBacteria=====&lt;br /&gt;
Broden&#039;s Quest to collect bacteria from the Fun-Guy Mansion.&lt;br /&gt;
=====questESlCheeseburger=====&lt;br /&gt;
Jimmy&#039;s Quest to collect ingredients from the Sloppy Seconds Diner.&lt;br /&gt;
=====questESlSprinkles=====&lt;br /&gt;
Taco Dan&#039;s Quest to collect ingredients from the Sloppy Seconds Diner.&lt;br /&gt;
=====questESlCocktail=====&lt;br /&gt;
Broden&#039;s Quest to collect sprinkles from the Sloppy Seconds Diner.&lt;br /&gt;
=====questESlSalt=====&lt;br /&gt;
Jimmy&#039;s Quest to collect salt from the Sunken Yacht.&lt;br /&gt;
=====questESlFish=====&lt;br /&gt;
Taco Dan&#039;s Quest to collect fish meat from the Sunken Yacht.&lt;br /&gt;
=====questESlDebt=====&lt;br /&gt;
Broden&#039;s Quest to collect broupons from the Sunken Yacht.&lt;br /&gt;
&lt;br /&gt;
===Conspiracy Island===&lt;br /&gt;
The Elemental Plane of Spooky&lt;br /&gt;
=====questESpOutOfOrder=====&lt;br /&gt;
Deep Dark Jungle - Out of Order&lt;br /&gt;
=====questESpJunglePun=====&lt;br /&gt;
Deep Dark Jungle - Pungle in the Jungle&lt;br /&gt;
=====questESpSmokes=====&lt;br /&gt;
Deep Dark Jungle - Everyone&#039;s Running Out of Smokes&lt;br /&gt;
=====questESpClipper=====&lt;br /&gt;
Mansion of Dr. Weirdeaux - The Big Clipper&lt;br /&gt;
=====questESpSerum=====&lt;br /&gt;
Mansion of Dr. Weirdeaux - Serum Sortie&lt;br /&gt;
=====questESpEVE=====&lt;br /&gt;
Secret Government Laboratory - Choking on the Rind&lt;br /&gt;
=====questESpFakeMedium=====&lt;br /&gt;
Secret Government Laboratory - Fake Medium at Large&lt;br /&gt;
=====questESpGore=====&lt;br /&gt;
Secret Government Laboratory - Gore Tipper&lt;br /&gt;
&lt;br /&gt;
{{PropertyNav}}&lt;/div&gt;</summary>
		<author><name>Malibu Stacey</name></author>
	</entry>
	<entry>
		<id>https://wiki.kolmafia.us/index.php?title=Quest_Tracking_Preferences&amp;diff=8249</id>
		<title>Quest Tracking Preferences</title>
		<link rel="alternate" type="text/html" href="https://wiki.kolmafia.us/index.php?title=Quest_Tracking_Preferences&amp;diff=8249"/>
		<updated>2020-04-23T22:27:19Z</updated>

		<summary type="html">&lt;p&gt;Malibu Stacey: change ordering so Council quests are first followed by Guild then everything else.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{TOCright}}&lt;br /&gt;
KoLMafia internally tracks progress for a number of quests. These are stored as preferences in settings\[charactername]_prefs.&lt;br /&gt;
&lt;br /&gt;
==Council Quests==&lt;br /&gt;
===questL02Larva===&lt;br /&gt;
questL02Larva tracks the player&#039;s progress in the {{kolwiki|Spooky_Forest_Quest|Spooky Forest quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received from the Council&lt;br /&gt;
*step1: mosquito larva acquired&lt;br /&gt;
*finished: mosquito larva returned to the Council&lt;br /&gt;
&lt;br /&gt;
===questL03Rat===&lt;br /&gt;
questL03Rat tracks the player&#039;s progress in the {{kolwiki|Typical_Tavern_Quest|Typical Tavern quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received from the Council&lt;br /&gt;
*step1: spoke to Bart Ender in the Typical Tavern&lt;br /&gt;
*step2: turned off the Rat Faucet&lt;br /&gt;
*finished: told Bart about the Faucet&lt;br /&gt;
&lt;br /&gt;
===questL04Bat===&lt;br /&gt;
questL04Bat tracks the player&#039;s progress in the {{kolwiki|Boss_Bat_Quest|Boss Bat quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received from the Council&lt;br /&gt;
*step1-step3: demolished 1-3 walls in the Bat Hole&lt;br /&gt;
*step4: Boss Bat defeated&lt;br /&gt;
*finished: returned to the Council to report success&lt;br /&gt;
&lt;br /&gt;
===questL05Goblin===&lt;br /&gt;
questL05Goblin tracks the player&#039;s progress in the {{kolwiki|The_King_of_Cobb&#039;s_Knob_Quest|The King of Cobb&#039;s Knob quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received from the Council&lt;br /&gt;
*step1: Cobb&#039;s Knob map decrypted&lt;br /&gt;
*finished: Knob Goblin King defeated&lt;br /&gt;
&lt;br /&gt;
===questL06Friar===&lt;br /&gt;
questL06Friar tracks the player&#039;s progress in the {{kolwiki|Deep_Fat_Friars&#039;_Gate_Quest|Friars&#039; quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received from the Council&lt;br /&gt;
*step1: details received from the Friars&lt;br /&gt;
*step2: box of birthday candles, dodecagram &amp;amp; eldritch butterknife acquired.&lt;br /&gt;
*finished: cleansed the taint&lt;br /&gt;
&lt;br /&gt;
===questL07Cyrptic===&lt;br /&gt;
questL07Cyrptic tracks the player&#039;s progress in the {{kolwiki|Undefile_the_Cyrpt_Quest|Undefile the Cyrpt quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received from the Council&lt;br /&gt;
*finished: Bonerdagon defeated&lt;br /&gt;
&lt;br /&gt;
===questL08Trapper===&lt;br /&gt;
&lt;br /&gt;
questL08Trapper tracks the player&#039;s progress in the {{kolwiki|Mt._McLargeHuge_Quest|Mt. McLargeHuge Quest}}.&lt;br /&gt;
&lt;br /&gt;
* unstarted: quest not yet received from the Council&lt;br /&gt;
* started: quest received from the Council&lt;br /&gt;
* step1: cheese and ore requested by the Trapper&lt;br /&gt;
* step2: cheese and ore returned to the Trapper&lt;br /&gt;
* step3: discovered the stairs up to the Mist-Shrouded Peak (via either route)&lt;br /&gt;
* step4: fought at least one yeti&lt;br /&gt;
* step5: defeated the monster at the top of the Peak&lt;br /&gt;
* finished: returned the fur to the Trapper (quest complete)&lt;br /&gt;
&lt;br /&gt;
===questL09Topping===&lt;br /&gt;
questL08Trapper tracks the player&#039;s progress in the {{kolwiki|Orc_Chasm_Quest|Orc Chasm Quest}}.&lt;br /&gt;
&lt;br /&gt;
* unstarted: quest not yet received from the Council&lt;br /&gt;
* started: quest received from the Council&lt;br /&gt;
* step1: bridge built&lt;br /&gt;
* step2: like, totally got the deets from the Highland Lord&lt;br /&gt;
* step3: lit all three signal fires&lt;br /&gt;
* finished: quest complete&lt;br /&gt;
&lt;br /&gt;
====booPeakProgress====&lt;br /&gt;
booPeakProgress tracks the hauntedness level of {{kolwiki|A-boo Peak}}. A value of 18, for instance, indicates that A-boo Peak is 18% haunted.&lt;br /&gt;
&lt;br /&gt;
Possible values: 0 - 100&lt;br /&gt;
&lt;br /&gt;
====chasmBridgeProgress====&lt;br /&gt;
chasmBridgeProgress tracks the player&#039;s progress in building a bridge across the {{kolwiki|Orc Chasm}}. A value of 10, for instance, indicates that the bridge is 10 planks long.&lt;br /&gt;
&lt;br /&gt;
Possible values: 0 - 30&lt;br /&gt;
&lt;br /&gt;
====oilPeakProgress====&lt;br /&gt;
oilPeakProgress tracks the remaining pressure at {{kolwiki|Oil Peak}}. It decreases as the player reduces the pressure in the zone.&lt;br /&gt;
&lt;br /&gt;
Possible values: 0.00 - 310.66&lt;br /&gt;
* 310.66: Pressure not yet reduced&lt;br /&gt;
* 0.00: Subquest completed&lt;br /&gt;
&lt;br /&gt;
====twinPeakProgress====&lt;br /&gt;
twinPeakProgress is a nibble bitmask with least significant bit set for the first choice and the most significant for the fourth. You can parse this with bitwise operators. Here&#039;s some code that demonstrates how to use it.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight&amp;gt;&lt;br /&gt;
void comma(buffer b, string s) {&lt;br /&gt;
	if(length(b) &amp;gt; 0)&lt;br /&gt;
		b.append(&amp;quot;, &amp;quot;);&lt;br /&gt;
	b.append(s);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
boolean mysterious(int progress, int c) { &lt;br /&gt;
	return (progress &amp;amp; (1 &amp;lt;&amp;lt; c)) == 0;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
string twinPeak() {&lt;br /&gt;
	int p = get_property(&amp;quot;twinPeakProgress&amp;quot;).to_int();&lt;br /&gt;
	buffer need;&lt;br /&gt;
	if(mysterious(p, 0)) need.comma(&amp;quot;4 Stench Resistance&amp;quot;);&lt;br /&gt;
	if(mysterious(p, 1)) need.comma(&amp;quot;+50% Item Drop&amp;quot;);&lt;br /&gt;
	if(mysterious(p, 2)) need.comma(&amp;quot;Jar of Oil&amp;quot;);&lt;br /&gt;
	// Only check for final if first three complete&lt;br /&gt;
	if(length(need) == 0) {&lt;br /&gt;
		if(mysterious(p, 3))&lt;br /&gt;
			return &amp;quot;Need +40% Initiative&amp;quot;;&lt;br /&gt;
		return &amp;quot;Twin Peak Completed&amp;quot;;&lt;br /&gt;
	}&lt;br /&gt;
	return &amp;quot;Need &amp;quot; + need;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===questL10Garbage===&lt;br /&gt;
&lt;br /&gt;
questL10Garbage tracks the player&#039;s progress in {{kolwiki|Giant_Trash_Quest|the Giant Trash Quest}}.&lt;br /&gt;
&lt;br /&gt;
* unstarted: quest not yet received from the Council&lt;br /&gt;
* started: quest received from the Council&lt;br /&gt;
* step2: giant beanstalk grown&lt;br /&gt;
* step3 - step6: four Immateria acquired&lt;br /&gt;
* step7: S.O.C.K. acquired ({{kolwiki|The_Castle_in_the_Clouds_in_the_Sky_(Basement)|Castle Basement}} open)&lt;br /&gt;
* step8: {{kolwiki|The_Castle_in_the_Clouds_in_the_Sky_(Basement)|Castle Ground Floor}} open&lt;br /&gt;
* step9: {{kolwiki|The_Castle_in_the_Clouds_in_the_Sky_(Basement)|Castle Top Floor}} open&lt;br /&gt;
* step10: chore wheel turned&lt;br /&gt;
* finished: returned to the Council&lt;br /&gt;
&lt;br /&gt;
===questL11MacGuffin===&lt;br /&gt;
questL11MacGuffin tracks the player&#039;s progress in the {{kolwiki|Quest_for_the_Holy_MacGuffin|Holy MacGuffin quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: quest received from the Council&lt;br /&gt;
*step1: Black Market located (blackForestProgress == 5)&lt;br /&gt;
*step2: retrieved your father&#039;s MacGuffin diary&lt;br /&gt;
*finished: returned the MacGuffin to the Council&lt;br /&gt;
&lt;br /&gt;
====questL11Black====&lt;br /&gt;
questL11Black tracks the player&#039;s progress in the {{kolwiki|Quest_for_the_Holy_MacGuffin|Black Market portion of the Holy MacGuffin quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started:  quest received from the Council&lt;br /&gt;
*step1: spent at least one turn in the Black Forest&lt;br /&gt;
*step2: Black Market found&lt;br /&gt;
*step3: forged identification documents purchased&lt;br /&gt;
*finished: MacGuffin diary acquired&lt;br /&gt;
&lt;br /&gt;
=====blackForestProgress=====&lt;br /&gt;
blackForestProgress tracks the player&#039;s progress in [http://kolmafia.us/showthread.php?15995 discovering the Black Market].&lt;br /&gt;
&lt;br /&gt;
*0: no progress in exploring the Forest&lt;br /&gt;
*1: blackberry bushes located&lt;br /&gt;
*2: black cottage located&lt;br /&gt;
*3: black mineshaft located&lt;br /&gt;
*4: black church located&lt;br /&gt;
*5: black market located&lt;br /&gt;
&lt;br /&gt;
====questL11Manor====&lt;br /&gt;
questL11Manor tracks the player&#039;s progress in the {{kolwiki|Quest_for_the_Holy_MacGuffin#Spookyraven_quest_.28In_a_Manor_of_Spooking|Spookyraven Manor portion of the Holy Macguffin quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received, by reading your father&#039;s MacGuffin diary&lt;br /&gt;
*step1: Spookyraven Manor Cellar opened&lt;br /&gt;
*step2: recipe: mortar-dissolving solution read&lt;br /&gt;
*step3: Suspicious Masonry demolished&lt;br /&gt;
*finished: Lord Spookyraven defeated&lt;br /&gt;
&lt;br /&gt;
=====spookyravenRecipeUsed=====&lt;br /&gt;
spookyravenRecipeUsed tracks whether and how the player has read recipe: mortar-dissolving solution&lt;br /&gt;
&lt;br /&gt;
*none: recipe not yet read&lt;br /&gt;
*with_glasses: recipe read with Lord Spookyraven&#039;s spectacles&lt;br /&gt;
*no_glasses: recipe read without the spectacles&lt;br /&gt;
&lt;br /&gt;
====questL11Desert====&lt;br /&gt;
Explore the Arid, Extra-Dry Desert to find the pyramid mentioned in your father&#039;s journal.&lt;br /&gt;
&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: quest started by reading your father&#039;s MacGuffin diary&lt;br /&gt;
*finished: discovered the Small Pyramid&lt;br /&gt;
&lt;br /&gt;
=====desertExploration=====&lt;br /&gt;
*0: haven&#039;t yet started exploring the Desert&lt;br /&gt;
*1-99: Desert exploration in progress&lt;br /&gt;
*100: Desert fully explored&lt;br /&gt;
&lt;br /&gt;
====questL11Pyramid====&lt;br /&gt;
questL11Pyramid tracks the player&#039;s progress in the {{kolwiki|Quest_for_the_Holy_MacGuffin#A_Small_Pyramid|Pyramid portion of the Holy Macguffin quest}}.&lt;br /&gt;
&lt;br /&gt;
* unstarted: Ancient Buried Pyramid not yet discovered&lt;br /&gt;
* started: Ancient Buried Pyramid discovered&lt;br /&gt;
* step1: Middle Chamber opened&lt;br /&gt;
* step2: The Lower Chambers opened&lt;br /&gt;
* step3: Control Room opened&lt;br /&gt;
* finished: MacGuffin retrieved (quest complete)&lt;br /&gt;
&lt;br /&gt;
=====gnasirProgress=====&lt;br /&gt;
gnasirProgress is a nibble bitmask with one bit for each possible way you can advance {{kolwiki|Quest_for_the_Holy_MacGuffin|Gnasir&#039;s quest}}. You can parse this with bitwise operators. Here&#039;s some code that demonstrates how to use it.&lt;br /&gt;
&amp;lt;syntaxhighlight&amp;gt;&lt;br /&gt;
int gnasirProgress = get_property(&amp;quot;gnasirProgress&amp;quot;).to_int();&lt;br /&gt;
buffer gnasir;&lt;br /&gt;
if((gnasirProgress &amp;amp; 1) == 0)&lt;br /&gt;
	print(&amp;quot;Gnasir wants a stone rose&amp;quot;);&lt;br /&gt;
if((gnasirProgress &amp;amp; 2) == 0)&lt;br /&gt;
	print(&amp;quot;Gnasir wants a can of black paint&amp;quot;);&lt;br /&gt;
if((gnasirProgress &amp;amp; 4) == 0)&lt;br /&gt;
	print(&amp;quot;Gnasir wants a killing jar&amp;quot;);&lt;br /&gt;
if((gnasirProgress &amp;amp; 8) == 0)&lt;br /&gt;
	print(&amp;quot;Gnasir wants a 15 worm-riding manual page&amp;quot;);&lt;br /&gt;
if((gnasirProgress &amp;amp; 16) == 0)&lt;br /&gt;
	print(&amp;quot;You need to use a drum machine to ride the worm&amp;quot;);&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====questL11Ron====&lt;br /&gt;
Ron Copperhead&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: quest received, by reading your father&#039;s MacGuffin diary&lt;br /&gt;
*step1: received the intro adventure at A Mob of Zeppelin Protestors&lt;br /&gt;
*step2: cleared all 80 protestors and opened access to The Red Zeppelin&lt;br /&gt;
*step3: received the intro adventure at The Red Zeppelin&lt;br /&gt;
*step4: Found Ron &amp;quot;The Weasel&amp;quot; Copperhead&lt;br /&gt;
*finished: defeated Ron &amp;quot;The Weasel&amp;quot; Copperhead and received the Copperhead Charm (rampant)&lt;br /&gt;
&lt;br /&gt;
=====zeppelinProtestors=====&lt;br /&gt;
Tracks protesters removed&lt;br /&gt;
&lt;br /&gt;
====questL11Shen====&lt;br /&gt;
Shen Copperhead&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received from the Council&lt;br /&gt;
*started: quest received, by reading your father&#039;s MacGuffin diary&lt;br /&gt;
*step1: spoke to Shen Copperhead in the Copperhead club and received first item request (and poisoning)&lt;br /&gt;
*step2: acquired first item&lt;br /&gt;
*step3: returned first item, received second item request (and poisoning)&lt;br /&gt;
*step4: acquired second item&lt;br /&gt;
*step5: returned second item, received third item request (and poisoning)&lt;br /&gt;
*step6: acquired third item&lt;br /&gt;
*step7: returned third item&lt;br /&gt;
*finished: received the Copperhead Charm&lt;br /&gt;
&lt;br /&gt;
====questL11Palindome====&lt;br /&gt;
questL11Palindome tracks the player&#039;s progress in the {{kolwiki|Quest_for_the_Holy_MacGuffin#The_Palindome|Palindome portion of the Never Odd or Even quest}}.&lt;br /&gt;
&lt;br /&gt;
* unstarted: quest not yet received from the Council&lt;br /&gt;
* started: spent at least one turn Inside the Palindome&lt;br /&gt;
* step1: arranged the photos in Dr. Awkward&#039;s office&lt;br /&gt;
* step2: read 2 Love Me, Vol. 2&lt;br /&gt;
* step3: met Mr. Alarm in his office (received the wet stunt nut stew quest)&lt;br /&gt;
* step4: cooked wet stunt nut stew&lt;br /&gt;
* step5: returned the stew to Mr. Alarm&lt;br /&gt;
* finished: defeated Dr. Awkward&lt;br /&gt;
&lt;br /&gt;
====questL11Worship====&lt;br /&gt;
questL11Worship tracks progress through the {{kolwiki|Quest_for_the_Holy_MacGuffin#Hidden_Temple_quest_.28Gotta_Worship_Them_All.29|Hidden Temple portion of the Quest for the Holy MacGuffin}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received, by reading your father&#039;s MacGuffin diary&lt;br /&gt;
*step1: (Hidden Temple opened?)&lt;br /&gt;
*step2: correct button pressed in the Temple&lt;br /&gt;
*step3: Hidden City uncovered&lt;br /&gt;
*step4: four stone triangles acquired&lt;br /&gt;
*finished: ancient amulet acquired from the Protector Spectre&lt;br /&gt;
&lt;br /&gt;
=====questL11Business=====&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: Hidden Office Building opened&lt;br /&gt;
*finished: crackling stone sphere acquired&lt;br /&gt;
&lt;br /&gt;
======hiddenOfficeProgress======&lt;br /&gt;
hiddenOfficeProgress tracks progress through the {{kolwiki|Hidden Office Building}} during the Quest for the Holy MacGuffin.&lt;br /&gt;
&lt;br /&gt;
Possible values: 0, 1, 6 - 8&lt;br /&gt;
* 0: Haven&#039;t opened the Hidden Office Building&lt;br /&gt;
* 1: Hidden Office Building is open for adventuring&lt;br /&gt;
* 6: Encountered the Protector Spirit&lt;br /&gt;
* 7: Found the stone sphere&lt;br /&gt;
* 8: Placed the stone sphere in the relevant overgrown shrine&lt;br /&gt;
&lt;br /&gt;
=====questL11Curses=====&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: Hidden Apartment Building opened&lt;br /&gt;
*finished: moss-covered stone sphere acquired&lt;br /&gt;
&lt;br /&gt;
======hiddenApartmentProgress======&lt;br /&gt;
hiddenApartmentProgress tracks progress through the {{kolwiki|Hidden Apartment Building}} during the Quest for the Holy MacGuffin.&lt;br /&gt;
&lt;br /&gt;
Possible values: 0, 1, 6 - 8&lt;br /&gt;
* 0: Haven&#039;t opened the Hidden Apartment Building&lt;br /&gt;
* 1: Hidden Apartment Building is open for adventuring&lt;br /&gt;
* 6: Encountered the Protector Spirit&lt;br /&gt;
* 7: Found the stone sphere&lt;br /&gt;
* 8: Placed the stone sphere in the relevant overgrown shrine&lt;br /&gt;
&lt;br /&gt;
=====questL11Doctor=====&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: Hidden Hospital opened&lt;br /&gt;
*finished: dripping stone sphere acquired&lt;br /&gt;
&lt;br /&gt;
======hiddenHospitalProgress======&lt;br /&gt;
hiddenHospitalProgress tracks progress through the {{kolwiki|Hidden Hospital}} during the Quest for the Holy MacGuffin.&lt;br /&gt;
&lt;br /&gt;
Possible values: 0 - 8&lt;br /&gt;
* 0: Haven&#039;t opened the Hidden Hospital&lt;br /&gt;
* 1: Hidden Hospital is open for adventuring, but haven&#039;t bowled.&lt;br /&gt;
* 6: Encountered the Protector Spirit&lt;br /&gt;
* 7: Found the stone sphere&lt;br /&gt;
* 8: Placed the stone sphere in the relevant overgrown shrine&lt;br /&gt;
&lt;br /&gt;
=====questL11Spare=====&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: Hidden Bowling Alley opened&lt;br /&gt;
*finished: scorched stone sphere acquired&lt;br /&gt;
&lt;br /&gt;
======hiddenBowlingAlleyProgress======&lt;br /&gt;
hiddenBowlingAlleyProgress tracks progress through the {{kolwiki|Hidden Bowling Alley}} during the Quest for the Holy MacGuffin.&lt;br /&gt;
&lt;br /&gt;
* 0: Haven&#039;t opened the Hidden Bowling Alley&lt;br /&gt;
* 1: Hidden Bowling Alley is open for adventuring&lt;br /&gt;
* 2-5: Number of times bowled is 1 less than hiddenBowlingAlleyProgress &lt;br /&gt;
* 6: Encountered the Protector Spirit&lt;br /&gt;
* 7: Found the stone sphere&lt;br /&gt;
* 8: Placed the stone sphere in the relevant overgrown shrine&lt;br /&gt;
&lt;br /&gt;
=====hiddenTavernUnlock=====&lt;br /&gt;
hiddenTavernUnlock tracks whether or not you have unlocked the {{kolwiki|Hidden Tavern}} during the Quest for the Holy MacGuffin.&lt;br /&gt;
&lt;br /&gt;
* When the value is equal to your number of ascensions, the Tavern is unlocked&lt;br /&gt;
* When the value is any other number, the Tavern is locked&lt;br /&gt;
&lt;br /&gt;
===questL12War===&lt;br /&gt;
questL12War tracks progress during the {{kolwiki|Mysterious Island Quest}}.&lt;br /&gt;
&lt;br /&gt;
* unstarted: quest not yet received from the Council&lt;br /&gt;
* started: quest received&lt;br /&gt;
* step1: War started&lt;br /&gt;
* finished: War ended; boss defeated (quest complete)&lt;br /&gt;
&lt;br /&gt;
====warProgress====&lt;br /&gt;
Possible values for the progress of the {{kolwiki|Mysterious Island Quest|Isle War}}:&lt;br /&gt;
*unstarted: We can still visit the small version of the Mysterious Island&lt;br /&gt;
*started: The war is in progress&lt;br /&gt;
*finished: The final boss or bosses were defeated&lt;br /&gt;
&lt;br /&gt;
====fratboysDefeated====&lt;br /&gt;
counts how many frat warriors have been killed on the battlefield (starts at 0).&lt;br /&gt;
&lt;br /&gt;
====hippiesDefeated====&lt;br /&gt;
counts how many war hippies have been killed on the battlefield (starts at 0).&lt;br /&gt;
&lt;br /&gt;
====sideDefeated====&lt;br /&gt;
Which side of the {{kolwiki|Mysterious Island Quest|Isle War}} was defeated during the Level 12 quest. &lt;br /&gt;
&lt;br /&gt;
Possible values:&lt;br /&gt;
*neither&lt;br /&gt;
*hippies&lt;br /&gt;
*fratboys&lt;br /&gt;
*both&lt;br /&gt;
&lt;br /&gt;
====sidequestArenaCompleted====&lt;br /&gt;
Tracks the status of {{kolwiki|The Mysterious Island Arena}} sidequest&lt;br /&gt;
&lt;br /&gt;
Possible values:&lt;br /&gt;
*none&lt;br /&gt;
*fratboy&lt;br /&gt;
*hippy&lt;br /&gt;
&lt;br /&gt;
====sidequestFarmCompleted====&lt;br /&gt;
Tracks the status of {{kolwiki|McMillicancuddy&#039;s Farm}} sidequest&lt;br /&gt;
&lt;br /&gt;
Possible values:&lt;br /&gt;
*none&lt;br /&gt;
*fratboy&lt;br /&gt;
*hippy&lt;br /&gt;
&lt;br /&gt;
====sidequestJunkyardCompleted====&lt;br /&gt;
Tracks the status of {{kolwiki|The Junkyard}} sidequest&lt;br /&gt;
&lt;br /&gt;
Possible values:&lt;br /&gt;
*none&lt;br /&gt;
*fratboy&lt;br /&gt;
*hippy&lt;br /&gt;
&lt;br /&gt;
====sidequestLighthouseCompleted====&lt;br /&gt;
Tracks the status of {{kolwiki|The Lighthouse}} sidequest&lt;br /&gt;
&lt;br /&gt;
Possible values:&lt;br /&gt;
*none&lt;br /&gt;
*fratboy&lt;br /&gt;
*hippy&lt;br /&gt;
&lt;br /&gt;
====sidequestNunsCompleted====&lt;br /&gt;
Tracks the status of {{kolwiki|Our Lady of Perpetual Indecision}} sidequest&lt;br /&gt;
&lt;br /&gt;
Possible values:&lt;br /&gt;
*none&lt;br /&gt;
*fratboy&lt;br /&gt;
*hippy&lt;br /&gt;
&lt;br /&gt;
====sidequestOrchardCompleted====&lt;br /&gt;
Tracks the status of {{kolwiki|The Organic Orchard}} sidequest&lt;br /&gt;
&lt;br /&gt;
Possible values:&lt;br /&gt;
*none&lt;br /&gt;
*fratboy&lt;br /&gt;
*hippy&lt;br /&gt;
&lt;br /&gt;
===questL12HippyFrat===&lt;br /&gt;
questL12War tracks progress during the {{kolwiki|Mysterious Island Quest}} in the {{kolwiki|Kingdom of Exploathing}} path&lt;br /&gt;
&lt;br /&gt;
* unstarted: quest not yet received from the Council&lt;br /&gt;
* started: quest received&lt;br /&gt;
* step1: War started&lt;br /&gt;
* finished: War ended; boss defeated (quest complete)&lt;br /&gt;
&lt;br /&gt;
===questL13Final===&lt;br /&gt;
Progress for the {{kolwiki|Naughty Sorceress Quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received from the Council&lt;br /&gt;
*started: quest received; Registration Desk open (???)&lt;br /&gt;
*step1: spent at least one turn fighting competitors&lt;br /&gt;
*step2: competitors defeated&lt;br /&gt;
*step3: sash acquired&lt;br /&gt;
*step4: met Frank&lt;br /&gt;
*step5: Hedge Maze cleared&lt;br /&gt;
*step6: Tower Door locks unlocked&lt;br /&gt;
*step7: wall of skin defeated&lt;br /&gt;
*step8: wall of meat defeated&lt;br /&gt;
*step9: wall of bones defeated&lt;br /&gt;
*step10: antique mirror handled&lt;br /&gt;
*step11: shadow class defeated&lt;br /&gt;
*step12: Naughty Sorceress defeated&lt;br /&gt;
*step13: Council informed&lt;br /&gt;
*finished: prism smashed; King Ralph freed; Astral Gash accessible&lt;br /&gt;
&lt;br /&gt;
===questL13Warehouse===&lt;br /&gt;
the final quest if you ascend as {{kolwiki|Actually Ed the Undying}} where you adventure in {{kolwiki|The Secret Council Warehouse}}.&lt;br /&gt;
*unstarted&lt;br /&gt;
*started&lt;br /&gt;
*finished&lt;br /&gt;
Current progress in the warehouse is tracked in warehouseProgress.&lt;br /&gt;
&lt;br /&gt;
==Guild Quests==&lt;br /&gt;
===questG01Meatcar===&lt;br /&gt;
&lt;br /&gt;
===questG02Whitecastle===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questG03Ego===&lt;br /&gt;
=started&lt;br /&gt;
===questG04Nemesis===&lt;br /&gt;
questG04Nemesis tracks the player&#039;s progress in the {{kolwiki|Me and My Nemesis|Nemesis quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received from the guild&lt;br /&gt;
*step1: The Unknown Your Class encountered?&lt;br /&gt;
*step2: The Unknown Your Class defeated&lt;br /&gt;
*step3: ?&lt;br /&gt;
*step4: epic weapon acquired&lt;br /&gt;
*step5: &amp;quot;fun&amp;quot; house opened&lt;br /&gt;
*step9: Have LEW&lt;br /&gt;
*step10: Talked to clan and opened the Dark Cave&lt;br /&gt;
*step11: Encountered the Dark Cave entrance at least once&lt;br /&gt;
*step12: Passed the Dark Cave entrance&lt;br /&gt;
*step15: Impassable rubble cleared and ready for final (?) showdown&lt;br /&gt;
*step16: Nemesis defeated and epic hat acquired&lt;br /&gt;
*step17: Returned to guild with epic hat&lt;br /&gt;
&lt;br /&gt;
===questG05Dark===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questG06Delivery===&lt;br /&gt;
=unstarted&lt;br /&gt;
&lt;br /&gt;
==Miscellaneous Quests==&lt;br /&gt;
===questM01Untinker===&lt;br /&gt;
Returning the screwdriver to the Untinker.&lt;br /&gt;
&lt;br /&gt;
* unstarted&lt;br /&gt;
* step1: collected the rusty screwdriver&lt;br /&gt;
* finished: screwdriver returned&lt;br /&gt;
&lt;br /&gt;
===questM02Artist===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questM03Bugbear===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questM04Galaktic===&lt;br /&gt;
=started&lt;br /&gt;
===questM05Toot===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questM06Gourd===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questM07Hammer===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questM08Baker===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questM09Rocks===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questM10Azazel===&lt;br /&gt;
questM10Azazel tracks the player&#039;s progress in the {{kolwiki|Azazel,_Ma_Belle|Azazel, Ma Belle quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: received the quest, from Azazel or the stranger in Moaning Panda Square&lt;br /&gt;
*finished: returned Azazel&#039;s talismans to him&lt;br /&gt;
&lt;br /&gt;
===questM11Postal===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questM12Pirate===&lt;br /&gt;
questM12Pirate tracks the player&#039;s progress in the {{kolwiki|Cap&#039;m Caronch Quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: Cap&#039;m Caronch&#039;s Map found&lt;br /&gt;
*step1: acquired Cap&#039;m Caronch&#039;s nasty booty from the booty crab&lt;br /&gt;
*step2: received the Orcish Frat House blueprints&lt;br /&gt;
*step3: retrieved Cap&#039;m Caronch&#039;s dentures from the Frat House&lt;br /&gt;
*step4: returned the dentures to the Cap&#039;m and accepted the beer pong challenge&lt;br /&gt;
*step5: won a game of beer pong&lt;br /&gt;
*step6: acquired pirate fledges&lt;br /&gt;
*finished: unlocked Belowdecks&lt;br /&gt;
&lt;br /&gt;
===questM13Escape===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questM14Bounty===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questM15Lol===&lt;br /&gt;
questM15Lol tracks the player&#039;s progress in {{kolwiki|A Quest, LOL}}. (No, but seriously.)&lt;br /&gt;
&lt;br /&gt;
*unstarted:&lt;br /&gt;
*finished:&lt;br /&gt;
&lt;br /&gt;
===questM16Temple===&lt;br /&gt;
quest to find the Hidden Temple&lt;br /&gt;
&lt;br /&gt;
*unstarted:&lt;br /&gt;
*finished:&lt;br /&gt;
&lt;br /&gt;
===questM17Babies===&lt;br /&gt;
Lady Spookyraven&#039;s Babies&lt;br /&gt;
&lt;br /&gt;
===questM18Swamp===&lt;br /&gt;
Marty and His Swamp Problems&lt;br /&gt;
&lt;br /&gt;
===questM19Hippy===&lt;br /&gt;
Hippy Give a Hippy a Boat...&lt;br /&gt;
&lt;br /&gt;
===questM20Necklace===&lt;br /&gt;
questM20Necklace tracks the player&#039;s progress in {{kolwiki|Spookyraven_Manor_Quest#Lady_Spookyraven.27s_Necklace_.28First_Floor.29|retrieving Lady Spookyraven&#039;s necklace}}.&lt;br /&gt;
&lt;br /&gt;
* unstarted: quest not yet received&lt;br /&gt;
* started: quest received from the telegram&lt;br /&gt;
* step1: billiards room key found&lt;br /&gt;
* step2: Encountered Pool Ghost non-combat once&lt;br /&gt;
* step3: library key found&lt;br /&gt;
* step4: necklace found&lt;br /&gt;
* finished: necklace returned to Lady Spookyraven (quest complete)&lt;br /&gt;
&lt;br /&gt;
===questM21Dance===&lt;br /&gt;
questM21Dance tracks the player&#039;s progress in the Second Floor portion of the {{kolwiki|Lady_spookyraven&#039;s_dance|Spookyraven Manor quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: quest received, from Lady Spookyraven&#039;s ghostly telegram&lt;br /&gt;
*step1: spoken to Lady Spookyraven on the Second Floor&lt;br /&gt;
*step2: acquired Lady Spookyraven&#039;s dancing things&lt;br /&gt;
*step3: returned Lady Spookyraven&#039;s dancing things to her&lt;br /&gt;
*finished: danced with Lady Spookyraven in the Ballroom&lt;br /&gt;
&lt;br /&gt;
===questM22Shirt===&lt;br /&gt;
The Shirt Off His Lack of Back&lt;br /&gt;
&lt;br /&gt;
===questM23Meatsmith===&lt;br /&gt;
Helping Make Ends Meat&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* step1 - Got a {{kolwiki|check to the Meatsmith}}.&lt;br /&gt;
* finished - Returned {{kolwiki|check to the Meatsmith}} to the Meatsmith.&lt;br /&gt;
&lt;br /&gt;
===questM24Doc===&lt;br /&gt;
What&#039;s Up, Doc?&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* step1 - Collected the Herbs and need to return them to Doc Galaktik&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
==Sea Quests==&lt;br /&gt;
===questS01OldGuy===&lt;br /&gt;
=finished&lt;br /&gt;
===questS02Monkee===&lt;br /&gt;
=unstarted&lt;br /&gt;
&lt;br /&gt;
When Mom is rescued the Quest is completed &lt;br /&gt;
&lt;br /&gt;
=finished&lt;br /&gt;
&lt;br /&gt;
====merkinQuestPath====&lt;br /&gt;
merkinQuestPath indicates which path the player has chosen in the {{kolwiki|Mer-Kin Deepcity}}, during the {{kolwiki|Sea Monkees Quest}}.&lt;br /&gt;
&lt;br /&gt;
Possible values:&lt;br /&gt;
* none: Player has not yet chosen a path&lt;br /&gt;
* gladiator: Player will fight Yog-Urt, Elder Goddess of Hatred&lt;br /&gt;
* scholar: Player will fight Shub-Jigguwatt, Elder God of Violence&lt;br /&gt;
* done: Player has completed the Sea Monkees Quest&lt;br /&gt;
&lt;br /&gt;
====skateParkStatus====&lt;br /&gt;
skateParkStatus tracks the player&#039;s progress in the {{kolwiki|war for the Skate Park}}.&lt;br /&gt;
&lt;br /&gt;
*war: the war is ongoing&lt;br /&gt;
*ice: the roller skates have been chased out&lt;br /&gt;
*roller: the ice skates have been chased out&lt;br /&gt;
*peace: both sides have been chased out&lt;br /&gt;
&lt;br /&gt;
==Quests Granted by Items==&lt;br /&gt;
===questI01Scapegoat===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questI02Beat===&lt;br /&gt;
=unstarted&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Quests Granted by Familiars==&lt;br /&gt;
===questF01Primordial===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questF02Hyboria===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questF03Future===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questF04Elves===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questF05Clancy===&lt;br /&gt;
=unstarted&lt;br /&gt;
&lt;br /&gt;
==Bug Bear Invasion Properties==&lt;br /&gt;
&lt;br /&gt;
===mothershipProgress===&lt;br /&gt;
mothershipProgress tracks progress of level completion in the {{kolwiki|Bugbear Mothership}}. It goes from 0 to 3 as that level is cleared.&lt;br /&gt;
&lt;br /&gt;
Possible values: 0-3&lt;br /&gt;
&lt;br /&gt;
===statusEngineering===&lt;br /&gt;
===statusGalley===&lt;br /&gt;
===statusMedbay===&lt;br /&gt;
===statusMorgue===&lt;br /&gt;
===statusNavigation===&lt;br /&gt;
===statusScienceLab===&lt;br /&gt;
===statusSonar===&lt;br /&gt;
===statusSpecialOps===&lt;br /&gt;
===statusWasteProcessing===&lt;br /&gt;
All of these work the same way. &lt;br /&gt;
*0-x (integers): insufficient bodata collected)&lt;br /&gt;
*open: all biodata collected and zone accessible&lt;br /&gt;
* unlocked: biodata collected but zone not yet accessible&lt;br /&gt;
* cleared: zone has been cleared&lt;br /&gt;
&lt;br /&gt;
==Quests from the Elemental Planes==&lt;br /&gt;
===Spring Break Beach===&lt;br /&gt;
The Elemental Plane of Sleaze&lt;br /&gt;
=====questESlMushStash=====&lt;br /&gt;
Jimmy&#039;s Quest to collect receipts from the Fun-Guy Mansion.&lt;br /&gt;
=====questESlAudit=====&lt;br /&gt;
Taco Dan&#039;s Quest to collect receipts from the Fun-Guy Mansion.&lt;br /&gt;
=====questESlBacteria=====&lt;br /&gt;
Broden&#039;s Quest to collect bacteria from the Fun-Guy Mansion.&lt;br /&gt;
=====questESlCheeseburger=====&lt;br /&gt;
Jimmy&#039;s Quest to collect ingredients from the Sloppy Seconds Diner.&lt;br /&gt;
=====questESlSprinkles=====&lt;br /&gt;
Taco Dan&#039;s Quest to collect ingredients from the Sloppy Seconds Diner.&lt;br /&gt;
=====questESlCocktail=====&lt;br /&gt;
Broden&#039;s Quest to collect sprinkles from the Sloppy Seconds Diner.&lt;br /&gt;
=====questESlSalt=====&lt;br /&gt;
Jimmy&#039;s Quest to collect salt from the Sunken Yacht.&lt;br /&gt;
=====questESlFish=====&lt;br /&gt;
Taco Dan&#039;s Quest to collect fish meat from the Sunken Yacht.&lt;br /&gt;
=====questESlDebt=====&lt;br /&gt;
Broden&#039;s Quest to collect broupons from the Sunken Yacht.&lt;br /&gt;
&lt;br /&gt;
===Conspiracy Island===&lt;br /&gt;
The Elemental Plane of Spooky&lt;br /&gt;
=====questESpOutOfOrder=====&lt;br /&gt;
Deep Dark Jungle - Out of Order&lt;br /&gt;
=====questESpJunglePun=====&lt;br /&gt;
Deep Dark Jungle - Pungle in the Jungle&lt;br /&gt;
=====questESpSmokes=====&lt;br /&gt;
Deep Dark Jungle - Everyone&#039;s Running Out of Smokes&lt;br /&gt;
=====questESpClipper=====&lt;br /&gt;
Mansion of Dr. Weirdeaux - The Big Clipper&lt;br /&gt;
=====questESpSerum=====&lt;br /&gt;
Mansion of Dr. Weirdeaux - Serum Sortie&lt;br /&gt;
=====questESpEVE=====&lt;br /&gt;
Secret Government Laboratory - Choking on the Rind&lt;br /&gt;
=====questESpFakeMedium=====&lt;br /&gt;
Secret Government Laboratory - Fake Medium at Large&lt;br /&gt;
=====questESpGore=====&lt;br /&gt;
Secret Government Laboratory - Gore Tipper&lt;br /&gt;
&lt;br /&gt;
{{PropertyNav}}&lt;/div&gt;</summary>
		<author><name>Malibu Stacey</name></author>
	</entry>
	<entry>
		<id>https://wiki.kolmafia.us/index.php?title=Jump_chance&amp;diff=8081</id>
		<title>Jump chance</title>
		<link rel="alternate" type="text/html" href="https://wiki.kolmafia.us/index.php?title=Jump_chance&amp;diff=8081"/>
		<updated>2020-04-09T05:19:17Z</updated>

		<summary type="html">&lt;p&gt;Malibu Stacey: fix wrong return type&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{&lt;br /&gt;
#vardefine:name|jump_chance}}{{&lt;br /&gt;
#vardefine:return_type|int}}{{&lt;br /&gt;
#vardefine:aggregate|yes}}{{&lt;br /&gt;
&lt;br /&gt;
FunctionPage|&lt;br /&gt;
name={{#var:name}}|&lt;br /&gt;
&lt;br /&gt;
function1={{Function|&lt;br /&gt;
name={{#var:name}}|&lt;br /&gt;
aggregate={{#var:aggregate}}|&lt;br /&gt;
return_type={{#var:return_type}}|&lt;br /&gt;
return_also={{#var:return_also}}&lt;br /&gt;
}}|&lt;br /&gt;
&lt;br /&gt;
function2={{Function|&lt;br /&gt;
name={{#var:name}}|&lt;br /&gt;
aggregate={{#var:aggregate}}|&lt;br /&gt;
parameter1={{Param|monster|m}}|&lt;br /&gt;
return_type={{#var:return_type}}|&lt;br /&gt;
return_also={{#var:return_also}}&lt;br /&gt;
}}|&lt;br /&gt;
&lt;br /&gt;
function3={{Function|&lt;br /&gt;
name={{#var:name}}|&lt;br /&gt;
aggregate={{#var:aggregate}}|&lt;br /&gt;
parameter1={{Param|monster|m}}|&lt;br /&gt;
parameter2={{Param|int|i}}|&lt;br /&gt;
return_type={{#var:return_type}}|&lt;br /&gt;
return_also={{#var:return_also}}&lt;br /&gt;
}}|&lt;br /&gt;
&lt;br /&gt;
function4={{Function|&lt;br /&gt;
name={{#var:name}}|&lt;br /&gt;
aggregate={{#var:aggregate}}|&lt;br /&gt;
parameter1={{Param|monster|m}}|&lt;br /&gt;
parameter2={{Param|int|i}}|&lt;br /&gt;
parameter3={{Param|int|ml}}|&lt;br /&gt;
return_type={{#var:return_type}}|&lt;br /&gt;
return_also={{#var:return_also}}&lt;br /&gt;
}}|&lt;br /&gt;
&lt;br /&gt;
function5={{Function|&lt;br /&gt;
name={{#var:name}}|&lt;br /&gt;
aggregate={{#var:aggregate}}|&lt;br /&gt;
parameter1={{Param|location|l}}|&lt;br /&gt;
return_type={{#var:return_type}}|&lt;br /&gt;
return_also={{#var:return_also}}&lt;br /&gt;
}}|&lt;br /&gt;
&lt;br /&gt;
function6={{Function|&lt;br /&gt;
name={{#var:name}}|&lt;br /&gt;
aggregate={{#var:aggregate}}|&lt;br /&gt;
parameter1={{Param|location|l}}|&lt;br /&gt;
parameter2={{Param|int|i}}|&lt;br /&gt;
return_type={{#var:return_type}}|&lt;br /&gt;
return_also={{#var:return_also}}&lt;br /&gt;
}}|&lt;br /&gt;
&lt;br /&gt;
function7={{Function|&lt;br /&gt;
name={{#var:name}}|&lt;br /&gt;
aggregate={{#var:aggregate}}|&lt;br /&gt;
parameter1={{Param|location|l}}|&lt;br /&gt;
parameter2={{Param|int|i}}|&lt;br /&gt;
parameter3={{Param|int|ml}}|&lt;br /&gt;
return_type={{#var:return_type}}|&lt;br /&gt;
return_also={{#var:return_also}}&lt;br /&gt;
}}|&lt;br /&gt;
&lt;br /&gt;
function_description=Returns the chance of successfully getting the jump against the monster or in the location, optionally at a particular initiative value and monster level.|&lt;br /&gt;
&lt;br /&gt;
code1={{CodeSample|&lt;br /&gt;
title=Code Samples|&lt;br /&gt;
description=The following example is a function that tells you the jump chance against the various enemies at a given location.|&lt;br /&gt;
code=&lt;br /&gt;
&amp;lt;syntaxhighlight&amp;gt;&lt;br /&gt;
void location_jump (location place) {&lt;br /&gt;
   print(&amp;quot;&amp;quot;+place+&amp;quot; has the following enemies that you might get the jump on:&amp;quot;, &amp;quot;purple&amp;quot;);&lt;br /&gt;
   foreach mob, freq in appearance_rates(place) //Appearance rates is used to weed out bosses/one time specials/etc&lt;br /&gt;
      if (freq &amp;gt; 0) &lt;br /&gt;
         print(&amp;quot;The jump chance you have against &amp;quot;+mob+&amp;quot; is &amp;quot;+jump_chance(mob)+&amp;quot;.&amp;quot;, &amp;quot;blue&amp;quot;);&lt;br /&gt;
      &lt;br /&gt;
}&lt;br /&gt;
location_jump($location[The Black Forest]);&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;|&lt;br /&gt;
moreinfo= For more information on jump opponents visit KoL Wiki&#039;s [http://kol.coldfront.net/thekolwiki/index.php/Talk:Combat_Initiative Combat Initiative]&lt;br /&gt;
}}|&lt;br /&gt;
&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Malibu Stacey</name></author>
	</entry>
	<entry>
		<id>https://wiki.kolmafia.us/index.php?title=Quest_Tracking_Preferences&amp;diff=8248</id>
		<title>Quest Tracking Preferences</title>
		<link rel="alternate" type="text/html" href="https://wiki.kolmafia.us/index.php?title=Quest_Tracking_Preferences&amp;diff=8248"/>
		<updated>2019-11-10T06:44:47Z</updated>

		<summary type="html">&lt;p&gt;Malibu Stacey: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{TOCright}}&lt;br /&gt;
KoLMafia internally tracks progress for a number of quests. These are stored as preferences in settings\[charactername]_prefs.&lt;br /&gt;
&lt;br /&gt;
==Quests Granted by Familiars==&lt;br /&gt;
===questF01Primordial===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questF02Hyboria===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questF03Future===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questF04Elves===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questF05Clancy===&lt;br /&gt;
=unstarted&lt;br /&gt;
&lt;br /&gt;
==Guild Quests==&lt;br /&gt;
===questG01Meatcar===&lt;br /&gt;
&lt;br /&gt;
===questG02Whitecastle===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questG03Ego===&lt;br /&gt;
=started&lt;br /&gt;
===questG04Nemesis===&lt;br /&gt;
questG04Nemesis tracks the player&#039;s progress in the {{kolwiki|Me and My Nemesis|Nemesis quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received from the guild&lt;br /&gt;
*step1: The Unknown Your Class encountered?&lt;br /&gt;
*step2: The Unknown Your Class defeated&lt;br /&gt;
*step3: ?&lt;br /&gt;
*step4: epic weapon acquired&lt;br /&gt;
*step5: &amp;quot;fun&amp;quot; house opened&lt;br /&gt;
*step9: Have LEW&lt;br /&gt;
*step10: Talked to clan and opened the Dark Cave&lt;br /&gt;
*step11: Encountered the Dark Cave entrance at least once&lt;br /&gt;
*step12: Passed the Dark Cave entrance&lt;br /&gt;
*step15: Impassable rubble cleared and ready for final (?) showdown&lt;br /&gt;
*step16: Nemesis defeated and epic hat acquired&lt;br /&gt;
*step17: Returned to guild with epic hat&lt;br /&gt;
&lt;br /&gt;
===questG05Dark===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questG06Delivery===&lt;br /&gt;
=unstarted&lt;br /&gt;
&lt;br /&gt;
==Quests Granted by Items==&lt;br /&gt;
===questI01Scapegoat===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questI02Beat===&lt;br /&gt;
=unstarted&lt;br /&gt;
&lt;br /&gt;
==Council Quests==&lt;br /&gt;
===questL02Larva===&lt;br /&gt;
questL02Larva tracks the player&#039;s progress in the {{kolwiki|Spooky_Forest_Quest|Spooky Forest quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received from the Council&lt;br /&gt;
*step1: mosquito larva acquired&lt;br /&gt;
*finished: mosquito larva returned to the Council&lt;br /&gt;
&lt;br /&gt;
===questL03Rat===&lt;br /&gt;
questL03Rat tracks the player&#039;s progress in the {{kolwiki|Typical_Tavern_Quest|Typical Tavern quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received from the Council&lt;br /&gt;
*step1: spoke to Bart Ender in the Typical Tavern&lt;br /&gt;
*step2: turned off the Rat Faucet&lt;br /&gt;
*finished: told Bart about the Faucet&lt;br /&gt;
&lt;br /&gt;
===questL04Bat===&lt;br /&gt;
questL04Bat tracks the player&#039;s progress in the {{kolwiki|Boss_Bat_Quest|Boss Bat quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received from the Council&lt;br /&gt;
*step1-step3: demolished 1-3 walls in the Bat Hole&lt;br /&gt;
*step4: Boss Bat defeated&lt;br /&gt;
*finished: returned to the Council to report success&lt;br /&gt;
&lt;br /&gt;
===questL05Goblin===&lt;br /&gt;
questL05Goblin tracks the player&#039;s progress in the {{kolwiki|The_King_of_Cobb&#039;s_Knob_Quest|The King of Cobb&#039;s Knob quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received from the Council&lt;br /&gt;
*step1: Cobb&#039;s Knob map decrypted&lt;br /&gt;
*finished: Knob Goblin King defeated&lt;br /&gt;
&lt;br /&gt;
===questL06Friar===&lt;br /&gt;
questL06Friar tracks the player&#039;s progress in the {{kolwiki|Deep_Fat_Friars&#039;_Gate_Quest|Friars&#039; quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received from the Council&lt;br /&gt;
*step1: details received from the Friars&lt;br /&gt;
*step2: box of birthday candles, dodecagram &amp;amp; eldritch butterknife acquired.&lt;br /&gt;
*finished: cleansed the taint&lt;br /&gt;
&lt;br /&gt;
===questL07Cyrptic===&lt;br /&gt;
questL07Cyrptic tracks the player&#039;s progress in the {{kolwiki|Undefile_the_Cyrpt_Quest|Undefile the Cyrpt quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received from the Council&lt;br /&gt;
*finished: Bonerdagon defeated&lt;br /&gt;
&lt;br /&gt;
===questL08Trapper===&lt;br /&gt;
&lt;br /&gt;
questL08Trapper tracks the player&#039;s progress in the {{kolwiki|Mt._McLargeHuge_Quest|Mt. McLargeHuge Quest}}.&lt;br /&gt;
&lt;br /&gt;
* unstarted: quest not yet received from the Council&lt;br /&gt;
* started: quest received from the Council&lt;br /&gt;
* step1: cheese and ore requested by the Trapper&lt;br /&gt;
* step2: cheese and ore returned to the Trapper&lt;br /&gt;
* step3: discovered the stairs up to the Mist-Shrouded Peak (via either route)&lt;br /&gt;
* step4: fought at least one yeti&lt;br /&gt;
* step5: defeated the monster at the top of the Peak&lt;br /&gt;
* finished: returned the fur to the Trapper (quest complete)&lt;br /&gt;
&lt;br /&gt;
===questL09Topping===&lt;br /&gt;
questL08Trapper tracks the player&#039;s progress in the {{kolwiki|Orc_Chasm_Quest|Orc Chasm Quest}}.&lt;br /&gt;
&lt;br /&gt;
* unstarted: quest not yet received from the Council&lt;br /&gt;
* started: quest received from the Council&lt;br /&gt;
* step1: bridge built&lt;br /&gt;
* step2: like, totally got the deets from the Highland Lord&lt;br /&gt;
* step3: lit all three signal fires&lt;br /&gt;
* finished: quest complete&lt;br /&gt;
&lt;br /&gt;
====booPeakProgress====&lt;br /&gt;
booPeakProgress tracks the hauntedness level of {{kolwiki|A-boo Peak}}. A value of 18, for instance, indicates that A-boo Peak is 18% haunted.&lt;br /&gt;
&lt;br /&gt;
Possible values: 0 - 100&lt;br /&gt;
&lt;br /&gt;
====chasmBridgeProgress====&lt;br /&gt;
chasmBridgeProgress tracks the player&#039;s progress in building a bridge across the {{kolwiki|Orc Chasm}}. A value of 10, for instance, indicates that the bridge is 10 planks long.&lt;br /&gt;
&lt;br /&gt;
Possible values: 0 - 30&lt;br /&gt;
&lt;br /&gt;
====oilPeakProgress====&lt;br /&gt;
oilPeakProgress tracks the remaining pressure at {{kolwiki|Oil Peak}}. It decreases as the player reduces the pressure in the zone.&lt;br /&gt;
&lt;br /&gt;
Possible values: 0.00 - 310.66&lt;br /&gt;
* 310.66: Pressure not yet reduced&lt;br /&gt;
* 0.00: Subquest completed&lt;br /&gt;
&lt;br /&gt;
====twinPeakProgress====&lt;br /&gt;
twinPeakProgress is a nibble bitmask with least significant bit set for the first choice and the most significant for the fourth. You can parse this with bitwise operators. Here&#039;s some code that demonstrates how to use it.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight&amp;gt;&lt;br /&gt;
void comma(buffer b, string s) {&lt;br /&gt;
	if(length(b) &amp;gt; 0)&lt;br /&gt;
		b.append(&amp;quot;, &amp;quot;);&lt;br /&gt;
	b.append(s);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
boolean mysterious(int progress, int c) { &lt;br /&gt;
	return (progress &amp;amp; (1 &amp;lt;&amp;lt; c)) == 0;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
string twinPeak() {&lt;br /&gt;
	int p = get_property(&amp;quot;twinPeakProgress&amp;quot;).to_int();&lt;br /&gt;
	buffer need;&lt;br /&gt;
	if(mysterious(p, 0)) need.comma(&amp;quot;4 Stench Resistance&amp;quot;);&lt;br /&gt;
	if(mysterious(p, 1)) need.comma(&amp;quot;+50% Item Drop&amp;quot;);&lt;br /&gt;
	if(mysterious(p, 2)) need.comma(&amp;quot;Jar of Oil&amp;quot;);&lt;br /&gt;
	// Only check for final if first three complete&lt;br /&gt;
	if(length(need) == 0) {&lt;br /&gt;
		if(mysterious(p, 3))&lt;br /&gt;
			return &amp;quot;Need +40% Initiative&amp;quot;;&lt;br /&gt;
		return &amp;quot;Twin Peak Completed&amp;quot;;&lt;br /&gt;
	}&lt;br /&gt;
	return &amp;quot;Need &amp;quot; + need;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===questL10Garbage===&lt;br /&gt;
&lt;br /&gt;
questL10Garbage tracks the player&#039;s progress in {{kolwiki|Giant_Trash_Quest|the Giant Trash Quest}}.&lt;br /&gt;
&lt;br /&gt;
* unstarted: quest not yet received from the Council&lt;br /&gt;
* started: quest received from the Council&lt;br /&gt;
* step2: giant beanstalk grown&lt;br /&gt;
* step3 - step6: four Immateria acquired&lt;br /&gt;
* step7: S.O.C.K. acquired ({{kolwiki|The_Castle_in_the_Clouds_in_the_Sky_(Basement)|Castle Basement}} open)&lt;br /&gt;
* step8: {{kolwiki|The_Castle_in_the_Clouds_in_the_Sky_(Basement)|Castle Ground Floor}} open&lt;br /&gt;
* step9: {{kolwiki|The_Castle_in_the_Clouds_in_the_Sky_(Basement)|Castle Top Floor}} open&lt;br /&gt;
* step10: chore wheel turned&lt;br /&gt;
* finished: returned to the Council&lt;br /&gt;
&lt;br /&gt;
===questL11MacGuffin===&lt;br /&gt;
questL11MacGuffin tracks the player&#039;s progress in the {{kolwiki|Quest_for_the_Holy_MacGuffin|Holy MacGuffin quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: quest received from the Council&lt;br /&gt;
*step1: Black Market located (blackForestProgress == 5)&lt;br /&gt;
*step2: retrieved your father&#039;s MacGuffin diary&lt;br /&gt;
*finished: returned the MacGuffin to the Council&lt;br /&gt;
&lt;br /&gt;
====questL11Black====&lt;br /&gt;
questL11Black tracks the player&#039;s progress in the {{kolwiki|Quest_for_the_Holy_MacGuffin|Black Market portion of the Holy MacGuffin quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started:  quest received from the Council&lt;br /&gt;
*step1: spent at least one turn in the Black Forest&lt;br /&gt;
*step2: Black Market found&lt;br /&gt;
*step3: forged identification documents purchased&lt;br /&gt;
*finished: MacGuffin diary acquired&lt;br /&gt;
&lt;br /&gt;
=====blackForestProgress=====&lt;br /&gt;
blackForestProgress tracks the player&#039;s progress in [http://kolmafia.us/showthread.php?15995 discovering the Black Market].&lt;br /&gt;
&lt;br /&gt;
*0: no progress in exploring the Forest&lt;br /&gt;
*1: blackberry bushes located&lt;br /&gt;
*2: black cottage located&lt;br /&gt;
*3: black mineshaft located&lt;br /&gt;
*4: black church located&lt;br /&gt;
*5: black market located&lt;br /&gt;
&lt;br /&gt;
====questL11Manor====&lt;br /&gt;
questL11Manor tracks the player&#039;s progress in the {{kolwiki|Quest_for_the_Holy_MacGuffin#Spookyraven_quest_.28In_a_Manor_of_Spooking|Spookyraven Manor portion of the Holy Macguffin quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received, by reading your father&#039;s MacGuffin diary&lt;br /&gt;
*step1: Spookyraven Manor Cellar opened&lt;br /&gt;
*step2: recipe: mortar-dissolving solution read&lt;br /&gt;
*step3: Suspicious Masonry demolished&lt;br /&gt;
*finished: Lord Spookyraven defeated&lt;br /&gt;
&lt;br /&gt;
=====spookyravenRecipeUsed=====&lt;br /&gt;
spookyravenRecipeUsed tracks whether and how the player has read recipe: mortar-dissolving solution&lt;br /&gt;
&lt;br /&gt;
*none: recipe not yet read&lt;br /&gt;
*with_glasses: recipe read with Lord Spookyraven&#039;s spectacles&lt;br /&gt;
*no_glasses: recipe read without the spectacles&lt;br /&gt;
&lt;br /&gt;
====questL11Desert====&lt;br /&gt;
Explore the Arid, Extra-Dry Desert to find the pyramid mentioned in your father&#039;s journal.&lt;br /&gt;
&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: quest started by reading your father&#039;s MacGuffin diary&lt;br /&gt;
*finished: discovered the Small Pyramid&lt;br /&gt;
&lt;br /&gt;
=====desertExploration=====&lt;br /&gt;
*0: haven&#039;t yet started exploring the Desert&lt;br /&gt;
*1-99: Desert exploration in progress&lt;br /&gt;
*100: Desert fully explored&lt;br /&gt;
&lt;br /&gt;
====questL11Pyramid====&lt;br /&gt;
questL11Pyramid tracks the player&#039;s progress in the {{kolwiki|Quest_for_the_Holy_MacGuffin#A_Small_Pyramid|Pyramid portion of the Holy Macguffin quest}}.&lt;br /&gt;
&lt;br /&gt;
* unstarted: Ancient Buried Pyramid not yet discovered&lt;br /&gt;
* started: Ancient Buried Pyramid discovered&lt;br /&gt;
* step1: Middle Chamber opened&lt;br /&gt;
* step2: The Lower Chambers opened&lt;br /&gt;
* step3: Control Room opened&lt;br /&gt;
* finished: MacGuffin retrieved (quest complete)&lt;br /&gt;
&lt;br /&gt;
=====gnasirProgress=====&lt;br /&gt;
gnasirProgress is a nibble bitmask with one bit for each possible way you can advance {{kolwiki|Quest_for_the_Holy_MacGuffin|Gnasir&#039;s quest}}. You can parse this with bitwise operators. Here&#039;s some code that demonstrates how to use it.&lt;br /&gt;
&amp;lt;syntaxhighlight&amp;gt;&lt;br /&gt;
int gnasirProgress = get_property(&amp;quot;gnasirProgress&amp;quot;).to_int();&lt;br /&gt;
buffer gnasir;&lt;br /&gt;
if((gnasirProgress &amp;amp; 1) == 0)&lt;br /&gt;
	print(&amp;quot;Gnasir wants a stone rose&amp;quot;);&lt;br /&gt;
if((gnasirProgress &amp;amp; 2) == 0)&lt;br /&gt;
	print(&amp;quot;Gnasir wants a can of black paint&amp;quot;);&lt;br /&gt;
if((gnasirProgress &amp;amp; 4) == 0)&lt;br /&gt;
	print(&amp;quot;Gnasir wants a killing jar&amp;quot;);&lt;br /&gt;
if((gnasirProgress &amp;amp; 8) == 0)&lt;br /&gt;
	print(&amp;quot;Gnasir wants a 15 worm-riding manual page&amp;quot;);&lt;br /&gt;
if((gnasirProgress &amp;amp; 16) == 0)&lt;br /&gt;
	print(&amp;quot;You need to use a drum machine to ride the worm&amp;quot;);&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====questL11Ron====&lt;br /&gt;
Ron Copperhead&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: quest received, by reading your father&#039;s MacGuffin diary&lt;br /&gt;
*step1: received the intro adventure at A Mob of Zeppelin Protestors&lt;br /&gt;
*step2: cleared all 80 protestors and opened access to The Red Zeppelin&lt;br /&gt;
*step3: received the intro adventure at The Red Zeppelin&lt;br /&gt;
*step4: Found Ron &amp;quot;The Weasel&amp;quot; Copperhead&lt;br /&gt;
*finished: defeated Ron &amp;quot;The Weasel&amp;quot; Copperhead and received the Copperhead Charm (rampant)&lt;br /&gt;
&lt;br /&gt;
=====zeppelinProtestors=====&lt;br /&gt;
Tracks protesters removed&lt;br /&gt;
&lt;br /&gt;
====questL11Shen====&lt;br /&gt;
Shen Copperhead&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received from the Council&lt;br /&gt;
*started: quest received, by reading your father&#039;s MacGuffin diary&lt;br /&gt;
*step1: spoke to Shen Copperhead in the Copperhead club and received first item request (and poisoning)&lt;br /&gt;
*step2: acquired first item&lt;br /&gt;
*step3: returned first item, received second item request (and poisoning)&lt;br /&gt;
*step4: acquired second item&lt;br /&gt;
*step5: returned second item, received third item request (and poisoning)&lt;br /&gt;
*step6: acquired third item&lt;br /&gt;
*step7: returned third item&lt;br /&gt;
*finished: received the Copperhead Charm&lt;br /&gt;
&lt;br /&gt;
====questL11Palindome====&lt;br /&gt;
questL11Palindome tracks the player&#039;s progress in the {{kolwiki|Quest_for_the_Holy_MacGuffin#The_Palindome|Palindome portion of the Never Odd or Even quest}}.&lt;br /&gt;
&lt;br /&gt;
* unstarted: quest not yet received from the Council&lt;br /&gt;
* started: spent at least one turn Inside the Palindome&lt;br /&gt;
* step1: arranged the photos in Dr. Awkward&#039;s office&lt;br /&gt;
* step2: read 2 Love Me, Vol. 2&lt;br /&gt;
* step3: met Mr. Alarm in his office (received the wet stunt nut stew quest)&lt;br /&gt;
* step4: cooked wet stunt nut stew&lt;br /&gt;
* step5: returned the stew to Mr. Alarm&lt;br /&gt;
* finished: defeated Dr. Awkward&lt;br /&gt;
&lt;br /&gt;
====questL11Worship====&lt;br /&gt;
questL11Worship tracks progress through the {{kolwiki|Quest_for_the_Holy_MacGuffin#Hidden_Temple_quest_.28Gotta_Worship_Them_All.29|Hidden Temple portion of the Quest for the Holy MacGuffin}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received, by reading your father&#039;s MacGuffin diary&lt;br /&gt;
*step1: (Hidden Temple opened?)&lt;br /&gt;
*step2: correct button pressed in the Temple&lt;br /&gt;
*step3: Hidden City uncovered&lt;br /&gt;
*step4: four stone triangles acquired&lt;br /&gt;
*finished: ancient amulet acquired from the Protector Spectre&lt;br /&gt;
&lt;br /&gt;
=====questL11Business=====&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: Hidden Office Building opened&lt;br /&gt;
*finished: crackling stone sphere acquired&lt;br /&gt;
&lt;br /&gt;
======hiddenOfficeProgress======&lt;br /&gt;
hiddenOfficeProgress tracks progress through the {{kolwiki|Hidden Office Building}} during the Quest for the Holy MacGuffin.&lt;br /&gt;
&lt;br /&gt;
Possible values: 0, 1, 6 - 8&lt;br /&gt;
* 0: Haven&#039;t opened the Hidden Office Building&lt;br /&gt;
* 1: Hidden Office Building is open for adventuring&lt;br /&gt;
* 6: Encountered the Protector Spirit&lt;br /&gt;
* 7: Found the stone sphere&lt;br /&gt;
* 8: Placed the stone sphere in the relevant overgrown shrine&lt;br /&gt;
&lt;br /&gt;
=====questL11Curses=====&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: Hidden Apartment Building opened&lt;br /&gt;
*finished: moss-covered stone sphere acquired&lt;br /&gt;
&lt;br /&gt;
======hiddenApartmentProgress======&lt;br /&gt;
hiddenApartmentProgress tracks progress through the {{kolwiki|Hidden Apartment Building}} during the Quest for the Holy MacGuffin.&lt;br /&gt;
&lt;br /&gt;
Possible values: 0, 1, 6 - 8&lt;br /&gt;
* 0: Haven&#039;t opened the Hidden Apartment Building&lt;br /&gt;
* 1: Hidden Apartment Building is open for adventuring&lt;br /&gt;
* 6: Encountered the Protector Spirit&lt;br /&gt;
* 7: Found the stone sphere&lt;br /&gt;
* 8: Placed the stone sphere in the relevant overgrown shrine&lt;br /&gt;
&lt;br /&gt;
=====questL11Doctor=====&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: Hidden Hospital opened&lt;br /&gt;
*finished: dripping stone sphere acquired&lt;br /&gt;
&lt;br /&gt;
======hiddenHospitalProgress======&lt;br /&gt;
hiddenHospitalProgress tracks progress through the {{kolwiki|Hidden Hospital}} during the Quest for the Holy MacGuffin.&lt;br /&gt;
&lt;br /&gt;
Possible values: 0 - 8&lt;br /&gt;
* 0: Haven&#039;t opened the Hidden Hospital&lt;br /&gt;
* 1: Hidden Hospital is open for adventuring, but haven&#039;t bowled.&lt;br /&gt;
* 6: Encountered the Protector Spirit&lt;br /&gt;
* 7: Found the stone sphere&lt;br /&gt;
* 8: Placed the stone sphere in the relevant overgrown shrine&lt;br /&gt;
&lt;br /&gt;
=====questL11Spare=====&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: Hidden Bowling Alley opened&lt;br /&gt;
*finished: scorched stone sphere acquired&lt;br /&gt;
&lt;br /&gt;
======hiddenBowlingAlleyProgress======&lt;br /&gt;
hiddenBowlingAlleyProgress tracks progress through the {{kolwiki|Hidden Bowling Alley}} during the Quest for the Holy MacGuffin.&lt;br /&gt;
&lt;br /&gt;
* 0: Haven&#039;t opened the Hidden Bowling Alley&lt;br /&gt;
* 1: Hidden Bowling Alley is open for adventuring&lt;br /&gt;
* 2-5: Number of times bowled is 1 less than hiddenBowlingAlleyProgress &lt;br /&gt;
* 6: Encountered the Protector Spirit&lt;br /&gt;
* 7: Found the stone sphere&lt;br /&gt;
* 8: Placed the stone sphere in the relevant overgrown shrine&lt;br /&gt;
&lt;br /&gt;
=====hiddenTavernUnlock=====&lt;br /&gt;
hiddenTavernUnlock tracks whether or not you have unlocked the {{kolwiki|Hidden Tavern}} during the Quest for the Holy MacGuffin.&lt;br /&gt;
&lt;br /&gt;
* When the value is equal to your number of ascensions, the Tavern is unlocked&lt;br /&gt;
* When the value is any other number, the Tavern is locked&lt;br /&gt;
&lt;br /&gt;
===questL12War===&lt;br /&gt;
questL12War tracks progress during the {{kolwiki|Mysterious Island Quest}}.&lt;br /&gt;
&lt;br /&gt;
* unstarted: quest not yet received from the Council&lt;br /&gt;
* started: quest received&lt;br /&gt;
* step1: War started&lt;br /&gt;
* finished: War ended; boss defeated (quest complete)&lt;br /&gt;
&lt;br /&gt;
====warProgress====&lt;br /&gt;
Possible values for the progress of the {{kolwiki|Mysterious Island Quest|Isle War}}:&lt;br /&gt;
*unstarted: We can still visit the small version of the Mysterious Island&lt;br /&gt;
*started: The war is in progress&lt;br /&gt;
*finished: The final boss or bosses were defeated&lt;br /&gt;
&lt;br /&gt;
====fratboysDefeated====&lt;br /&gt;
counts how many frat warriors have been killed on the battlefield (starts at 0).&lt;br /&gt;
&lt;br /&gt;
====hippiesDefeated====&lt;br /&gt;
counts how many war hippies have been killed on the battlefield (starts at 0).&lt;br /&gt;
&lt;br /&gt;
====sideDefeated====&lt;br /&gt;
Which side of the {{kolwiki|Mysterious Island Quest|Isle War}} was defeated during the Level 12 quest. &lt;br /&gt;
&lt;br /&gt;
Possible values:&lt;br /&gt;
*neither&lt;br /&gt;
*hippies&lt;br /&gt;
*fratboys&lt;br /&gt;
*both&lt;br /&gt;
&lt;br /&gt;
====sidequestArenaCompleted====&lt;br /&gt;
Tracks the status of {{kolwiki|The Mysterious Island Arena}} sidequest&lt;br /&gt;
&lt;br /&gt;
Possible values:&lt;br /&gt;
*none&lt;br /&gt;
*fratboy&lt;br /&gt;
*hippy&lt;br /&gt;
&lt;br /&gt;
====sidequestFarmCompleted====&lt;br /&gt;
Tracks the status of {{kolwiki|McMillicancuddy&#039;s Farm}} sidequest&lt;br /&gt;
&lt;br /&gt;
Possible values:&lt;br /&gt;
*none&lt;br /&gt;
*fratboy&lt;br /&gt;
*hippy&lt;br /&gt;
&lt;br /&gt;
====sidequestJunkyardCompleted====&lt;br /&gt;
Tracks the status of {{kolwiki|The Junkyard}} sidequest&lt;br /&gt;
&lt;br /&gt;
Possible values:&lt;br /&gt;
*none&lt;br /&gt;
*fratboy&lt;br /&gt;
*hippy&lt;br /&gt;
&lt;br /&gt;
====sidequestLighthouseCompleted====&lt;br /&gt;
Tracks the status of {{kolwiki|The Lighthouse}} sidequest&lt;br /&gt;
&lt;br /&gt;
Possible values:&lt;br /&gt;
*none&lt;br /&gt;
*fratboy&lt;br /&gt;
*hippy&lt;br /&gt;
&lt;br /&gt;
====sidequestNunsCompleted====&lt;br /&gt;
Tracks the status of {{kolwiki|Our Lady of Perpetual Indecision}} sidequest&lt;br /&gt;
&lt;br /&gt;
Possible values:&lt;br /&gt;
*none&lt;br /&gt;
*fratboy&lt;br /&gt;
*hippy&lt;br /&gt;
&lt;br /&gt;
====sidequestOrchardCompleted====&lt;br /&gt;
Tracks the status of {{kolwiki|The Organic Orchard}} sidequest&lt;br /&gt;
&lt;br /&gt;
Possible values:&lt;br /&gt;
*none&lt;br /&gt;
*fratboy&lt;br /&gt;
*hippy&lt;br /&gt;
&lt;br /&gt;
===questL12HippyFrat===&lt;br /&gt;
questL12War tracks progress during the {{kolwiki|Mysterious Island Quest}} in the {{kolwiki|Kingdom of Exploathing}} path&lt;br /&gt;
&lt;br /&gt;
* unstarted: quest not yet received from the Council&lt;br /&gt;
* started: quest received&lt;br /&gt;
* step1: War started&lt;br /&gt;
* finished: War ended; boss defeated (quest complete)&lt;br /&gt;
&lt;br /&gt;
===questL13Final===&lt;br /&gt;
Progress for the {{kolwiki|Naughty Sorceress Quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received from the Council&lt;br /&gt;
*started: quest received; Registration Desk open (???)&lt;br /&gt;
*step1: spent at least one turn fighting competitors&lt;br /&gt;
*step2: competitors defeated&lt;br /&gt;
*step3: sash acquired&lt;br /&gt;
*step4: met Frank&lt;br /&gt;
*step5: Hedge Maze cleared&lt;br /&gt;
*step6: Tower Door locks unlocked&lt;br /&gt;
*step7: wall of skin defeated&lt;br /&gt;
*step8: wall of meat defeated&lt;br /&gt;
*step9: wall of bones defeated&lt;br /&gt;
*step10: antique mirror handled&lt;br /&gt;
*step11: shadow class defeated&lt;br /&gt;
*step12: Naughty Sorceress defeated&lt;br /&gt;
*step13: Council informed&lt;br /&gt;
*finished: prism smashed; King Ralph freed; Astral Gash accessible&lt;br /&gt;
&lt;br /&gt;
===questL13Warehouse===&lt;br /&gt;
the final quest if you ascend as {{kolwiki|Actually Ed the Undying}} where you adventure in {{kolwiki|The Secret Council Warehouse}}.&lt;br /&gt;
*unstarted&lt;br /&gt;
*started&lt;br /&gt;
*finished&lt;br /&gt;
Current progress in the warehouse is tracked in warehouseProgress.&lt;br /&gt;
&lt;br /&gt;
==Miscellaneous Quests==&lt;br /&gt;
===questM01Untinker===&lt;br /&gt;
Returning the screwdriver to the Untinker.&lt;br /&gt;
&lt;br /&gt;
* unstarted&lt;br /&gt;
* step1: collected the rusty screwdriver&lt;br /&gt;
* finished: screwdriver returned&lt;br /&gt;
&lt;br /&gt;
===questM02Artist===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questM03Bugbear===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questM04Galaktic===&lt;br /&gt;
=started&lt;br /&gt;
===questM05Toot===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questM06Gourd===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questM07Hammer===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questM08Baker===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questM09Rocks===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questM10Azazel===&lt;br /&gt;
questM10Azazel tracks the player&#039;s progress in the {{kolwiki|Azazel,_Ma_Belle|Azazel, Ma Belle quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: received the quest, from Azazel or the stranger in Moaning Panda Square&lt;br /&gt;
*finished: returned Azazel&#039;s talismans to him&lt;br /&gt;
&lt;br /&gt;
===questM11Postal===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questM12Pirate===&lt;br /&gt;
questM12Pirate tracks the player&#039;s progress in the {{kolwiki|Cap&#039;m Caronch Quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: Cap&#039;m Caronch&#039;s Map found&lt;br /&gt;
*step1: acquired Cap&#039;m Caronch&#039;s nasty booty from the booty crab&lt;br /&gt;
*step2: received the Orcish Frat House blueprints&lt;br /&gt;
*step3: retrieved Cap&#039;m Caronch&#039;s dentures from the Frat House&lt;br /&gt;
*step4: returned the dentures to the Cap&#039;m and accepted the beer pong challenge&lt;br /&gt;
*step5: won a game of beer pong&lt;br /&gt;
*step6: acquired pirate fledges&lt;br /&gt;
*finished: unlocked Belowdecks&lt;br /&gt;
&lt;br /&gt;
===questM13Escape===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questM14Bounty===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questM15Lol===&lt;br /&gt;
questM15Lol tracks the player&#039;s progress in {{kolwiki|A Quest, LOL}}. (No, but seriously.)&lt;br /&gt;
&lt;br /&gt;
*unstarted:&lt;br /&gt;
*finished:&lt;br /&gt;
&lt;br /&gt;
===questM16Temple===&lt;br /&gt;
quest to find the Hidden Temple&lt;br /&gt;
&lt;br /&gt;
*unstarted:&lt;br /&gt;
*finished:&lt;br /&gt;
&lt;br /&gt;
===questM17Babies===&lt;br /&gt;
Lady Spookyraven&#039;s Babies&lt;br /&gt;
&lt;br /&gt;
===questM18Swamp===&lt;br /&gt;
Marty and His Swamp Problems&lt;br /&gt;
&lt;br /&gt;
===questM19Hippy===&lt;br /&gt;
Hippy Give a Hippy a Boat...&lt;br /&gt;
&lt;br /&gt;
===questM20Necklace===&lt;br /&gt;
questM20Necklace tracks the player&#039;s progress in {{kolwiki|Spookyraven_Manor_Quest#Lady_Spookyraven.27s_Necklace_.28First_Floor.29|retrieving Lady Spookyraven&#039;s necklace}}.&lt;br /&gt;
&lt;br /&gt;
* unstarted: quest not yet received&lt;br /&gt;
* started: quest received from the telegram&lt;br /&gt;
* step1: billiards room key found&lt;br /&gt;
* step2: Encountered Pool Ghost non-combat once&lt;br /&gt;
* step3: library key found&lt;br /&gt;
* step4: necklace found&lt;br /&gt;
* finished: necklace returned to Lady Spookyraven (quest complete)&lt;br /&gt;
&lt;br /&gt;
===questM21Dance===&lt;br /&gt;
questM21Dance tracks the player&#039;s progress in the Second Floor portion of the {{kolwiki|Lady_spookyraven&#039;s_dance|Spookyraven Manor quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: quest received, from Lady Spookyraven&#039;s ghostly telegram&lt;br /&gt;
*step1: spoken to Lady Spookyraven on the Second Floor&lt;br /&gt;
*step2: acquired Lady Spookyraven&#039;s dancing things&lt;br /&gt;
*step3: returned Lady Spookyraven&#039;s dancing things to her&lt;br /&gt;
*finished: danced with Lady Spookyraven in the Ballroom&lt;br /&gt;
&lt;br /&gt;
===questM22Shirt===&lt;br /&gt;
The Shirt Off His Lack of Back&lt;br /&gt;
&lt;br /&gt;
===questM23Meatsmith===&lt;br /&gt;
Helping Make Ends Meat&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* step1 - Got a {{kolwiki|check to the Meatsmith}}.&lt;br /&gt;
* finished - Returned {{kolwiki|check to the Meatsmith}} to the Meatsmith.&lt;br /&gt;
&lt;br /&gt;
===questM24Doc===&lt;br /&gt;
What&#039;s Up, Doc?&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* step1 - Collected the Herbs and need to return them to Doc Galaktik&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
==Sea Quests==&lt;br /&gt;
===questS01OldGuy===&lt;br /&gt;
=finished&lt;br /&gt;
===questS02Monkee===&lt;br /&gt;
=unstarted&lt;br /&gt;
&lt;br /&gt;
When Mom is rescued the Quest is completed &lt;br /&gt;
&lt;br /&gt;
=finished&lt;br /&gt;
&lt;br /&gt;
====merkinQuestPath====&lt;br /&gt;
merkinQuestPath indicates which path the player has chosen in the {{kolwiki|Mer-Kin Deepcity}}, during the {{kolwiki|Sea Monkees Quest}}.&lt;br /&gt;
&lt;br /&gt;
Possible values:&lt;br /&gt;
* none: Player has not yet chosen a path&lt;br /&gt;
* gladiator: Player will fight Yog-Urt, Elder Goddess of Hatred&lt;br /&gt;
* scholar: Player will fight Shub-Jigguwatt, Elder God of Violence&lt;br /&gt;
* done: Player has completed the Sea Monkees Quest&lt;br /&gt;
&lt;br /&gt;
====skateParkStatus====&lt;br /&gt;
skateParkStatus tracks the player&#039;s progress in the {{kolwiki|war for the Skate Park}}.&lt;br /&gt;
&lt;br /&gt;
*war: the war is ongoing&lt;br /&gt;
*ice: the roller skates have been chased out&lt;br /&gt;
*roller: the ice skates have been chased out&lt;br /&gt;
*peace: both sides have been chased out&lt;br /&gt;
&lt;br /&gt;
==Bug Bear Invasion Properties==&lt;br /&gt;
&lt;br /&gt;
===mothershipProgress===&lt;br /&gt;
mothershipProgress tracks progress of level completion in the {{kolwiki|Bugbear Mothership}}. It goes from 0 to 3 as that level is cleared.&lt;br /&gt;
&lt;br /&gt;
Possible values: 0-3&lt;br /&gt;
&lt;br /&gt;
===statusEngineering===&lt;br /&gt;
===statusGalley===&lt;br /&gt;
===statusMedbay===&lt;br /&gt;
===statusMorgue===&lt;br /&gt;
===statusNavigation===&lt;br /&gt;
===statusScienceLab===&lt;br /&gt;
===statusSonar===&lt;br /&gt;
===statusSpecialOps===&lt;br /&gt;
===statusWasteProcessing===&lt;br /&gt;
All of these work the same way. &lt;br /&gt;
*0-x (integers): insufficient bodata collected)&lt;br /&gt;
*open: all biodata collected and zone accessible&lt;br /&gt;
* unlocked: biodata collected but zone not yet accessible&lt;br /&gt;
* cleared: zone has been cleared&lt;br /&gt;
&lt;br /&gt;
==Quests from the Elemental Planes==&lt;br /&gt;
===Spring Break Beach===&lt;br /&gt;
The Elemental Plane of Sleaze&lt;br /&gt;
=====questESlMushStash=====&lt;br /&gt;
Jimmy&#039;s Quest to collect receipts from the Fun-Guy Mansion.&lt;br /&gt;
=====questESlAudit=====&lt;br /&gt;
Taco Dan&#039;s Quest to collect receipts from the Fun-Guy Mansion.&lt;br /&gt;
=====questESlBacteria=====&lt;br /&gt;
Broden&#039;s Quest to collect bacteria from the Fun-Guy Mansion.&lt;br /&gt;
=====questESlCheeseburger=====&lt;br /&gt;
Jimmy&#039;s Quest to collect ingredients from the Sloppy Seconds Diner.&lt;br /&gt;
=====questESlSprinkles=====&lt;br /&gt;
Taco Dan&#039;s Quest to collect ingredients from the Sloppy Seconds Diner.&lt;br /&gt;
=====questESlCocktail=====&lt;br /&gt;
Broden&#039;s Quest to collect sprinkles from the Sloppy Seconds Diner.&lt;br /&gt;
=====questESlSalt=====&lt;br /&gt;
Jimmy&#039;s Quest to collect salt from the Sunken Yacht.&lt;br /&gt;
=====questESlFish=====&lt;br /&gt;
Taco Dan&#039;s Quest to collect fish meat from the Sunken Yacht.&lt;br /&gt;
=====questESlDebt=====&lt;br /&gt;
Broden&#039;s Quest to collect broupons from the Sunken Yacht.&lt;br /&gt;
&lt;br /&gt;
===Conspiracy Island===&lt;br /&gt;
The Elemental Plane of Spooky&lt;br /&gt;
=====questESpOutOfOrder=====&lt;br /&gt;
Deep Dark Jungle - Out of Order&lt;br /&gt;
=====questESpJunglePun=====&lt;br /&gt;
Deep Dark Jungle - Pungle in the Jungle&lt;br /&gt;
=====questESpSmokes=====&lt;br /&gt;
Deep Dark Jungle - Everyone&#039;s Running Out of Smokes&lt;br /&gt;
=====questESpClipper=====&lt;br /&gt;
Mansion of Dr. Weirdeaux - The Big Clipper&lt;br /&gt;
=====questESpSerum=====&lt;br /&gt;
Mansion of Dr. Weirdeaux - Serum Sortie&lt;br /&gt;
=====questESpEVE=====&lt;br /&gt;
Secret Government Laboratory - Choking on the Rind&lt;br /&gt;
=====questESpFakeMedium=====&lt;br /&gt;
Secret Government Laboratory - Fake Medium at Large&lt;br /&gt;
=====questESpGore=====&lt;br /&gt;
Secret Government Laboratory - Gore Tipper&lt;br /&gt;
&lt;br /&gt;
{{PropertyNav}}&lt;/div&gt;</summary>
		<author><name>Malibu Stacey</name></author>
	</entry>
	<entry>
		<id>https://wiki.kolmafia.us/index.php?title=Quest_Tracking_Preferences&amp;diff=8247</id>
		<title>Quest Tracking Preferences</title>
		<link rel="alternate" type="text/html" href="https://wiki.kolmafia.us/index.php?title=Quest_Tracking_Preferences&amp;diff=8247"/>
		<updated>2019-11-08T00:09:41Z</updated>

		<summary type="html">&lt;p&gt;Malibu Stacey: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{TOCright}}&lt;br /&gt;
KoLMafia internally tracks progress for a number of quests. These are stored as preferences in settings\[charactername]_prefs.&lt;br /&gt;
&lt;br /&gt;
==Quests Granted by Familiars==&lt;br /&gt;
===questF01Primordial===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questF02Hyboria===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questF03Future===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questF04Elves===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questF05Clancy===&lt;br /&gt;
=unstarted&lt;br /&gt;
&lt;br /&gt;
==Guild Quests==&lt;br /&gt;
===questG01Meatcar===&lt;br /&gt;
&lt;br /&gt;
===questG02Whitecastle===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questG03Ego===&lt;br /&gt;
=started&lt;br /&gt;
===questG04Nemesis===&lt;br /&gt;
questG04Nemesis tracks the player&#039;s progress in the {{kolwiki|Me and My Nemesis|Nemesis quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received from the guild&lt;br /&gt;
*step1: The Unknown Your Class encountered?&lt;br /&gt;
*step2: The Unknown Your Class defeated&lt;br /&gt;
*step3: ?&lt;br /&gt;
*step4: epic weapon acquired&lt;br /&gt;
*step5: &amp;quot;fun&amp;quot; house opened&lt;br /&gt;
*step9: Have LEW&lt;br /&gt;
*step10: Talked to clan and opened the Dark Cave&lt;br /&gt;
*step11: Encountered the Dark Cave entrance at least once&lt;br /&gt;
*step12: Passed the Dark Cave entrance&lt;br /&gt;
*step15: Impassable rubble cleared and ready for final (?) showdown&lt;br /&gt;
*step16: Nemesis defeated and epic hat acquired&lt;br /&gt;
*step17: Returned to guild with epic hat&lt;br /&gt;
&lt;br /&gt;
===questG05Dark===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questG06Delivery===&lt;br /&gt;
=unstarted&lt;br /&gt;
&lt;br /&gt;
==Quests Granted by Items==&lt;br /&gt;
===questI01Scapegoat===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questI02Beat===&lt;br /&gt;
=unstarted&lt;br /&gt;
&lt;br /&gt;
==Council Quests==&lt;br /&gt;
===questL02Larva===&lt;br /&gt;
questL02Larva tracks the player&#039;s progress in the {{kolwiki|Spooky_Forest_Quest|Spooky Forest quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received from the Council&lt;br /&gt;
*step1: mosquito larva acquired&lt;br /&gt;
*finished: mosquito larva returned to the Council&lt;br /&gt;
&lt;br /&gt;
===questL03Rat===&lt;br /&gt;
questL03Rat tracks the player&#039;s progress in the {{kolwiki|Typical_Tavern_Quest|Typical Tavern quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received from the Council&lt;br /&gt;
*step1: spoke to Bart Ender in the Typical Tavern&lt;br /&gt;
*step2: turned off the Rat Faucet&lt;br /&gt;
*finished: told Bart about the Faucet&lt;br /&gt;
&lt;br /&gt;
===questL04Bat===&lt;br /&gt;
questL04Bat tracks the player&#039;s progress in the {{kolwiki|Boss_Bat_Quest|Boss Bat quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received from the Council&lt;br /&gt;
*step1-step3: demolished 1-3 walls in the Bat Hole&lt;br /&gt;
*step4: Boss Bat defeated&lt;br /&gt;
*finished: returned to the Council to report success&lt;br /&gt;
&lt;br /&gt;
===questL05Goblin===&lt;br /&gt;
questL05Goblin tracks the player&#039;s progress in the {{kolwiki|The_King_of_Cobb&#039;s_Knob_Quest|The King of Cobb&#039;s Knob quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received from the Council&lt;br /&gt;
*step1: Cobb&#039;s Knob map decrypted&lt;br /&gt;
*finished: Knob Goblin King defeated&lt;br /&gt;
&lt;br /&gt;
===questL06Friar===&lt;br /&gt;
questL06Friar tracks the player&#039;s progress in the {{kolwiki|Deep_Fat_Friars&#039;_Gate_Quest|Friars&#039; quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received from the Council&lt;br /&gt;
*step1: details received from the Friars&lt;br /&gt;
*step2: box of birthday candles, dodecagram &amp;amp; eldritch butterknife acquired.&lt;br /&gt;
*finished: cleansed the taint&lt;br /&gt;
&lt;br /&gt;
===questL07Cyrptic===&lt;br /&gt;
questL07Cyrptic tracks the player&#039;s progress in the {{kolwiki|Undefile_the_Cyrpt_Quest|Undefile the Cyrpt quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received from the Council&lt;br /&gt;
*finished: Bonerdagon defeated&lt;br /&gt;
&lt;br /&gt;
===questL08Trapper===&lt;br /&gt;
&lt;br /&gt;
questL08Trapper tracks the player&#039;s progress in the {{kolwiki|Mt._McLargeHuge_Quest|Mt. McLargeHuge Quest}}.&lt;br /&gt;
&lt;br /&gt;
* unstarted: quest not yet received from the Council&lt;br /&gt;
* started: quest received from the Council&lt;br /&gt;
* step1: cheese and ore requested by the Trapper&lt;br /&gt;
* step2: cheese and ore returned to the Trapper&lt;br /&gt;
* step3: discovered the stairs up to the Mist-Shrouded Peak (via either route)&lt;br /&gt;
* step4: fought at least one yeti&lt;br /&gt;
* step5: defeated the monster at the top of the Peak&lt;br /&gt;
* finished: returned the fur to the Trapper (quest complete)&lt;br /&gt;
&lt;br /&gt;
===questL09Topping===&lt;br /&gt;
questL08Trapper tracks the player&#039;s progress in the {{kolwiki|Orc_Chasm_Quest|Orc Chasm Quest}}.&lt;br /&gt;
&lt;br /&gt;
* unstarted: quest not yet received from the Council&lt;br /&gt;
* started: quest received from the Council&lt;br /&gt;
* step1: bridge built&lt;br /&gt;
* step2: like, totally got the deets from the Highland Lord&lt;br /&gt;
* step3: lit all three signal fires&lt;br /&gt;
* finished: quest complete&lt;br /&gt;
&lt;br /&gt;
====booPeakProgress====&lt;br /&gt;
booPeakProgress tracks the hauntedness level of {{kolwiki|A-boo Peak}}. A value of 18, for instance, indicates that A-boo Peak is 18% haunted.&lt;br /&gt;
&lt;br /&gt;
Possible values: 0 - 100&lt;br /&gt;
&lt;br /&gt;
====chasmBridgeProgress====&lt;br /&gt;
chasmBridgeProgress tracks the player&#039;s progress in building a bridge across the {{kolwiki|Orc Chasm}}. A value of 10, for instance, indicates that the bridge is 10 planks long.&lt;br /&gt;
&lt;br /&gt;
Possible values: 0 - 30&lt;br /&gt;
&lt;br /&gt;
====oilPeakProgress====&lt;br /&gt;
oilPeakProgress tracks the remaining pressure at {{kolwiki|Oil Peak}}. It decreases as the player reduces the pressure in the zone.&lt;br /&gt;
&lt;br /&gt;
Possible values: 0.00 - 310.66&lt;br /&gt;
* 310.66: Pressure not yet reduced&lt;br /&gt;
* 0.00: Subquest completed&lt;br /&gt;
&lt;br /&gt;
====twinPeakProgress====&lt;br /&gt;
twinPeakProgress is a nibble bitmask with least significant bit set for the first choice and the most significant for the fourth. You can parse this with bitwise operators. Here&#039;s some code that demonstrates how to use it.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight&amp;gt;&lt;br /&gt;
void comma(buffer b, string s) {&lt;br /&gt;
	if(length(b) &amp;gt; 0)&lt;br /&gt;
		b.append(&amp;quot;, &amp;quot;);&lt;br /&gt;
	b.append(s);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
boolean mysterious(int progress, int c) { &lt;br /&gt;
	return (progress &amp;amp; (1 &amp;lt;&amp;lt; c)) == 0;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
string twinPeak() {&lt;br /&gt;
	int p = get_property(&amp;quot;twinPeakProgress&amp;quot;).to_int();&lt;br /&gt;
	buffer need;&lt;br /&gt;
	if(mysterious(p, 0)) need.comma(&amp;quot;4 Stench Resistance&amp;quot;);&lt;br /&gt;
	if(mysterious(p, 1)) need.comma(&amp;quot;+50% Item Drop&amp;quot;);&lt;br /&gt;
	if(mysterious(p, 2)) need.comma(&amp;quot;Jar of Oil&amp;quot;);&lt;br /&gt;
	// Only check for final if first three complete&lt;br /&gt;
	if(length(need) == 0) {&lt;br /&gt;
		if(mysterious(p, 3))&lt;br /&gt;
			return &amp;quot;Need +40% Initiative&amp;quot;;&lt;br /&gt;
		return &amp;quot;Twin Peak Completed&amp;quot;;&lt;br /&gt;
	}&lt;br /&gt;
	return &amp;quot;Need &amp;quot; + need;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===questL10Garbage===&lt;br /&gt;
&lt;br /&gt;
questL10Garbage tracks the player&#039;s progress in {{kolwiki|Giant_Trash_Quest|the Giant Trash Quest}}.&lt;br /&gt;
&lt;br /&gt;
* unstarted: quest not yet received from the Council&lt;br /&gt;
* started: quest received from the Council&lt;br /&gt;
* step2: giant beanstalk grown&lt;br /&gt;
* step3 - step6: four Immateria acquired&lt;br /&gt;
* step7: S.O.C.K. acquired ({{kolwiki|The_Castle_in_the_Clouds_in_the_Sky_(Basement)|Castle Basement}} open)&lt;br /&gt;
* step8: {{kolwiki|The_Castle_in_the_Clouds_in_the_Sky_(Basement)|Castle Ground Floor}} open&lt;br /&gt;
* step9: {{kolwiki|The_Castle_in_the_Clouds_in_the_Sky_(Basement)|Castle Top Floor}} open&lt;br /&gt;
* step10: chore wheel turned&lt;br /&gt;
* finished: returned to the Council&lt;br /&gt;
&lt;br /&gt;
===questL11MacGuffin===&lt;br /&gt;
questL11MacGuffin tracks the player&#039;s progress in the {{kolwiki|Quest_for_the_Holy_MacGuffin|Holy MacGuffin quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: quest received from the Council&lt;br /&gt;
*step1: Black Market located (blackForestProgress == 5)&lt;br /&gt;
*step2: retrieved your father&#039;s MacGuffin diary&lt;br /&gt;
*finished: returned the MacGuffin to the Council&lt;br /&gt;
&lt;br /&gt;
====questL11Black====&lt;br /&gt;
questL11Black tracks the player&#039;s progress in the {{kolwiki|Quest_for_the_Holy_MacGuffin|Black Market portion of the Holy MacGuffin quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started:  quest received from the Council&lt;br /&gt;
*step1: spent at least one turn in the Black Forest&lt;br /&gt;
*step2: Black Market found&lt;br /&gt;
*step3: forged identification documents purchased&lt;br /&gt;
*finished: MacGuffin diary acquired&lt;br /&gt;
&lt;br /&gt;
=====blackForestProgress=====&lt;br /&gt;
blackForestProgress tracks the player&#039;s progress in [http://kolmafia.us/showthread.php?15995 discovering the Black Market].&lt;br /&gt;
&lt;br /&gt;
*0: no progress in exploring the Forest&lt;br /&gt;
*1: blackberry bushes located&lt;br /&gt;
*2: black cottage located&lt;br /&gt;
*3: black mineshaft located&lt;br /&gt;
*4: black church located&lt;br /&gt;
*5: black market located&lt;br /&gt;
&lt;br /&gt;
====questL11Manor====&lt;br /&gt;
questL11Manor tracks the player&#039;s progress in the {{kolwiki|Quest_for_the_Holy_MacGuffin#Spookyraven_quest_.28In_a_Manor_of_Spooking|Spookyraven Manor portion of the Holy Macguffin quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received, by reading your father&#039;s MacGuffin diary&lt;br /&gt;
*step1: Spookyraven Manor Cellar opened&lt;br /&gt;
*step2: recipe: mortar-dissolving solution read&lt;br /&gt;
*step3: Suspicious Masonry demolished&lt;br /&gt;
*finished: Lord Spookyraven defeated&lt;br /&gt;
&lt;br /&gt;
=====spookyravenRecipeUsed=====&lt;br /&gt;
spookyravenRecipeUsed tracks whether and how the player has read recipe: mortar-dissolving solution&lt;br /&gt;
&lt;br /&gt;
*none: recipe not yet read&lt;br /&gt;
*with_glasses: recipe read with Lord Spookyraven&#039;s spectacles&lt;br /&gt;
*no_glasses: recipe read without the spectacles&lt;br /&gt;
&lt;br /&gt;
====questL11Desert====&lt;br /&gt;
Explore the Arid, Extra-Dry Desert to find the pyramid mentioned in your father&#039;s journal.&lt;br /&gt;
&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: quest started by reading your father&#039;s MacGuffin diary&lt;br /&gt;
*finished: discovered the Small Pyramid&lt;br /&gt;
&lt;br /&gt;
=====desertExploration=====&lt;br /&gt;
*0: haven&#039;t yet started exploring the Desert&lt;br /&gt;
*1-99: Desert exploration in progress&lt;br /&gt;
*100: Desert fully explored&lt;br /&gt;
&lt;br /&gt;
====questL11Pyramid====&lt;br /&gt;
questL11Pyramid tracks the player&#039;s progress in the {{kolwiki|Quest_for_the_Holy_MacGuffin#A_Small_Pyramid|Pyramid portion of the Holy Macguffin quest}}.&lt;br /&gt;
&lt;br /&gt;
* unstarted: Ancient Buried Pyramid not yet discovered&lt;br /&gt;
* started: Ancient Buried Pyramid discovered&lt;br /&gt;
* step1: Middle Chamber opened&lt;br /&gt;
* step2: The Lower Chambers opened&lt;br /&gt;
* step3: Control Room opened&lt;br /&gt;
* finished: MacGuffin retrieved (quest complete)&lt;br /&gt;
&lt;br /&gt;
=====gnasirProgress=====&lt;br /&gt;
gnasirProgress is a nibble bitmask with one bit for each possible way you can advance {{kolwiki|Quest_for_the_Holy_MacGuffin|Gnasir&#039;s quest}}. You can parse this with bitwise operators. Here&#039;s some code that demonstrates how to use it.&lt;br /&gt;
&amp;lt;syntaxhighlight&amp;gt;&lt;br /&gt;
int gnasirProgress = get_property(&amp;quot;gnasirProgress&amp;quot;).to_int();&lt;br /&gt;
buffer gnasir;&lt;br /&gt;
if((gnasirProgress &amp;amp; 1) == 0)&lt;br /&gt;
	print(&amp;quot;Gnasir wants a stone rose&amp;quot;);&lt;br /&gt;
if((gnasirProgress &amp;amp; 2) == 0)&lt;br /&gt;
	print(&amp;quot;Gnasir wants a can of black paint&amp;quot;);&lt;br /&gt;
if((gnasirProgress &amp;amp; 4) == 0)&lt;br /&gt;
	print(&amp;quot;Gnasir wants a killing jar&amp;quot;);&lt;br /&gt;
if((gnasirProgress &amp;amp; 8) == 0)&lt;br /&gt;
	print(&amp;quot;Gnasir wants a 15 worm-riding manual page&amp;quot;);&lt;br /&gt;
if((gnasirProgress &amp;amp; 16) == 0)&lt;br /&gt;
	print(&amp;quot;You need to use a drum machine to ride the worm&amp;quot;);&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====questL11Ron====&lt;br /&gt;
Ron Copperhead&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: quest received, by reading your father&#039;s MacGuffin diary&lt;br /&gt;
*step1: received the intro adventure at A Mob of Zeppelin Protestors&lt;br /&gt;
*step2: cleared all 80 protestors and opened access to The Red Zeppelin&lt;br /&gt;
*step3: received the intro adventure at The Red Zeppelin&lt;br /&gt;
*step4: Found Ron &amp;quot;The Weasel&amp;quot; Copperhead&lt;br /&gt;
*finished: defeated Ron &amp;quot;The Weasel&amp;quot; Copperhead and received the Copperhead Charm (rampant)&lt;br /&gt;
&lt;br /&gt;
=====zeppelinProtestors=====&lt;br /&gt;
Tracks protesters removed&lt;br /&gt;
&lt;br /&gt;
====questL11Shen====&lt;br /&gt;
Shen Copperhead&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received from the Council&lt;br /&gt;
*started: quest received, by reading your father&#039;s MacGuffin diary&lt;br /&gt;
*step1: spoke to Shen Copperhead in the Copperhead club and received first item request (and poisoning)&lt;br /&gt;
*step2: acquired first item&lt;br /&gt;
*step3: returned first item, received second item request (and poisoning)&lt;br /&gt;
*step4: acquired second item&lt;br /&gt;
*step5: returned second item, received third item request (and poisoning)&lt;br /&gt;
*step6: acquired third item&lt;br /&gt;
*step7: returned third item&lt;br /&gt;
*finished: received the Copperhead Charm&lt;br /&gt;
&lt;br /&gt;
====questL11Palindome====&lt;br /&gt;
questL11Palindome tracks the player&#039;s progress in the {{kolwiki|Quest_for_the_Holy_MacGuffin#The_Palindome|Palindome portion of the Never Odd or Even quest}}.&lt;br /&gt;
&lt;br /&gt;
* unstarted: quest not yet received from the Council&lt;br /&gt;
* started: spent at least one turn Inside the Palindome&lt;br /&gt;
* step1: arranged the photos in Dr. Awkward&#039;s office&lt;br /&gt;
* step2: read 2 Love Me, Vol. 2&lt;br /&gt;
* step3: met Mr. Alarm in his office (received the wet stunt nut stew quest)&lt;br /&gt;
* step4: cooked wet stunt nut stew&lt;br /&gt;
* step5: returned the stew to Mr. Alarm&lt;br /&gt;
* finished: defeated Dr. Awkward&lt;br /&gt;
&lt;br /&gt;
====questL11Worship====&lt;br /&gt;
questL11Worship tracks progress through the {{kolwiki|Quest_for_the_Holy_MacGuffin#Hidden_Temple_quest_.28Gotta_Worship_Them_All.29|Hidden Temple portion of the Quest for the Holy MacGuffin}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received, by reading your father&#039;s MacGuffin diary&lt;br /&gt;
*step1: (Hidden Temple opened?)&lt;br /&gt;
*step2: correct button pressed in the Temple&lt;br /&gt;
*step3: Hidden City uncovered&lt;br /&gt;
*step4: four stone triangles acquired&lt;br /&gt;
*finished: ancient amulet acquired from the Protector Spectre&lt;br /&gt;
&lt;br /&gt;
=====questL11Business=====&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: Hidden Office Building opened&lt;br /&gt;
*finished: crackling stone sphere acquired&lt;br /&gt;
&lt;br /&gt;
======hiddenOfficeProgress======&lt;br /&gt;
hiddenOfficeProgress tracks progress through the {{kolwiki|Hidden Office Building}} during the Quest for the Holy MacGuffin.&lt;br /&gt;
&lt;br /&gt;
Possible values: 0, 1, 6 - 8&lt;br /&gt;
* 0: Haven&#039;t opened the Hidden Office Building&lt;br /&gt;
* 1: Hidden Office Building is open for adventuring&lt;br /&gt;
* 6: Encountered the Protector Spirit&lt;br /&gt;
* 7: Found the stone sphere&lt;br /&gt;
* 8: Placed the stone sphere in the relevant overgrown shrine&lt;br /&gt;
&lt;br /&gt;
=====questL11Curses=====&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: Hidden Apartment Building opened&lt;br /&gt;
*finished: moss-covered stone sphere acquired&lt;br /&gt;
&lt;br /&gt;
======hiddenApartmentProgress======&lt;br /&gt;
hiddenApartmentProgress tracks progress through the {{kolwiki|Hidden Apartment Building}} during the Quest for the Holy MacGuffin.&lt;br /&gt;
&lt;br /&gt;
Possible values: 0, 1, 6 - 8&lt;br /&gt;
* 0: Haven&#039;t opened the Hidden Apartment Building&lt;br /&gt;
* 1: Hidden Apartment Building is open for adventuring&lt;br /&gt;
* 6: Encountered the Protector Spirit&lt;br /&gt;
* 7: Found the stone sphere&lt;br /&gt;
* 8: Placed the stone sphere in the relevant overgrown shrine&lt;br /&gt;
&lt;br /&gt;
=====questL11Doctor=====&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: Hidden Hospital opened&lt;br /&gt;
*finished: dripping stone sphere acquired&lt;br /&gt;
&lt;br /&gt;
======hiddenHospitalProgress======&lt;br /&gt;
hiddenHospitalProgress tracks progress through the {{kolwiki|Hidden Hospital}} during the Quest for the Holy MacGuffin.&lt;br /&gt;
&lt;br /&gt;
Possible values: 0 - 8&lt;br /&gt;
* 0: Haven&#039;t opened the Hidden Hospital&lt;br /&gt;
* 1: Hidden Hospital is open for adventuring, but haven&#039;t bowled.&lt;br /&gt;
* 6: Encountered the Protector Spirit&lt;br /&gt;
* 7: Found the stone sphere&lt;br /&gt;
* 8: Placed the stone sphere in the relevant overgrown shrine&lt;br /&gt;
&lt;br /&gt;
=====questL11Spare=====&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: Hidden Bowling Alley opened&lt;br /&gt;
*finished: scorched stone sphere acquired&lt;br /&gt;
&lt;br /&gt;
======hiddenBowlingAlleyProgress======&lt;br /&gt;
hiddenBowlingAlleyProgress tracks progress through the {{kolwiki|Hidden Bowling Alley}} during the Quest for the Holy MacGuffin.&lt;br /&gt;
&lt;br /&gt;
* 0: Haven&#039;t opened the Hidden Bowling Alley&lt;br /&gt;
* 1: Hidden Bowling Alley is open for adventuring&lt;br /&gt;
* 2-5: Number of times bowled is 1 less than hiddenBowlingAlleyProgress &lt;br /&gt;
* 6: Encountered the Protector Spirit&lt;br /&gt;
* 7: Found the stone sphere&lt;br /&gt;
* 8: Placed the stone sphere in the relevant overgrown shrine&lt;br /&gt;
&lt;br /&gt;
=====hiddenTavernUnlock=====&lt;br /&gt;
hiddenTavernUnlock tracks whether or not you have unlocked the {{kolwiki|Hidden Tavern}} during the Quest for the Holy MacGuffin.&lt;br /&gt;
&lt;br /&gt;
* When the value is equal to your number of ascensions, the Tavern is unlocked&lt;br /&gt;
* When the value is any other number, the Tavern is locked&lt;br /&gt;
&lt;br /&gt;
===questL12HippyFrat===&lt;br /&gt;
questL12HippyFrat tracks progress during the {{kolwiki|Mysterious Island Quest}}.&lt;br /&gt;
&lt;br /&gt;
* unstarted: quest not yet received from the Council&lt;br /&gt;
* started: quest received&lt;br /&gt;
* step1: War started&lt;br /&gt;
* finished: War ended; boss defeated (quest complete)&lt;br /&gt;
&lt;br /&gt;
====warProgress====&lt;br /&gt;
Possible values for the progress of the {{kolwiki|Mysterious Island Quest|Isle War}}:&lt;br /&gt;
*unstarted: We can still visit the small version of the Mysterious Island&lt;br /&gt;
*started: The war is in progress&lt;br /&gt;
*finished: The final boss or bosses were defeated&lt;br /&gt;
&lt;br /&gt;
====sideDefeated====&lt;br /&gt;
Which side of the {{kolwiki|Mysterious Island Quest|Isle War}} was defeated during the Level 12 quest. &lt;br /&gt;
&lt;br /&gt;
Possible values:&lt;br /&gt;
*neither&lt;br /&gt;
*hippies&lt;br /&gt;
*fratboys&lt;br /&gt;
*both&lt;br /&gt;
&lt;br /&gt;
====sidequestArenaCompleted====&lt;br /&gt;
Tracks the status of The Mysterious Island Arena sidequest&lt;br /&gt;
&lt;br /&gt;
Possible values:&lt;br /&gt;
*none&lt;br /&gt;
*fratboy&lt;br /&gt;
*hippy&lt;br /&gt;
&lt;br /&gt;
====sidequestFarmCompleted====&lt;br /&gt;
Tracks the status of McMillicancuddy&#039;s Farm sidequest&lt;br /&gt;
&lt;br /&gt;
Possible values:&lt;br /&gt;
*none&lt;br /&gt;
*fratboy&lt;br /&gt;
*hippy&lt;br /&gt;
&lt;br /&gt;
====sidequestJunkyardCompleted====&lt;br /&gt;
Tracks the status of The Junkyard sidequest&lt;br /&gt;
&lt;br /&gt;
Possible values:&lt;br /&gt;
*none&lt;br /&gt;
*fratboy&lt;br /&gt;
*hippy&lt;br /&gt;
&lt;br /&gt;
====sidequestLighthouseCompleted====&lt;br /&gt;
Tracks the status of The Lighthouse sidequest&lt;br /&gt;
&lt;br /&gt;
Possible values:&lt;br /&gt;
*none&lt;br /&gt;
*fratboy&lt;br /&gt;
*hippy&lt;br /&gt;
&lt;br /&gt;
====sidequestNunsCompleted====&lt;br /&gt;
Tracks the status of Our Lady of Perpetual Indecision sidequest&lt;br /&gt;
&lt;br /&gt;
Possible values:&lt;br /&gt;
*none&lt;br /&gt;
*fratboy&lt;br /&gt;
*hippy&lt;br /&gt;
&lt;br /&gt;
====sidequestOrchardCompleted====&lt;br /&gt;
Tracks the status of The Organic Orchard sidequest&lt;br /&gt;
&lt;br /&gt;
Possible values:&lt;br /&gt;
*none&lt;br /&gt;
*fratboy&lt;br /&gt;
*hippy&lt;br /&gt;
&lt;br /&gt;
===questL13Final===&lt;br /&gt;
Progress for the {{kolwiki|Naughty Sorceress Quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received from the Council&lt;br /&gt;
*started: quest received; Registration Desk open (???)&lt;br /&gt;
*step1: spent at least one turn fighting competitors&lt;br /&gt;
*step2: competitors defeated&lt;br /&gt;
*step3: sash acquired&lt;br /&gt;
*step4: met Frank&lt;br /&gt;
*step5: Hedge Maze cleared&lt;br /&gt;
*step6: Tower Door locks unlocked&lt;br /&gt;
*step7: wall of skin defeated&lt;br /&gt;
*step8: wall of meat defeated&lt;br /&gt;
*step9: wall of bones defeated&lt;br /&gt;
*step10: antique mirror handled&lt;br /&gt;
*step11: shadow class defeated&lt;br /&gt;
*step12: Naughty Sorceress defeated&lt;br /&gt;
*step13: Council informed&lt;br /&gt;
*finished: prism smashed; King Ralph freed; Astral Gash accessible&lt;br /&gt;
&lt;br /&gt;
===questL13Warehouse===&lt;br /&gt;
the final quest if you ascend as {{kolwiki|Actually Ed the Undying}} where you adventure in {{kolwiki|The Secret Council Warehouse}}.&lt;br /&gt;
*unstarted&lt;br /&gt;
*started&lt;br /&gt;
*finished&lt;br /&gt;
Current progress in the warehouse is tracked in warehouseProgress.&lt;br /&gt;
&lt;br /&gt;
==Miscellaneous Quests==&lt;br /&gt;
===questM01Untinker===&lt;br /&gt;
Returning the screwdriver to the Untinker.&lt;br /&gt;
&lt;br /&gt;
* unstarted&lt;br /&gt;
* step1: collected the rusty screwdriver&lt;br /&gt;
* finished: screwdriver returned&lt;br /&gt;
&lt;br /&gt;
===questM02Artist===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questM03Bugbear===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questM04Galaktic===&lt;br /&gt;
=started&lt;br /&gt;
===questM05Toot===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questM06Gourd===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questM07Hammer===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questM08Baker===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questM09Rocks===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questM10Azazel===&lt;br /&gt;
questM10Azazel tracks the player&#039;s progress in the {{kolwiki|Azazel,_Ma_Belle|Azazel, Ma Belle quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: received the quest, from Azazel or the stranger in Moaning Panda Square&lt;br /&gt;
*finished: returned Azazel&#039;s talismans to him&lt;br /&gt;
&lt;br /&gt;
===questM11Postal===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questM12Pirate===&lt;br /&gt;
questM12Pirate tracks the player&#039;s progress in the {{kolwiki|Cap&#039;m Caronch Quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: Cap&#039;m Caronch&#039;s Map found&lt;br /&gt;
*step1: acquired Cap&#039;m Caronch&#039;s nasty booty from the booty crab&lt;br /&gt;
*step2: received the Orcish Frat House blueprints&lt;br /&gt;
*step3: retrieved Cap&#039;m Caronch&#039;s dentures from the Frat House&lt;br /&gt;
*step4: returned the dentures to the Cap&#039;m and accepted the beer pong challenge&lt;br /&gt;
*step5: won a game of beer pong&lt;br /&gt;
*step6: acquired pirate fledges&lt;br /&gt;
*finished: unlocked Belowdecks&lt;br /&gt;
&lt;br /&gt;
===questM13Escape===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questM14Bounty===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questM15Lol===&lt;br /&gt;
questM15Lol tracks the player&#039;s progress in {{kolwiki|A Quest, LOL}}. (No, but seriously.)&lt;br /&gt;
&lt;br /&gt;
*unstarted:&lt;br /&gt;
*finished:&lt;br /&gt;
&lt;br /&gt;
===questM16Temple===&lt;br /&gt;
quest to find the Hidden Temple&lt;br /&gt;
&lt;br /&gt;
*unstarted:&lt;br /&gt;
*finished:&lt;br /&gt;
&lt;br /&gt;
===questM17Babies===&lt;br /&gt;
Lady Spookyraven&#039;s Babies&lt;br /&gt;
&lt;br /&gt;
===questM18Swamp===&lt;br /&gt;
Marty and His Swamp Problems&lt;br /&gt;
&lt;br /&gt;
===questM19Hippy===&lt;br /&gt;
Hippy Give a Hippy a Boat...&lt;br /&gt;
&lt;br /&gt;
===questM20Necklace===&lt;br /&gt;
questM20Necklace tracks the player&#039;s progress in {{kolwiki|Spookyraven_Manor_Quest#Lady_Spookyraven.27s_Necklace_.28First_Floor.29|retrieving Lady Spookyraven&#039;s necklace}}.&lt;br /&gt;
&lt;br /&gt;
* unstarted: quest not yet received&lt;br /&gt;
* started: quest received from the telegram&lt;br /&gt;
* step1: billiards room key found&lt;br /&gt;
* step2: Encountered Pool Ghost non-combat once&lt;br /&gt;
* step3: library key found&lt;br /&gt;
* step4: necklace found&lt;br /&gt;
* finished: necklace returned to Lady Spookyraven (quest complete)&lt;br /&gt;
&lt;br /&gt;
===questM21Dance===&lt;br /&gt;
questM21Dance tracks the player&#039;s progress in the Second Floor portion of the {{kolwiki|Lady_spookyraven&#039;s_dance|Spookyraven Manor quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: quest received, from Lady Spookyraven&#039;s ghostly telegram&lt;br /&gt;
*step1: spoken to Lady Spookyraven on the Second Floor&lt;br /&gt;
*step2: acquired Lady Spookyraven&#039;s dancing things&lt;br /&gt;
*step3: returned Lady Spookyraven&#039;s dancing things to her&lt;br /&gt;
*finished: danced with Lady Spookyraven in the Ballroom&lt;br /&gt;
&lt;br /&gt;
===questM22Shirt===&lt;br /&gt;
The Shirt Off His Lack of Back&lt;br /&gt;
&lt;br /&gt;
===questM23Meatsmith===&lt;br /&gt;
Helping Make Ends Meat&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* step1 - Got a {{kolwiki|check to the Meatsmith}}.&lt;br /&gt;
* finished - Returned {{kolwiki|check to the Meatsmith}} to the Meatsmith.&lt;br /&gt;
&lt;br /&gt;
===questM24Doc===&lt;br /&gt;
What&#039;s Up, Doc?&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* step1 - Collected the Herbs and need to return them to Doc Galaktik&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
==Sea Quests==&lt;br /&gt;
===questS01OldGuy===&lt;br /&gt;
=finished&lt;br /&gt;
===questS02Monkee===&lt;br /&gt;
=unstarted&lt;br /&gt;
&lt;br /&gt;
When Mom is rescued the Quest is completed &lt;br /&gt;
&lt;br /&gt;
=finished&lt;br /&gt;
&lt;br /&gt;
====merkinQuestPath====&lt;br /&gt;
merkinQuestPath indicates which path the player has chosen in the {{kolwiki|Mer-Kin Deepcity}}, during the {{kolwiki|Sea Monkees Quest}}.&lt;br /&gt;
&lt;br /&gt;
Possible values:&lt;br /&gt;
* none: Player has not yet chosen a path&lt;br /&gt;
* gladiator: Player will fight Yog-Urt, Elder Goddess of Hatred&lt;br /&gt;
* scholar: Player will fight Shub-Jigguwatt, Elder God of Violence&lt;br /&gt;
* done: Player has completed the Sea Monkees Quest&lt;br /&gt;
&lt;br /&gt;
====skateParkStatus====&lt;br /&gt;
skateParkStatus tracks the player&#039;s progress in the {{kolwiki|war for the Skate Park}}.&lt;br /&gt;
&lt;br /&gt;
*war: the war is ongoing&lt;br /&gt;
*ice: the roller skates have been chased out&lt;br /&gt;
*roller: the ice skates have been chased out&lt;br /&gt;
*peace: both sides have been chased out&lt;br /&gt;
&lt;br /&gt;
==Bug Bear Invasion Properties==&lt;br /&gt;
&lt;br /&gt;
===mothershipProgress===&lt;br /&gt;
mothershipProgress tracks progress of level completion in the {{kolwiki|Bugbear Mothership}}. It goes from 0 to 3 as that level is cleared.&lt;br /&gt;
&lt;br /&gt;
Possible values: 0-3&lt;br /&gt;
&lt;br /&gt;
===statusEngineering===&lt;br /&gt;
===statusGalley===&lt;br /&gt;
===statusMedbay===&lt;br /&gt;
===statusMorgue===&lt;br /&gt;
===statusNavigation===&lt;br /&gt;
===statusScienceLab===&lt;br /&gt;
===statusSonar===&lt;br /&gt;
===statusSpecialOps===&lt;br /&gt;
===statusWasteProcessing===&lt;br /&gt;
All of these work the same way. &lt;br /&gt;
*0-x (integers): insufficient bodata collected)&lt;br /&gt;
*open: all biodata collected and zone accessible&lt;br /&gt;
* unlocked: biodata collected but zone not yet accessible&lt;br /&gt;
* cleared: zone has been cleared&lt;br /&gt;
&lt;br /&gt;
==Quests from the Elemental Planes==&lt;br /&gt;
===Spring Break Beach===&lt;br /&gt;
The Elemental Plane of Sleaze&lt;br /&gt;
=====questESlMushStash=====&lt;br /&gt;
Jimmy&#039;s Quest to collect receipts from the Fun-Guy Mansion.&lt;br /&gt;
=====questESlAudit=====&lt;br /&gt;
Taco Dan&#039;s Quest to collect receipts from the Fun-Guy Mansion.&lt;br /&gt;
=====questESlBacteria=====&lt;br /&gt;
Broden&#039;s Quest to collect bacteria from the Fun-Guy Mansion.&lt;br /&gt;
=====questESlCheeseburger=====&lt;br /&gt;
Jimmy&#039;s Quest to collect ingredients from the Sloppy Seconds Diner.&lt;br /&gt;
=====questESlSprinkles=====&lt;br /&gt;
Taco Dan&#039;s Quest to collect ingredients from the Sloppy Seconds Diner.&lt;br /&gt;
=====questESlCocktail=====&lt;br /&gt;
Broden&#039;s Quest to collect sprinkles from the Sloppy Seconds Diner.&lt;br /&gt;
=====questESlSalt=====&lt;br /&gt;
Jimmy&#039;s Quest to collect salt from the Sunken Yacht.&lt;br /&gt;
=====questESlFish=====&lt;br /&gt;
Taco Dan&#039;s Quest to collect fish meat from the Sunken Yacht.&lt;br /&gt;
=====questESlDebt=====&lt;br /&gt;
Broden&#039;s Quest to collect broupons from the Sunken Yacht.&lt;br /&gt;
&lt;br /&gt;
===Conspiracy Island===&lt;br /&gt;
The Elemental Plane of Spooky&lt;br /&gt;
=====questESpOutOfOrder=====&lt;br /&gt;
Deep Dark Jungle - Out of Order&lt;br /&gt;
=====questESpJunglePun=====&lt;br /&gt;
Deep Dark Jungle - Pungle in the Jungle&lt;br /&gt;
=====questESpSmokes=====&lt;br /&gt;
Deep Dark Jungle - Everyone&#039;s Running Out of Smokes&lt;br /&gt;
=====questESpClipper=====&lt;br /&gt;
Mansion of Dr. Weirdeaux - The Big Clipper&lt;br /&gt;
=====questESpSerum=====&lt;br /&gt;
Mansion of Dr. Weirdeaux - Serum Sortie&lt;br /&gt;
=====questESpEVE=====&lt;br /&gt;
Secret Government Laboratory - Choking on the Rind&lt;br /&gt;
=====questESpFakeMedium=====&lt;br /&gt;
Secret Government Laboratory - Fake Medium at Large&lt;br /&gt;
=====questESpGore=====&lt;br /&gt;
Secret Government Laboratory - Gore Tipper&lt;br /&gt;
&lt;br /&gt;
{{PropertyNav}}&lt;/div&gt;</summary>
		<author><name>Malibu Stacey</name></author>
	</entry>
	<entry>
		<id>https://wiki.kolmafia.us/index.php?title=Quest_Tracking_Preferences&amp;diff=8246</id>
		<title>Quest Tracking Preferences</title>
		<link rel="alternate" type="text/html" href="https://wiki.kolmafia.us/index.php?title=Quest_Tracking_Preferences&amp;diff=8246"/>
		<updated>2019-11-02T06:59:18Z</updated>

		<summary type="html">&lt;p&gt;Malibu Stacey: add entries for Copperhead quest properties&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{TOCright}}&lt;br /&gt;
KoLMafia internally tracks progress for a number of quests. These are stored as preferences in settings\[charactername]_prefs.&lt;br /&gt;
&lt;br /&gt;
==Quests Granted by Familiars==&lt;br /&gt;
===questF01Primordial===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questF02Hyboria===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questF03Future===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questF04Elves===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questF05Clancy===&lt;br /&gt;
=unstarted&lt;br /&gt;
&lt;br /&gt;
==Guild Quests==&lt;br /&gt;
===questG01Meatcar===&lt;br /&gt;
&lt;br /&gt;
===questG02Whitecastle===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questG03Ego===&lt;br /&gt;
=started&lt;br /&gt;
===questG04Nemesis===&lt;br /&gt;
questG04Nemesis tracks the player&#039;s progress in the {{kolwiki|Me and My Nemesis|Nemesis quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received from the guild&lt;br /&gt;
*step1: The Unknown Your Class encountered?&lt;br /&gt;
*step2: The Unknown Your Class defeated&lt;br /&gt;
*step3: ?&lt;br /&gt;
*step4: epic weapon acquired&lt;br /&gt;
*step5: &amp;quot;fun&amp;quot; house opened&lt;br /&gt;
*step9: Have LEW&lt;br /&gt;
*step10: Talked to clan and opened the Dark Cave&lt;br /&gt;
*step11: Encountered the Dark Cave entrance at least once&lt;br /&gt;
*step12: Passed the Dark Cave entrance&lt;br /&gt;
*step15: Impassable rubble cleared and ready for final (?) showdown&lt;br /&gt;
*step16: Nemesis defeated and epic hat acquired&lt;br /&gt;
*step17: Returned to guild with epic hat&lt;br /&gt;
&lt;br /&gt;
===questG05Dark===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questG06Delivery===&lt;br /&gt;
=unstarted&lt;br /&gt;
&lt;br /&gt;
==Quests Granted by Items==&lt;br /&gt;
===questI01Scapegoat===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questI02Beat===&lt;br /&gt;
=unstarted&lt;br /&gt;
&lt;br /&gt;
==Council Quests==&lt;br /&gt;
===questL02Larva===&lt;br /&gt;
questL02Larva tracks the player&#039;s progress in the {{kolwiki|Spooky_Forest_Quest|Spooky Forest quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received from the Council&lt;br /&gt;
*step1: mosquito larva acquired&lt;br /&gt;
*finished: mosquito larva returned to the Council&lt;br /&gt;
&lt;br /&gt;
===questL03Rat===&lt;br /&gt;
questL03Rat tracks the player&#039;s progress in the {{kolwiki|Typical_Tavern_Quest|Typical Tavern quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received from the Council&lt;br /&gt;
*step1: spoke to Bart Ender in the Typical Tavern&lt;br /&gt;
*step2: turned off the Rat Faucet&lt;br /&gt;
*finished: told Bart about the Faucet&lt;br /&gt;
&lt;br /&gt;
===questL04Bat===&lt;br /&gt;
questL04Bat tracks the player&#039;s progress in the {{kolwiki|Boss_Bat_Quest|Boss Bat quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received from the Council&lt;br /&gt;
*step1-step3: demolished 1-3 walls in the Bat Hole&lt;br /&gt;
*step4: Boss Bat defeated&lt;br /&gt;
*finished: returned to the Council to report success&lt;br /&gt;
&lt;br /&gt;
===questL05Goblin===&lt;br /&gt;
questL05Goblin tracks the player&#039;s progress in the {{kolwiki|The_King_of_Cobb&#039;s_Knob_Quest|The King of Cobb&#039;s Knob quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received from the Council&lt;br /&gt;
*step1: Cobb&#039;s Knob map decrypted&lt;br /&gt;
*finished: Knob Goblin King defeated&lt;br /&gt;
&lt;br /&gt;
===questL06Friar===&lt;br /&gt;
questL06Friar tracks the player&#039;s progress in the {{kolwiki|Deep_Fat_Friars&#039;_Gate_Quest|Friars&#039; quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received from the Council&lt;br /&gt;
*step1: details received from the Friars&lt;br /&gt;
*finished: cleansed the taint&lt;br /&gt;
&lt;br /&gt;
===questL07Cyrptic===&lt;br /&gt;
questL07Cyrptic tracks the player&#039;s progress in the {{kolwiki|Undefile_the_Cyrpt_Quest|Undefile the Cyrpt quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received from the Council&lt;br /&gt;
*finished: Bonerdagon defeated&lt;br /&gt;
&lt;br /&gt;
===questL08Trapper===&lt;br /&gt;
&lt;br /&gt;
questL08Trapper tracks the player&#039;s progress in the {{kolwiki|Mt._McLargeHuge_Quest|Mt. McLargeHuge Quest}}.&lt;br /&gt;
&lt;br /&gt;
* unstarted: quest not yet received from the Council&lt;br /&gt;
* started: quest received from the Council&lt;br /&gt;
* step1: cheese and ore requested by the Trapper&lt;br /&gt;
* step2: cheese and ore returned to the Trapper&lt;br /&gt;
* step3: discovered the stairs up to the Mist-Shrouded Peak (via either route)&lt;br /&gt;
* step4: fought at least one yeti&lt;br /&gt;
* step5: defeated the monster at the top of the Peak&lt;br /&gt;
* finished: returned the fur to the Trapper (quest complete)&lt;br /&gt;
&lt;br /&gt;
===questL09Topping===&lt;br /&gt;
questL08Trapper tracks the player&#039;s progress in the {{kolwiki|Orc_Chasm_Quest|Orc Chasm Quest}}.&lt;br /&gt;
&lt;br /&gt;
* unstarted: quest not yet received from the Council&lt;br /&gt;
* started: quest received from the Council&lt;br /&gt;
* step1: bridge built&lt;br /&gt;
* step2: like, totally got the deets from the Highland Lord&lt;br /&gt;
* step3: lit all three signal fires&lt;br /&gt;
* finished: quest complete&lt;br /&gt;
&lt;br /&gt;
====booPeakProgress====&lt;br /&gt;
booPeakProgress tracks the hauntedness level of {{kolwiki|A-boo Peak}}. A value of 18, for instance, indicates that A-boo Peak is 18% haunted.&lt;br /&gt;
&lt;br /&gt;
Possible values: 0 - 100&lt;br /&gt;
&lt;br /&gt;
====chasmBridgeProgress====&lt;br /&gt;
chasmBridgeProgress tracks the player&#039;s progress in building a bridge across the {{kolwiki|Orc Chasm}}. A value of 10, for instance, indicates that the bridge is 10 planks long.&lt;br /&gt;
&lt;br /&gt;
Possible values: 0 - 30&lt;br /&gt;
&lt;br /&gt;
====oilPeakProgress====&lt;br /&gt;
oilPeakProgress tracks the remaining pressure at {{kolwiki|Oil Peak}}. It decreases as the player reduces the pressure in the zone.&lt;br /&gt;
&lt;br /&gt;
Possible values: 0.00 - 310.66&lt;br /&gt;
* 310.66: Pressure not yet reduced&lt;br /&gt;
* 0.00: Subquest completed&lt;br /&gt;
&lt;br /&gt;
====twinPeakProgress====&lt;br /&gt;
twinPeakProgress is a nibble bitmask with least significant bit set for the first choice and the most significant for the fourth. You can parse this with bitwise operators. Here&#039;s some code that demonstrates how to use it.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight&amp;gt;&lt;br /&gt;
void comma(buffer b, string s) {&lt;br /&gt;
	if(length(b) &amp;gt; 0)&lt;br /&gt;
		b.append(&amp;quot;, &amp;quot;);&lt;br /&gt;
	b.append(s);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
boolean mysterious(int progress, int c) { &lt;br /&gt;
	return (progress &amp;amp; (1 &amp;lt;&amp;lt; c)) == 0;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
string twinPeak() {&lt;br /&gt;
	int p = get_property(&amp;quot;twinPeakProgress&amp;quot;).to_int();&lt;br /&gt;
	buffer need;&lt;br /&gt;
	if(mysterious(p, 0)) need.comma(&amp;quot;4 Stench Resistance&amp;quot;);&lt;br /&gt;
	if(mysterious(p, 1)) need.comma(&amp;quot;+50% Item Drop&amp;quot;);&lt;br /&gt;
	if(mysterious(p, 2)) need.comma(&amp;quot;Jar of Oil&amp;quot;);&lt;br /&gt;
	// Only check for final if first three complete&lt;br /&gt;
	if(length(need) == 0) {&lt;br /&gt;
		if(mysterious(p, 3))&lt;br /&gt;
			return &amp;quot;Need +40% Initiative&amp;quot;;&lt;br /&gt;
		return &amp;quot;Twin Peak Completed&amp;quot;;&lt;br /&gt;
	}&lt;br /&gt;
	return &amp;quot;Need &amp;quot; + need;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===questL10Garbage===&lt;br /&gt;
&lt;br /&gt;
questL10Garbage tracks the player&#039;s progress in {{kolwiki|Giant_Trash_Quest|the Giant Trash Quest}}.&lt;br /&gt;
&lt;br /&gt;
* unstarted: quest not yet received from the Council&lt;br /&gt;
* started: quest received from the Council&lt;br /&gt;
* step2: giant beanstalk grown&lt;br /&gt;
* step3 - step6: four Immateria acquired&lt;br /&gt;
* step7: S.O.C.K. acquired ({{kolwiki|The_Castle_in_the_Clouds_in_the_Sky_(Basement)|Castle Basement}} open)&lt;br /&gt;
* step8: {{kolwiki|The_Castle_in_the_Clouds_in_the_Sky_(Basement)|Castle Ground Floor}} open&lt;br /&gt;
* step9: {{kolwiki|The_Castle_in_the_Clouds_in_the_Sky_(Basement)|Castle Top Floor}} open&lt;br /&gt;
* step10: chore wheel turned&lt;br /&gt;
* finished: returned to the Council&lt;br /&gt;
&lt;br /&gt;
===questL11MacGuffin===&lt;br /&gt;
questL11MacGuffin tracks the player&#039;s progress in the {{kolwiki|Quest_for_the_Holy_MacGuffin|Holy MacGuffin quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: quest received from the Council&lt;br /&gt;
*step1: Black Market located (blackForestProgress == 5)&lt;br /&gt;
*step2: retrieved your father&#039;s MacGuffin diary&lt;br /&gt;
*finished: returned the MacGuffin to the Council&lt;br /&gt;
&lt;br /&gt;
====questL11Black====&lt;br /&gt;
questL11Black tracks the player&#039;s progress in the {{kolwiki|Quest_for_the_Holy_MacGuffin|Black Market portion of the Holy MacGuffin quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started:  quest received from the Council&lt;br /&gt;
*step1: spent at least one turn in the Black Forest&lt;br /&gt;
*step2: Black Market found&lt;br /&gt;
*step3: forged identification documents purchased&lt;br /&gt;
*finished: MacGuffin diary acquired&lt;br /&gt;
&lt;br /&gt;
=====blackForestProgress=====&lt;br /&gt;
blackForestProgress tracks the player&#039;s progress in [http://kolmafia.us/showthread.php?15995 discovering the Black Market].&lt;br /&gt;
&lt;br /&gt;
*0: no progress in exploring the Forest&lt;br /&gt;
*1: blackberry bushes located&lt;br /&gt;
*2: black cottage located&lt;br /&gt;
*3: black mineshaft located&lt;br /&gt;
*4: black church located&lt;br /&gt;
*5: black market located&lt;br /&gt;
&lt;br /&gt;
====questL11Manor====&lt;br /&gt;
questL11Manor tracks the player&#039;s progress in the {{kolwiki|Quest_for_the_Holy_MacGuffin#Spookyraven_quest_.28In_a_Manor_of_Spooking|Spookyraven Manor portion of the Holy Macguffin quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received, by reading your father&#039;s MacGuffin diary&lt;br /&gt;
*step1: Spookyraven Manor Cellar opened&lt;br /&gt;
*step2: recipe: mortar-dissolving solution read&lt;br /&gt;
*step3: Suspicious Masonry demolished&lt;br /&gt;
*finished: Lord Spookyraven defeated&lt;br /&gt;
&lt;br /&gt;
=====spookyravenRecipeUsed=====&lt;br /&gt;
spookyravenRecipeUsed tracks whether and how the player has read recipe: mortar-dissolving solution&lt;br /&gt;
&lt;br /&gt;
*none: recipe not yet read&lt;br /&gt;
*with_glasses: recipe read with Lord Spookyraven&#039;s spectacles&lt;br /&gt;
*no_glasses: recipe read without the spectacles&lt;br /&gt;
&lt;br /&gt;
====questL11Desert====&lt;br /&gt;
Explore the Arid, Extra-Dry Desert to find the pyramid mentioned in your father&#039;s journal.&lt;br /&gt;
&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: quest started by reading your father&#039;s MacGuffin diary&lt;br /&gt;
*finished: discovered the Small Pyramid&lt;br /&gt;
&lt;br /&gt;
=====desertExploration=====&lt;br /&gt;
*0: haven&#039;t yet started exploring the Desert&lt;br /&gt;
*1-99: Desert exploration in progress&lt;br /&gt;
*100: Desert fully explored&lt;br /&gt;
&lt;br /&gt;
====questL11Pyramid====&lt;br /&gt;
questL11Pyramid tracks the player&#039;s progress in the {{kolwiki|Quest_for_the_Holy_MacGuffin#A_Small_Pyramid|Pyramid portion of the Holy Macguffin quest}}.&lt;br /&gt;
&lt;br /&gt;
* unstarted: Ancient Buried Pyramid not yet discovered&lt;br /&gt;
* started: Ancient Buried Pyramid discovered&lt;br /&gt;
* step1: Middle Chamber opened&lt;br /&gt;
* step2: The Lower Chambers opened&lt;br /&gt;
* step3: Control Room opened&lt;br /&gt;
* finished: MacGuffin retrieved (quest complete)&lt;br /&gt;
&lt;br /&gt;
=====gnasirProgress=====&lt;br /&gt;
gnasirProgress is a nibble bitmask with one bit for each possible way you can advance {{kolwiki|Quest_for_the_Holy_MacGuffin|Gnasir&#039;s quest}}. You can parse this with bitwise operators. Here&#039;s some code that demonstrates how to use it.&lt;br /&gt;
&amp;lt;syntaxhighlight&amp;gt;&lt;br /&gt;
int gnasirProgress = get_property(&amp;quot;gnasirProgress&amp;quot;).to_int();&lt;br /&gt;
buffer gnasir;&lt;br /&gt;
if((gnasirProgress &amp;amp; 1) == 0)&lt;br /&gt;
	print(&amp;quot;Gnasir wants a stone rose&amp;quot;);&lt;br /&gt;
if((gnasirProgress &amp;amp; 2) == 0)&lt;br /&gt;
	print(&amp;quot;Gnasir wants a can of black paint&amp;quot;);&lt;br /&gt;
if((gnasirProgress &amp;amp; 4) == 0)&lt;br /&gt;
	print(&amp;quot;Gnasir wants a killing jar&amp;quot;);&lt;br /&gt;
if((gnasirProgress &amp;amp; 8) == 0)&lt;br /&gt;
	print(&amp;quot;Gnasir wants a 15 worm-riding manual page&amp;quot;);&lt;br /&gt;
if((gnasirProgress &amp;amp; 16) == 0)&lt;br /&gt;
	print(&amp;quot;You need to use a drum machine to ride the worm&amp;quot;);&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====questL11Ron====&lt;br /&gt;
Ron Copperhead&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: quest received, by reading your father&#039;s MacGuffin diary&lt;br /&gt;
*step1: received the intro adventure at A Mob of Zeppelin Protestors&lt;br /&gt;
*step2: cleared all 80 protestors and opened access to The Red Zeppelin&lt;br /&gt;
*step3: received the intro adventure at The Red Zeppelin&lt;br /&gt;
*step4: Found Ron &amp;quot;The Weasel&amp;quot; Copperhead&lt;br /&gt;
*finished: defeated Ron &amp;quot;The Weasel&amp;quot; Copperhead and received the Copperhead Charm (rampant)&lt;br /&gt;
&lt;br /&gt;
=====zeppelinProtestors=====&lt;br /&gt;
Tracks protesters removed&lt;br /&gt;
&lt;br /&gt;
====questL11Shen====&lt;br /&gt;
Shen Copperhead&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received from the Council&lt;br /&gt;
*started: quest received, by reading your father&#039;s MacGuffin diary&lt;br /&gt;
*step1: spoke to Shen Copperhead in the Copperhead club and received first item request (and poisoning)&lt;br /&gt;
*step2: acquired first item&lt;br /&gt;
*step3: returned first item, received second item request (and poisoning)&lt;br /&gt;
*step4: acquired second item&lt;br /&gt;
*step5: returned second item, received third item request (and poisoning)&lt;br /&gt;
*step6: acquired third item&lt;br /&gt;
*step7: returned third item&lt;br /&gt;
*finished: received the Copperhead Charm&lt;br /&gt;
&lt;br /&gt;
====questL11Palindome====&lt;br /&gt;
questL11Palindome tracks the player&#039;s progress in the {{kolwiki|Quest_for_the_Holy_MacGuffin#The_Palindome|Palindome portion of the Never Odd or Even quest}}.&lt;br /&gt;
&lt;br /&gt;
* unstarted: quest not yet received from the Council&lt;br /&gt;
* started: spent at least one turn Inside the Palindome&lt;br /&gt;
* step1: arranged the photos in Dr. Awkward&#039;s office&lt;br /&gt;
* step2: read 2 Love Me, Vol. 2&lt;br /&gt;
* step3: met Mr. Alarm in his office (received the wet stunt nut stew quest)&lt;br /&gt;
* step4: cooked wet stunt nut stew&lt;br /&gt;
* step5: returned the stew to Mr. Alarm&lt;br /&gt;
* finished: defeated Dr. Awkward&lt;br /&gt;
&lt;br /&gt;
====questL11Worship====&lt;br /&gt;
hiddenApartmentProgress tracks progress through the {{kolwiki|Quest_for_the_Holy_MacGuffin#Hidden_Temple_quest_.28Gotta_Worship_Them_All.29|Hidden Temple portion of the Quest for the Holy MacGuffin}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: quest received, by reading your father&#039;s MacGuffin diary&lt;br /&gt;
*step1: (Hidden Temple opened?)&lt;br /&gt;
*step2: correct button pressed in the Temple&lt;br /&gt;
*step3: Hidden City uncovered&lt;br /&gt;
*step4: four stone triangles acquired&lt;br /&gt;
*finished: ancient amulet acquired from the Protector Spectre&lt;br /&gt;
&lt;br /&gt;
=====questL11Business=====&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: Hidden Office Building opened&lt;br /&gt;
*finished: crackling stone sphere acquired&lt;br /&gt;
&lt;br /&gt;
======hiddenOfficeProgress======&lt;br /&gt;
hiddenOfficeProgress tracks progress through the {{kolwiki|Hidden Office Building}} during the Quest for the Holy MacGuffin.&lt;br /&gt;
&lt;br /&gt;
Possible values: 0, 1, 6 - 8&lt;br /&gt;
* 0: Haven&#039;t opened the Hidden Office Building&lt;br /&gt;
* 1: Hidden Office Building is open for adventuring&lt;br /&gt;
* 6: Encountered the Protector Spirit&lt;br /&gt;
* 7: Found the stone sphere&lt;br /&gt;
* 8: Placed the stone sphere in the relevant overgrown shrine&lt;br /&gt;
&lt;br /&gt;
=====questL11Curses=====&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: Hidden Apartment Building opened&lt;br /&gt;
*finished: moss-covered stone sphere acquired&lt;br /&gt;
&lt;br /&gt;
======hiddenApartmentProgress======&lt;br /&gt;
hiddenApartmentProgress tracks progress through the {{kolwiki|Hidden Apartment Building}} during the Quest for the Holy MacGuffin.&lt;br /&gt;
&lt;br /&gt;
Possible values: 0, 1, 6 - 8&lt;br /&gt;
* 0: Haven&#039;t opened the Hidden Apartment Building&lt;br /&gt;
* 1: Hidden Apartment Building is open for adventuring&lt;br /&gt;
* 6: Encountered the Protector Spirit&lt;br /&gt;
* 7: Found the stone sphere&lt;br /&gt;
* 8: Placed the stone sphere in the relevant overgrown shrine&lt;br /&gt;
&lt;br /&gt;
=====questL11Doctor=====&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: Hidden Hospital opened&lt;br /&gt;
*finished: dripping stone sphere acquired&lt;br /&gt;
&lt;br /&gt;
======hiddenHospitalProgress======&lt;br /&gt;
hiddenHospitalProgress tracks progress through the {{kolwiki|Hidden Hospital}} during the Quest for the Holy MacGuffin.&lt;br /&gt;
&lt;br /&gt;
Possible values: 0 - 8&lt;br /&gt;
* 0: Haven&#039;t opened the Hidden Hospital&lt;br /&gt;
* 1: Hidden Hospital is open for adventuring, but haven&#039;t bowled.&lt;br /&gt;
* 6: Encountered the Protector Spirit&lt;br /&gt;
* 7: Found the stone sphere&lt;br /&gt;
* 8: Placed the stone sphere in the relevant overgrown shrine&lt;br /&gt;
&lt;br /&gt;
=====questL11Spare=====&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: Hidden Bowling Alley opened&lt;br /&gt;
*finished: scorched stone sphere acquired&lt;br /&gt;
&lt;br /&gt;
======hiddenBowlingAlleyProgress======&lt;br /&gt;
hiddenBowlingAlleyProgress tracks progress through the {{kolwiki|Hidden Bowling Alley}} during the Quest for the Holy MacGuffin.&lt;br /&gt;
&lt;br /&gt;
* 0: Haven&#039;t opened the Hidden Bowling Alley&lt;br /&gt;
* 1: Hidden Bowling Alley is open for adventuring&lt;br /&gt;
* 2-5: Number of times bowled is 1 less than hiddenBowlingAlleyProgress &lt;br /&gt;
* 6: Encountered the Protector Spirit&lt;br /&gt;
* 7: Found the stone sphere&lt;br /&gt;
* 8: Placed the stone sphere in the relevant overgrown shrine&lt;br /&gt;
&lt;br /&gt;
=====hiddenTavernUnlock=====&lt;br /&gt;
hiddenTavernUnlock tracks whether or not you have unlocked the {{kolwiki|Hidden Tavern}} during the Quest for the Holy MacGuffin.&lt;br /&gt;
&lt;br /&gt;
* When the value is equal to your number of ascensions, the Tavern is unlocked&lt;br /&gt;
* When the value is any other number, the Tavern is locked&lt;br /&gt;
&lt;br /&gt;
===questL12War===&lt;br /&gt;
questL12War tracks progress during the {{kolwiki|Mysterious Island Quest}}.&lt;br /&gt;
&lt;br /&gt;
* unstarted: quest not yet received from the Council&lt;br /&gt;
* started: quest received&lt;br /&gt;
* step1: War started&lt;br /&gt;
* finished: War ended; boss defeated (quest complete)&lt;br /&gt;
&lt;br /&gt;
====warProgress====&lt;br /&gt;
Possible values for the progress of the {{kolwiki|Mysterious Island Quest|Isle War}}:&lt;br /&gt;
*unstarted: We can still visit the small version of the Mysterious Island&lt;br /&gt;
*started: The war is in progress&lt;br /&gt;
*finished: The final boss or bosses were defeated&lt;br /&gt;
&lt;br /&gt;
====sideDefeated====&lt;br /&gt;
Which side of the {{kolwiki|Mysterious Island Quest|Isle War}} was defeated during the Level 12 quest. &lt;br /&gt;
&lt;br /&gt;
Possible values:&lt;br /&gt;
*neither&lt;br /&gt;
*hippies&lt;br /&gt;
*fratboys&lt;br /&gt;
*both&lt;br /&gt;
&lt;br /&gt;
===questL13Final===&lt;br /&gt;
Progress for the {{kolwiki|Naughty Sorceress Quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received from the Council&lt;br /&gt;
*started: quest received; Registration Desk open (???)&lt;br /&gt;
*step1: spent at least one turn fighting competitors&lt;br /&gt;
*step2: competitors defeated&lt;br /&gt;
*step3: sash acquired&lt;br /&gt;
*step4: met Frank&lt;br /&gt;
*step5: Hedge Maze cleared&lt;br /&gt;
*step6: Tower Door locks unlocked&lt;br /&gt;
*step7: wall of skin defeated&lt;br /&gt;
*step8: wall of meat defeated&lt;br /&gt;
*step9: wall of bones defeated&lt;br /&gt;
*step10: antique mirror handled&lt;br /&gt;
*step11: shadow class defeated&lt;br /&gt;
*step12: Naughty Sorceress defeated&lt;br /&gt;
*step13: Council informed&lt;br /&gt;
*finished: prism smashed; King Ralph freed; Astral Gash accessible&lt;br /&gt;
&lt;br /&gt;
===questL13Warehouse===&lt;br /&gt;
the final quest if you ascend as {{kolwiki|Actually Ed the Undying}} where you adventure in {{kolwiki|The Secret Council Warehouse}}.&lt;br /&gt;
*unstarted&lt;br /&gt;
*started&lt;br /&gt;
*finished&lt;br /&gt;
Current progress in the warehouse is tracked in warehouseProgress.&lt;br /&gt;
&lt;br /&gt;
==Miscellaneous Quests==&lt;br /&gt;
===questM01Untinker===&lt;br /&gt;
Returning the screwdriver to the Untinker.&lt;br /&gt;
&lt;br /&gt;
* unstarted&lt;br /&gt;
* step1: collected the rusty screwdriver&lt;br /&gt;
* finished: screwdriver returned&lt;br /&gt;
&lt;br /&gt;
===questM02Artist===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questM03Bugbear===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questM04Galaktic===&lt;br /&gt;
=started&lt;br /&gt;
===questM05Toot===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questM06Gourd===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questM07Hammer===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questM08Baker===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questM09Rocks===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questM10Azazel===&lt;br /&gt;
questM10Azazel tracks the player&#039;s progress in the {{kolwiki|Azazel,_Ma_Belle|Azazel, Ma Belle quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted: quest not yet received&lt;br /&gt;
*started: received the quest, from Azazel or the stranger in Moaning Panda Square&lt;br /&gt;
*finished: returned Azazel&#039;s talismans to him&lt;br /&gt;
&lt;br /&gt;
===questM11Postal===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questM12Pirate===&lt;br /&gt;
questM12Pirate tracks the player&#039;s progress in the {{kolwiki|Cap&#039;m Caronch Quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: Cap&#039;m Caronch&#039;s Map found&lt;br /&gt;
*step1: acquired Cap&#039;m Caronch&#039;s nasty booty from the booty crab&lt;br /&gt;
*step2: received the Orcish Frat House blueprints&lt;br /&gt;
*step3: retrieved Cap&#039;m Caronch&#039;s dentures from the Frat House&lt;br /&gt;
*step4: returned the dentures to the Cap&#039;m and accepted the beer pong challenge&lt;br /&gt;
*step5: won a game of beer pong&lt;br /&gt;
*step6: acquired pirate fledges&lt;br /&gt;
*finished: unlocked Belowdecks&lt;br /&gt;
&lt;br /&gt;
===questM13Escape===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questM14Bounty===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questM15Lol===&lt;br /&gt;
questM15Lol tracks the player&#039;s progress in {{kolwiki|A Quest, LOL}}. (No, but seriously.)&lt;br /&gt;
&lt;br /&gt;
*unstarted:&lt;br /&gt;
*finished:&lt;br /&gt;
&lt;br /&gt;
===questM16Temple===&lt;br /&gt;
Dakota Fanning&#039;s quest to find the Hidden Temple&lt;br /&gt;
&lt;br /&gt;
===questM17Babies===&lt;br /&gt;
Lady Spookyraven&#039;s Babies&lt;br /&gt;
&lt;br /&gt;
===questM18Swamp===&lt;br /&gt;
Marty and His Swamp Problems&lt;br /&gt;
&lt;br /&gt;
===questM19Hippy===&lt;br /&gt;
Hippy Give a Hippy a Boat...&lt;br /&gt;
&lt;br /&gt;
===questM20Necklace===&lt;br /&gt;
questM20Necklace tracks the player&#039;s progress in {{kolwiki|Spookyraven_Manor_Quest#Lady_Spookyraven.27s_Necklace_.28First_Floor.29|retrieving Lady Spookyraven&#039;s necklace}}.&lt;br /&gt;
&lt;br /&gt;
* unstarted: quest not yet received&lt;br /&gt;
* started: quest received from the telegram&lt;br /&gt;
* step1: billiards room key found&lt;br /&gt;
* step2: (pool skill increased at least once?)*&lt;br /&gt;
* step3: library key found&lt;br /&gt;
* step4: necklace found&lt;br /&gt;
* finished: necklace returned to Lady Spookyraven (quest complete)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;*Needs spading.&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===questM21Dance===&lt;br /&gt;
questM21Dance tracks the player&#039;s progress in the Second Floor portion of the {{kolwiki|Lady_spookyraven&#039;s_dance|Spookyraven Manor quest}}.&lt;br /&gt;
&lt;br /&gt;
*unstarted:&lt;br /&gt;
*started: quest received, from Lady Spookyraven&#039;s ghostly telegram&lt;br /&gt;
*step1: spoken to Lady Spookyraven on the Second Floor&lt;br /&gt;
*step2: [apparently not used]&lt;br /&gt;
*step3: returned Lady Spookyraven&#039;s dancing things to her&lt;br /&gt;
*finished: danced with Lady Spookyraven in the Ballroom&lt;br /&gt;
&lt;br /&gt;
===questM22Shirt===&lt;br /&gt;
The Shirt Off His Lack of Back&lt;br /&gt;
&lt;br /&gt;
===questM23Meatsmith===&lt;br /&gt;
Helping Make Ends Meat&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* step1 - Got a {{kolwiki|check to the Meatsmith}}.&lt;br /&gt;
* finished - Returned {{kolwiki|check to the Meatsmith}} to the Meatsmith.&lt;br /&gt;
&lt;br /&gt;
===questM24Doc===&lt;br /&gt;
What&#039;s Up, Doc?&lt;br /&gt;
* unstarted&lt;br /&gt;
* started&lt;br /&gt;
* step1 - Collected the Herbs and need to return them to Doc Galaktik&lt;br /&gt;
* finished&lt;br /&gt;
&lt;br /&gt;
==Sea Quests==&lt;br /&gt;
===questS01OldGuy===&lt;br /&gt;
=finished&lt;br /&gt;
===questS02Monkee===&lt;br /&gt;
=unstarted&lt;br /&gt;
&lt;br /&gt;
When Mom is rescued the Quest is completed &lt;br /&gt;
&lt;br /&gt;
=finished&lt;br /&gt;
&lt;br /&gt;
====merkinQuestPath====&lt;br /&gt;
merkinQuestPath indicates which path the player has chosen in the {{kolwiki|Mer-Kin Deepcity}}, during the {{kolwiki|Sea Monkees Quest}}.&lt;br /&gt;
&lt;br /&gt;
Possible values:&lt;br /&gt;
* none: Player has not yet chosen a path&lt;br /&gt;
* gladiator: Player will fight Yog-Urt, Elder Goddess of Hatred&lt;br /&gt;
* scholar: Player will fight Shub-Jigguwatt, Elder God of Violence&lt;br /&gt;
* done: Player has completed the Sea Monkees Quest&lt;br /&gt;
&lt;br /&gt;
====skateParkStatus====&lt;br /&gt;
skateParkStatus tracks the player&#039;s progress in the {{kolwiki|war for the Skate Park}}.&lt;br /&gt;
&lt;br /&gt;
*war: the war is ongoing&lt;br /&gt;
*ice: the roller skates have been chased out&lt;br /&gt;
*roller: the ice skates have been chased out&lt;br /&gt;
*peace: both sides have been chased out&lt;br /&gt;
&lt;br /&gt;
==Bug Bear Invasion Properties==&lt;br /&gt;
&lt;br /&gt;
===mothershipProgress===&lt;br /&gt;
mothershipProgress tracks progress of level completion in the {{kolwiki|Bugbear Mothership}}. It goes from 0 to 3 as that level is cleared.&lt;br /&gt;
&lt;br /&gt;
Possible values: 0-3&lt;br /&gt;
&lt;br /&gt;
===statusEngineering===&lt;br /&gt;
===statusGalley===&lt;br /&gt;
===statusMedbay===&lt;br /&gt;
===statusMorgue===&lt;br /&gt;
===statusNavigation===&lt;br /&gt;
===statusScienceLab===&lt;br /&gt;
===statusSonar===&lt;br /&gt;
===statusSpecialOps===&lt;br /&gt;
===statusWasteProcessing===&lt;br /&gt;
All of these work the same way. &lt;br /&gt;
*0-x (integers): insufficient bodata collected)&lt;br /&gt;
*open: all biodata collected and zone accessible&lt;br /&gt;
* unlocked: biodata collected but zone not yet accessible&lt;br /&gt;
* cleared: zone has been cleared&lt;br /&gt;
&lt;br /&gt;
==Quests from the Elemental Planes==&lt;br /&gt;
===Spring Break Beach===&lt;br /&gt;
The Elemental Plane of Sleaze&lt;br /&gt;
=====questESlMushStash=====&lt;br /&gt;
Jimmy&#039;s Quest to collect receipts from the Fun-Guy Mansion.&lt;br /&gt;
=====questESlAudit=====&lt;br /&gt;
Taco Dan&#039;s Quest to collect receipts from the Fun-Guy Mansion.&lt;br /&gt;
=====questESlBacteria=====&lt;br /&gt;
Broden&#039;s Quest to collect bacteria from the Fun-Guy Mansion.&lt;br /&gt;
=====questESlCheeseburger=====&lt;br /&gt;
Jimmy&#039;s Quest to collect ingredients from the Sloppy Seconds Diner.&lt;br /&gt;
=====questESlSprinkles=====&lt;br /&gt;
Taco Dan&#039;s Quest to collect ingredients from the Sloppy Seconds Diner.&lt;br /&gt;
=====questESlCocktail=====&lt;br /&gt;
Broden&#039;s Quest to collect sprinkles from the Sloppy Seconds Diner.&lt;br /&gt;
=====questESlSalt=====&lt;br /&gt;
Jimmy&#039;s Quest to collect salt from the Sunken Yacht.&lt;br /&gt;
=====questESlFish=====&lt;br /&gt;
Taco Dan&#039;s Quest to collect fish meat from the Sunken Yacht.&lt;br /&gt;
=====questESlDebt=====&lt;br /&gt;
Broden&#039;s Quest to collect broupons from the Sunken Yacht.&lt;br /&gt;
&lt;br /&gt;
===Conspiracy Island===&lt;br /&gt;
The Elemental Plane of Spooky&lt;br /&gt;
=====questESpOutOfOrder=====&lt;br /&gt;
Deep Dark Jungle - Out of Order&lt;br /&gt;
=====questESpJunglePun=====&lt;br /&gt;
Deep Dark Jungle - Pungle in the Jungle&lt;br /&gt;
=====questESpSmokes=====&lt;br /&gt;
Deep Dark Jungle - Everyone&#039;s Running Out of Smokes&lt;br /&gt;
=====questESpClipper=====&lt;br /&gt;
Mansion of Dr. Weirdeaux - The Big Clipper&lt;br /&gt;
=====questESpSerum=====&lt;br /&gt;
Mansion of Dr. Weirdeaux - Serum Sortie&lt;br /&gt;
=====questESpEVE=====&lt;br /&gt;
Secret Government Laboratory - Choking on the Rind&lt;br /&gt;
=====questESpFakeMedium=====&lt;br /&gt;
Secret Government Laboratory - Fake Medium at Large&lt;br /&gt;
=====questESpGore=====&lt;br /&gt;
Secret Government Laboratory - Gore Tipper&lt;br /&gt;
&lt;br /&gt;
{{PropertyNav}}&lt;/div&gt;</summary>
		<author><name>Malibu Stacey</name></author>
	</entry>
</feed>