<?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=Dapanda</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=Dapanda"/>
	<link rel="alternate" type="text/html" href="https://wiki.kolmafia.us/index.php?title=Special:Contributions/Dapanda"/>
	<updated>2026-04-25T02:08:32Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.44.0</generator>
	<entry>
		<id>https://wiki.kolmafia.us/index.php?title=Quest_Tracking_Preferences&amp;diff=8119</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=8119"/>
		<updated>2015-05-28T22:27:21Z</updated>

		<summary type="html">&lt;p&gt;Dapanda: /* questS02Monkee */&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;
Possible values: unstarted, started&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;
=started&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;
=finished&lt;br /&gt;
===questL03Rat===&lt;br /&gt;
=finished&lt;br /&gt;
===questL04Bat===&lt;br /&gt;
=finished&lt;br /&gt;
===questL05Goblin===&lt;br /&gt;
=finished&lt;br /&gt;
===questL06Friar===&lt;br /&gt;
=finished&lt;br /&gt;
===questL07Cyrptic===&lt;br /&gt;
=finished&lt;br /&gt;
===questL08Trapper===&lt;br /&gt;
=finished&lt;br /&gt;
===questL09Lol===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questL09Topping===&lt;br /&gt;
=finished&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;
====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;
Possible values: unstarted, started, step1-step9, finished&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;
* finished: quest complete&lt;br /&gt;
&lt;br /&gt;
===questL11MacGuffin===&lt;br /&gt;
=finished&lt;br /&gt;
&lt;br /&gt;
====questL11Black====&lt;br /&gt;
Tracks Black Market discovery&lt;br /&gt;
&lt;br /&gt;
====questL11Manor====&lt;br /&gt;
=finished&lt;br /&gt;
&lt;br /&gt;
=====wineCellarProgress=====&lt;br /&gt;
=3&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;
====questL11Pyramid====&lt;br /&gt;
Make your way into the depths of the Ancient Buried Pyramid.&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;
&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;
====questL11Palindome====&lt;br /&gt;
=finished&lt;br /&gt;
&lt;br /&gt;
====questL11Worship====&lt;br /&gt;
=finished&lt;br /&gt;
&lt;br /&gt;
=====questL11Business=====&lt;br /&gt;
=====questL11Curses=====&lt;br /&gt;
=====questL11Doctor=====&lt;br /&gt;
=====questL11Spare=====&lt;br /&gt;
&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;
=====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;
Possible values: 0, 1, 6 - 8&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;
* 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;
=====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;
* 2-5: Number of times bowled is 1 less than hiddenHospitalProgress&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;
=====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;
=====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;
Possible values: 0 - N&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;
=finished&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 - Lair is closed&lt;br /&gt;
*started - Contest booth is available&lt;br /&gt;
*step1 - Coronation ceremony&lt;br /&gt;
*step2 - Hedge maze&lt;br /&gt;
*step3 - Tower door&lt;br /&gt;
*step4 - Wall of skin&lt;br /&gt;
*step5 - Wall of meat&lt;br /&gt;
*step6 - Wall of bone&lt;br /&gt;
*step7 - Mirror&lt;br /&gt;
*step8 - Your Shadow&lt;br /&gt;
*step9 - Naughty Sorceress&lt;br /&gt;
*step10 - Prism awaits breaking&lt;br /&gt;
*finished - Gash is available&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;
=finished&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;
=finished&lt;br /&gt;
===questM11Postal===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questM12Pirate===&lt;br /&gt;
=finished&lt;br /&gt;
===questM13Escape===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questM14Bounty===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questM15Lol===&lt;br /&gt;
=started&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;
Lady Spookyraven&#039;s Necklace&lt;br /&gt;
&lt;br /&gt;
===questM21Dance===&lt;br /&gt;
Lady Spookyraven&#039;s Dance&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;
&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;/div&gt;</summary>
		<author><name>Dapanda</name></author>
	</entry>
	<entry>
		<id>https://wiki.kolmafia.us/index.php?title=Quest_Tracking_Preferences&amp;diff=8118</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=8118"/>
		<updated>2015-05-28T22:18:21Z</updated>

		<summary type="html">&lt;p&gt;Dapanda: /* questS02Monkee */&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;
Possible values: unstarted, started&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;
=started&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;
=finished&lt;br /&gt;
===questL03Rat===&lt;br /&gt;
=finished&lt;br /&gt;
===questL04Bat===&lt;br /&gt;
=finished&lt;br /&gt;
===questL05Goblin===&lt;br /&gt;
=finished&lt;br /&gt;
===questL06Friar===&lt;br /&gt;
=finished&lt;br /&gt;
===questL07Cyrptic===&lt;br /&gt;
=finished&lt;br /&gt;
===questL08Trapper===&lt;br /&gt;
=finished&lt;br /&gt;
===questL09Lol===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questL09Topping===&lt;br /&gt;
=finished&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;
====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;
Possible values: unstarted, started, step1-step9, finished&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;
* finished: quest complete&lt;br /&gt;
&lt;br /&gt;
===questL11MacGuffin===&lt;br /&gt;
=finished&lt;br /&gt;
&lt;br /&gt;
====questL11Black====&lt;br /&gt;
Tracks Black Market discovery&lt;br /&gt;
&lt;br /&gt;
====questL11Manor====&lt;br /&gt;
=finished&lt;br /&gt;
&lt;br /&gt;
=====wineCellarProgress=====&lt;br /&gt;
=3&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;
====questL11Pyramid====&lt;br /&gt;
Make your way into the depths of the Ancient Buried Pyramid.&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;
&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;
====questL11Palindome====&lt;br /&gt;
=finished&lt;br /&gt;
&lt;br /&gt;
====questL11Worship====&lt;br /&gt;
=finished&lt;br /&gt;
&lt;br /&gt;
=====questL11Business=====&lt;br /&gt;
=====questL11Curses=====&lt;br /&gt;
=====questL11Doctor=====&lt;br /&gt;
=====questL11Spare=====&lt;br /&gt;
&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;
=====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;
Possible values: 0, 1, 6 - 8&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;
* 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;
=====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;
* 2-5: Number of times bowled is 1 less than hiddenHospitalProgress&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;
=====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;
=====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;
Possible values: 0 - N&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;
=finished&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 - Lair is closed&lt;br /&gt;
*started - Contest booth is available&lt;br /&gt;
*step1 - Coronation ceremony&lt;br /&gt;
*step2 - Hedge maze&lt;br /&gt;
*step3 - Tower door&lt;br /&gt;
*step4 - Wall of skin&lt;br /&gt;
*step5 - Wall of meat&lt;br /&gt;
*step6 - Wall of bone&lt;br /&gt;
*step7 - Mirror&lt;br /&gt;
*step8 - Your Shadow&lt;br /&gt;
*step9 - Naughty Sorceress&lt;br /&gt;
*step10 - Prism awaits breaking&lt;br /&gt;
*finished - Gash is available&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;
=finished&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;
=finished&lt;br /&gt;
===questM11Postal===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questM12Pirate===&lt;br /&gt;
=finished&lt;br /&gt;
===questM13Escape===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questM14Bounty===&lt;br /&gt;
=unstarted&lt;br /&gt;
===questM15Lol===&lt;br /&gt;
=started&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;
Lady Spookyraven&#039;s Necklace&lt;br /&gt;
&lt;br /&gt;
===questM21Dance===&lt;br /&gt;
Lady Spookyraven&#039;s Dance&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;
=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;
&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;/div&gt;</summary>
		<author><name>Dapanda</name></author>
	</entry>
</feed>