<?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=Metraxis</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=Metraxis"/>
	<link rel="alternate" type="text/html" href="https://wiki.kolmafia.us/index.php?title=Special:Contributions/Metraxis"/>
	<updated>2026-04-25T01:57:31Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.44.0</generator>
	<entry>
		<id>https://wiki.kolmafia.us/index.php?title=User:Metraxis&amp;diff=1626</id>
		<title>User:Metraxis</title>
		<link rel="alternate" type="text/html" href="https://wiki.kolmafia.us/index.php?title=User:Metraxis&amp;diff=1626"/>
		<updated>2009-08-30T16:10:42Z</updated>

		<summary type="html">&lt;p&gt;Metraxis: Added the Linux install page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[User:Metraxis|Metraxis]]:&lt;br /&gt;
&lt;br /&gt;
A KoL player of old but not ancient vintage (after Black Sunday, but before Ascension), and a somwhat prolific scripter.&lt;br /&gt;
&lt;br /&gt;
Currently working on:  Adding and segmenting basic ASH information.  Only a few edits have been done so far, as &#039;proof of concept&#039;, in order to draw comment before expanding to larger chunks of the wiki.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Pages Authored by Metraxis:&lt;br /&gt;
&lt;br /&gt;
[[User:Metraxis]]&lt;br /&gt;
&lt;br /&gt;
[[my_name()]]&lt;br /&gt;
&lt;br /&gt;
[[Template:Primitive]]&lt;br /&gt;
&lt;br /&gt;
[[string]]&lt;br /&gt;
&lt;br /&gt;
[[my_class()]]&lt;br /&gt;
&lt;br /&gt;
[[Template:Enumerated]]&lt;br /&gt;
&lt;br /&gt;
[[class]]&lt;br /&gt;
&lt;br /&gt;
[[int]]&lt;br /&gt;
&lt;br /&gt;
[[my_level()]]&lt;br /&gt;
&lt;br /&gt;
[[location]]&lt;br /&gt;
&lt;br /&gt;
[[item]]&lt;br /&gt;
&lt;br /&gt;
[[my_adventures()]]&lt;br /&gt;
&lt;br /&gt;
[[my_turncount()]]&lt;br /&gt;
&lt;br /&gt;
[[can_interact()]]&lt;br /&gt;
&lt;br /&gt;
[[boolean]]&lt;br /&gt;
&lt;br /&gt;
[[my_inebriety()]]&lt;br /&gt;
&lt;br /&gt;
[[inebriety_limit()]]&lt;br /&gt;
&lt;br /&gt;
[[void]]&lt;br /&gt;
&lt;br /&gt;
[[Linux]]&lt;/div&gt;</summary>
		<author><name>Metraxis</name></author>
	</entry>
	<entry>
		<id>https://wiki.kolmafia.us/index.php?title=Mall_price&amp;diff=2739</id>
		<title>Mall price</title>
		<link rel="alternate" type="text/html" href="https://wiki.kolmafia.us/index.php?title=Mall_price&amp;diff=2739"/>
		<updated>2009-08-04T15:22:55Z</updated>

		<summary type="html">&lt;p&gt;Metraxis: Correction to offline return value&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[int]] &#039;&#039;&#039;mall_price( item it )&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Returns the current mall price of the given item. Specifically it returns the price of the 5th item that would be purchased. Hopefully this will skip over some limited items and give you useful data. If items are purchased mall_price is automatically increased to the price of the new 5th item.&lt;br /&gt;
&lt;br /&gt;
For example, if there are 7 Stench Wads priced at 385 meat and 700 priced at 390, the following code:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
  print(&amp;quot;stench wad price: &amp;quot;+ mall_price($item[stench wad]));&lt;br /&gt;
  buy(5, $item[stench wad]);&lt;br /&gt;
  print(&amp;quot;stench wad price: &amp;quot;+ mall_price($item[stench wad]));&lt;br /&gt;
  buy(5, $item[stench wad]);&lt;br /&gt;
  print(&amp;quot;stench wad price: &amp;quot;+ mall_price($item[stench wad]));&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Will yield this output:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
  Searching for &amp;quot;stench wad&amp;quot;...&lt;br /&gt;
  stench wad price: 385&lt;br /&gt;
  Searching for &amp;quot;stench wad&amp;quot;...&lt;br /&gt;
  Purchasing stench wad (5 @ 385)...&lt;br /&gt;
  You acquire stench wad (5)&lt;br /&gt;
  Purchases complete.&lt;br /&gt;
  stench wad price: 390&lt;br /&gt;
  Using cached search results for stench wad...&lt;br /&gt;
  Purchasing stench wad (2 @ 385)...&lt;br /&gt;
  You acquire stench wad (2)&lt;br /&gt;
  Purchasing stench wad (3 @ 390)...&lt;br /&gt;
  You acquire stench wad (3)&lt;br /&gt;
  Purchases complete.&lt;br /&gt;
  stench wad price: 390&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Notice how mall_price went to 390 before any stench wads were purchased at that price. Magic!&lt;br /&gt;
[[Category:Your Character | My meat()]]&lt;br /&gt;
[[Category:Ash Functions | My meat()]]&lt;br /&gt;
&lt;br /&gt;
When not logged in, this function returns -1.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&amp;lt;table style=&amp;quot;width:80%;margin-top:+.7em;background-color:#F4DF3B;border:2px solid #8663A8&amp;quot;&amp;gt;&amp;lt;tr&amp;gt;&lt;br /&gt;
    &amp;lt;td class=&amp;quot;box_tgen&amp;quot; style=&amp;quot;text-align:center;color:#000;font-size:90%;border:none;margin: 0;padding:.1em;&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;See Also:&#039;&#039;&#039; &amp;lt;br&amp;gt; [[my_closetmeat()]] || [[item_amount()]]&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/center&amp;gt;&lt;/div&gt;</summary>
		<author><name>Metraxis</name></author>
	</entry>
	<entry>
		<id>https://wiki.kolmafia.us/index.php?title=Main_Page&amp;diff=167</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.kolmafia.us/index.php?title=Main_Page&amp;diff=167"/>
		<updated>2007-09-16T15:20:06Z</updated>

		<summary type="html">&lt;p&gt;Metraxis: Revert&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;center&amp;gt;&lt;br /&gt;
Welcome to the KoLmafia Wiki.&lt;br /&gt;
&lt;br /&gt;
Please pardon our dust while we remodel.&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Progress level: [[Special:Statistics|{{NUMBEROFARTICLES}}]]&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table style=&amp;quot;width:80%;margin-top: .7em;background-color:#F4DF3B;border:2px solid #8663A8&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;tr&amp;gt;&lt;br /&gt;
    &amp;lt;td class=&amp;quot;box_tgen&amp;quot; style=&amp;quot;text-align:center;color:#000;font-size:90%;border:none;margin: 0;padding:.1em;&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Quick Links:&#039;&#039;&#039; &amp;lt;br&amp;gt; [[Your Character]] || [[Item Management]] || [[Equipment]] || [[Skills and Effects]] || [[Adventuring]] || [[In-combat functions for consult scripting]] || [[Miscellaneous]]  || [[String Handling Routines]] || [[Datatype Constants]] || [[Datatype Conversions]] || [[KoLmafia Properties]] || [[Code Samples]]&amp;lt;/td&amp;gt;&lt;br /&gt;
  &amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Helpful Links ==&lt;br /&gt;
&lt;br /&gt;
KoLMafia:&lt;br /&gt;
&lt;br /&gt;
[http://kolmafia.sourceforge.net Download KoLMafia]&lt;br /&gt;
&lt;br /&gt;
[http://kolmafia.sourceforge.net/manual.html KoLMafia Documentation]&lt;br /&gt;
&lt;br /&gt;
[http://kolmafia.sourceforge.net/scripting.html CLI Scripting Manual]&lt;br /&gt;
&lt;br /&gt;
[http://kolmafia.sourceforge.net/advanced.html ASH Scripting Manual]&lt;br /&gt;
&lt;br /&gt;
[http://kolmafia.sourceforge.net/combat.html Custom Combat Scripting Manual]&lt;br /&gt;
&lt;br /&gt;
[http://www.kolmafia.us The KoLMafia Script Repository]&lt;br /&gt;
&lt;br /&gt;
[http://forums.kingdomofloathing.com/viewtopic.php?t=19779 The KoLMafia thread on the KoL Forums]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
KoL:&lt;br /&gt;
&lt;br /&gt;
[http://www.kingdomofloathing.com/ The Kingdom of Loathing]&lt;br /&gt;
&lt;br /&gt;
[http://forums.kingdomofloathing.com/ KoL Forums]&lt;/div&gt;</summary>
		<author><name>Metraxis</name></author>
	</entry>
	<entry>
		<id>https://wiki.kolmafia.us/index.php?title=Miscellaneous_Functions&amp;diff=966</id>
		<title>Miscellaneous Functions</title>
		<link rel="alternate" type="text/html" href="https://wiki.kolmafia.us/index.php?title=Miscellaneous_Functions&amp;diff=966"/>
		<updated>2007-09-15T17:03:21Z</updated>

		<summary type="html">&lt;p&gt;Metraxis: Revert.  Again.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Part 7 - Miscellaneous ==&lt;br /&gt;
&amp;lt;p&amp;gt;&amp;lt;em&amp;gt;Mostly internal stuff. Some good for everyone, some only for ASH wizards.&amp;lt;/em&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p&amp;gt;&amp;lt;strong&amp;gt;void print( string helloworld )&amp;lt;/strong&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Prints the given string to the graphical CLI window and to the status line of the main Adventuring window&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p&amp;gt;&amp;lt;strong&amp;gt;boolean cli_execute( string command )&amp;lt;/strong&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Executes the given command as if it were entered into the graphical CLI window. This can be used for CLI commands or, if you&amp;amp;#8217;re careful and not an asshat, for raw URLs.&amp;lt;br /&amp;gt;&lt;br /&gt;
See the [http://kolmafia.sourceforge.net/scripting.html CLI manual] for more details.&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;em&amp;gt;Sample&amp;lt;/em&amp;gt;:[[%28ASHRM%29_Code_Samples#Sample_4:_Hedging|Hedging]]&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p&amp;gt;&amp;lt;strong&amp;gt;void wait( int delay )&amp;lt;/strong&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Does nothing for the desired number of seconds.&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p&amp;gt;&amp;lt;strong&amp;gt;string get_property( string key )&amp;lt;br /&amp;gt;&lt;br /&gt;
boolean set_property( string key, string value )&amp;lt;/strong&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Gets or sets a stored property from your character&amp;amp;#8217;s .kcs file.&amp;lt;br /&amp;gt;&lt;br /&gt;
The KoLmafia [[%28ASHRM%29_KoLMafia_Properties|properties]] page contains details on many of the keys that are available for access.&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;em&amp;gt;Sample&amp;lt;/em&amp;gt;:[[%28ASHRM%29_Code_Samples#Sample_2:_Battlefield_gather|Battlefield_gather]]&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p&amp;gt;&amp;lt;strong&amp;gt;boolean file_to_map( string file_to_load, map map_to_fill )&amp;lt;br /&amp;gt;&lt;br /&gt;
boolean map_to_file( map map_to_save, string file_to_write )&amp;lt;/strong&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Loads and saves maps as tab-delimited text files.&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p&amp;gt;&amp;lt;strong&amp;gt;int random( int range )&amp;lt;/strong&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Generates a random integer between 0 and (range-1) inclusive.&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p&amp;gt;&amp;lt;strong&amp;gt;int round( float ratio )&amp;lt;br /&amp;gt;&lt;br /&gt;
int floor( float ratio )&amp;lt;br /&amp;gt;&lt;br /&gt;
int ceil( float ratio )&amp;lt;br /&amp;gt;&lt;br /&gt;
int truncate( float ratio )&amp;lt;/strong&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Returns an integer near the given real number.  Respectively, it returns the nearest, next lowest, next highest, and decimal-stripped integer.&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p&amp;gt;&amp;lt;strong&amp;gt;int count( map )&amp;lt;/strong&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Returns the number of defined keys for the aggregate.&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p&amp;gt;&amp;lt;strong&amp;gt;void clear( map )&amp;lt;/strong&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Remove all keys from a map. &amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p&amp;gt;&amp;lt;strong&amp;gt;void disable( string function_name )&amp;lt;br /&amp;gt;&lt;br /&gt;
void enable( string function_name )&amp;lt;/strong&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
For debugging purposes disables or enables the indicated function&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p&amp;gt;&amp;lt;strong&amp;gt;float square_root( float value )&amp;lt;/strong&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
returns the square root of the passed value&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p&amp;gt;&amp;lt;strong&amp;gt;string today_to_string()&amp;lt;/strong&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Returns today&amp;amp;#8217;s (real-world) date in the form yyyymmdd.  It is based on your computer&amp;amp;#8217;s system date&amp;lt;/p&amp;gt;&lt;/div&gt;</summary>
		<author><name>Metraxis</name></author>
	</entry>
	<entry>
		<id>https://wiki.kolmafia.us/index.php?title=Talk:String_Handling_Routines&amp;diff=2072</id>
		<title>Talk:String Handling Routines</title>
		<link rel="alternate" type="text/html" href="https://wiki.kolmafia.us/index.php?title=Talk:String_Handling_Routines&amp;diff=2072"/>
		<updated>2007-09-15T17:02:27Z</updated>

		<summary type="html">&lt;p&gt;Metraxis: Revert.  Again.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;So wtf does group_string actually do?  The linked &amp;quot;descriptive&amp;quot; post has an utterly unhelpful example.  Has anyone ever used it for anything?&lt;br /&gt;
&lt;br /&gt;
Groups a string into a map using a regular expression. To understand the function you must know.&lt;br /&gt;
1. What maps are and how they are used.&lt;br /&gt;
2. Understand what regular expressions are and how to create them.&lt;br /&gt;
&lt;br /&gt;
Using the original post:&lt;br /&gt;
&lt;br /&gt;
FUNCTION DEFINTION: string [int,int] group_string( string source, string regex )&lt;br /&gt;
EXAMPLE: string [int,int] test = group_string( &amp;quot;This is a test&amp;quot;, &amp;quot;([a-z]+) &amp;quot; );&lt;br /&gt;
&lt;br /&gt;
Example Breakdown:&lt;br /&gt;
&#039;&#039;&#039;string [int,int]&#039;&#039;&#039; Define a map. Two dimensional. The indices are integers. The data is stored as a string.&lt;br /&gt;
&#039;&#039;&#039;test&#039;&#039;&#039; Define the map with name &#039;&#039;&#039;test&#039;&#039;&#039;.&lt;br /&gt;
&#039;&#039;&#039;group_string&#039;&#039;&#039; Call the function.&lt;br /&gt;
&#039;&#039;&#039;&amp;quot;This is a Test&amp;quot;&#039;&#039;&#039; Feeding the function a sample string.&lt;br /&gt;
&#039;&#039;&#039;&amp;quot;([a-z]+) &amp;quot;&#039;&#039;&#039; Your regular expression.&lt;br /&gt;
&lt;br /&gt;
Regular expressions deal with pattern matching. You want the function to find a particular pattern. The function then returns that pattern, or the stuff before it, or the stuff after it, or splits them appart, or squeezes them together. So what does this regular expression look for? &lt;br /&gt;
&#039;&#039;&#039;The Parenthesis ():&#039;&#039;&#039; Tell the function this is a group of characters.&lt;br /&gt;
&#039;&#039;&#039;[a-z]:&#039;&#039;&#039; Tell us they will be lower case letters.&lt;br /&gt;
&#039;&#039;&#039;+:&#039;&#039;&#039; Tell us to look for one or more characters.&lt;br /&gt;
That space between the ) and &amp;quot; Tells us the pattern ends in a space.&lt;br /&gt;
&lt;br /&gt;
Thus reading down the string.&lt;br /&gt;
T = Does not match [a-z] is a capital letter.&lt;br /&gt;
h = Matches [a-z]. Starting Group&lt;br /&gt;
i = Matches [a-z]&lt;br /&gt;
s = Matches [a-z]&lt;br /&gt;
  = Matches space. First group found and is &amp;quot;his &amp;quot;&lt;br /&gt;
i = Matches [a-z]. Starting Group&lt;br /&gt;
s = Matches [a-z]&lt;br /&gt;
  = Matches space. Second group found, and is &amp;quot;is &amp;quot;&lt;br /&gt;
a = Matches [a-z]. Starting Group&lt;br /&gt;
  = Matches space. Third group found, and is &amp;quot;a &amp;quot;&lt;br /&gt;
t = Matches [a-z]. Starting Group&lt;br /&gt;
e = Matches [a-z]&lt;br /&gt;
s = Matches [a-z]&lt;br /&gt;
t = Matches [a-z]&lt;br /&gt;
End of line. No more matches. Stop.&lt;br /&gt;
&lt;br /&gt;
Thus, trusting the post, the map would be:&lt;br /&gt;
&lt;br /&gt;
test[0][0] =&amp;gt; &amp;quot;his &amp;quot;&lt;br /&gt;
test[0][1] =&amp;gt; &amp;quot;his&amp;quot;&lt;br /&gt;
test[1][0] =&amp;gt; &amp;quot;is &amp;quot;&lt;br /&gt;
test[1][1] =&amp;gt; &amp;quot;is&amp;quot;&lt;br /&gt;
test[2][0] =&amp;gt; &amp;quot;a &amp;quot;&lt;br /&gt;
test[2][1] =&amp;gt; &amp;quot;a&amp;quot;&lt;br /&gt;
&lt;br /&gt;
I personally haven&#039;t used it. Would be used in parsing a page by hand.&lt;/div&gt;</summary>
		<author><name>Metraxis</name></author>
	</entry>
	<entry>
		<id>https://wiki.kolmafia.us/index.php?title=Main_Page&amp;diff=163</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.kolmafia.us/index.php?title=Main_Page&amp;diff=163"/>
		<updated>2007-09-15T16:51:16Z</updated>

		<summary type="html">&lt;p&gt;Metraxis: Revert.  Again.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;center&amp;gt;&lt;br /&gt;
Welcome to the KoLmafia Wiki.&lt;br /&gt;
&lt;br /&gt;
Please pardon our dust while we remodel.&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Progress level: [[Special:Statistics|{{NUMBEROFARTICLES}}]]&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table style=&amp;quot;width:80%;margin-top: .7em;background-color:#F4DF3B;border:2px solid #8663A8&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;tr&amp;gt;&lt;br /&gt;
    &amp;lt;td class=&amp;quot;box_tgen&amp;quot; style=&amp;quot;text-align:center;color:#000;font-size:90%;border:none;margin: 0;padding:.1em;&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Quick Links:&#039;&#039;&#039; &amp;lt;br&amp;gt; [[Your Character]] || [[Item Management]] || [[Equipment]] || [[Skills and Effects]] || [[Adventuring]] || [[In-combat functions for consult scripting]] || [[Miscellaneous]]  || [[String Handling Routines]] || [[Datatype Constants]] || [[Datatype Conversions]] || [[KoLmafia Properties]] || [[Code Samples]]&amp;lt;/td&amp;gt;&lt;br /&gt;
  &amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Helpful Links ==&lt;br /&gt;
&lt;br /&gt;
KoLMafia:&lt;br /&gt;
&lt;br /&gt;
[http://kolmafia.sourceforge.net Download KoLMafia]&lt;br /&gt;
&lt;br /&gt;
[http://kolmafia.sourceforge.net/manual.html KoLMafia Documentation]&lt;br /&gt;
&lt;br /&gt;
[http://kolmafia.sourceforge.net/scripting.html CLI Scripting Manual]&lt;br /&gt;
&lt;br /&gt;
[http://kolmafia.sourceforge.net/advanced.html ASH Scripting Manual]&lt;br /&gt;
&lt;br /&gt;
[http://kolmafia.sourceforge.net/combat.html Custom Combat Scripting Manual]&lt;br /&gt;
&lt;br /&gt;
[http://www.kolmafia.us The KoLMafia Script Repository]&lt;br /&gt;
&lt;br /&gt;
[http://forums.kingdomofloathing.com/viewtopic.php?t=19779 The KoLMafia thread on the KoL Forums]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
KoL:&lt;br /&gt;
&lt;br /&gt;
[http://www.kingdomofloathing.com/ The Kingdom of Loathing]&lt;br /&gt;
&lt;br /&gt;
[http://forums.kingdomofloathing.com/ KoL Forums]&lt;/div&gt;</summary>
		<author><name>Metraxis</name></author>
	</entry>
	<entry>
		<id>https://wiki.kolmafia.us/index.php?title=Can_interact&amp;diff=1782</id>
		<title>Can interact</title>
		<link rel="alternate" type="text/html" href="https://wiki.kolmafia.us/index.php?title=Can_interact&amp;diff=1782"/>
		<updated>2007-02-18T17:36:00Z</updated>

		<summary type="html">&lt;p&gt;Metraxis: Spelling Error&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[boolean]] [[can_interact()]]&lt;br /&gt;
&lt;br /&gt;
This function returns &amp;lt;i&amp;gt;true&amp;lt;/i&amp;gt; if the logged-in character is subject to neither the Hardcore or Ronin restrictions on inter-player interactions.  If the character has not spent the requisite turns and/or has not freed the King (for Hardcore characters), the function returns &amp;lt;i&amp;gt;false&amp;lt;/i&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
An example:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
 if([[can_interact()]]) {&lt;br /&gt;
   buy(3,$[[item]][hot hi mein]);&lt;br /&gt;
 } else {&lt;br /&gt;
   adventure(10,$[[location]][Knob Goblin Kitchens]);&lt;br /&gt;
 }&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;/div&gt;</summary>
		<author><name>Metraxis</name></author>
	</entry>
	<entry>
		<id>https://wiki.kolmafia.us/index.php?title=Can_interact&amp;diff=1781</id>
		<title>Can interact</title>
		<link rel="alternate" type="text/html" href="https://wiki.kolmafia.us/index.php?title=Can_interact&amp;diff=1781"/>
		<updated>2007-02-18T17:35:22Z</updated>

		<summary type="html">&lt;p&gt;Metraxis: Spelling Error&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[boolean]] [[can_interact()]]&lt;br /&gt;
&lt;br /&gt;
This function returns &amp;lt;i&amp;gt;true&amp;lt;/i&amp;gt; if the logged-in character is subject to neither the Hardcore or Ronin restrictions on inter-player interactions.  If the chracter has not spent the requisite turns and/or has not freed the King (for Hardcore characters), the function returns &amp;lt;i&amp;gt;false&amp;lt;/i&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
An example:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
 if([[can_interact()]]) {&lt;br /&gt;
   buy(3,$[[item]][hot hi mein]);&lt;br /&gt;
 } else {&lt;br /&gt;
   adventure(10,$[[location]][Knob Goblin Kitchens]);&lt;br /&gt;
 }&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;/div&gt;</summary>
		<author><name>Metraxis</name></author>
	</entry>
	<entry>
		<id>https://wiki.kolmafia.us/index.php?title=Talk:Main_Page&amp;diff=635</id>
		<title>Talk:Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.kolmafia.us/index.php?title=Talk:Main_Page&amp;diff=635"/>
		<updated>2007-02-18T17:27:50Z</updated>

		<summary type="html">&lt;p&gt;Metraxis: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Save these links for now:&lt;br /&gt;
&lt;br /&gt;
== Getting started ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.mediawiki.org/wiki/Help:Configuration_settings Configuration settings list]&lt;br /&gt;
* [http://www.mediawiki.org/wiki/Help:FAQ MediaWiki FAQ]&lt;br /&gt;
* [http://mail.wikipedia.org/mailman/listinfo/mediawiki-announce MediaWiki release mailing list]&lt;br /&gt;
&lt;br /&gt;
== Wiki layout... ==&lt;br /&gt;
&lt;br /&gt;
We really should consider exactly how to lay out the wiki... We should probably see how others (especially the KoL wiki) do it and take inspiration... :)&lt;br /&gt;
&lt;br /&gt;
Also, I&#039;m thinking we should eventually have a page for each function, to make searching the wiki more valuable... :)&lt;br /&gt;
&lt;br /&gt;
--[[User:Daychilde|Daychilde]] 23:00, 8 January 2007 (CST)&lt;br /&gt;
&lt;br /&gt;
I agree with your idea about one-page-per-function.&lt;br /&gt;
&lt;br /&gt;
Also I think every* function&#039;s documentation should show a real-world example of use.  The links to example scripts are a good start in this direction, but some code to read right on the function page would be nice.  (*Yes, even the &amp;quot;you are not cool enough to use this&amp;quot; undocumented stuff.)&lt;br /&gt;
&lt;br /&gt;
A master ASH function list page would be helpful.  When trying to Find a keyword in browser to see if KM implements a given functionality, it&#039;s a minor PITA to have to click into each categorized page and search them all individually.&lt;br /&gt;
&lt;br /&gt;
Also welcome would be some kind of icon, color, or other indicator for newly-added functions.  Master list sorted/sortable by implementation version/date if possible.&lt;br /&gt;
&lt;br /&gt;
Also, on the subject of general layout/UI improvements (since you asked):  for the main page, I prefer a high-level bulleted-listy index/ToC, kinda like the ToCs on the current sourceforge manual pages.  Personally, I find this more useful than the increasingly popular &amp;quot;widgety-portaly-stocks-news-and-weather&amp;quot; look.&lt;br /&gt;
&lt;br /&gt;
Redundancy should be removed wherever possible -- e.g. (ASHRM) in front of every link.  I understand if prefixes of that sort are there to assist in organizing the underlying database, but if not, I think they are totally unnecessary and a distraction -- that is, provided the containing page is appropriately identified with a nice big &amp;quot;ASH Reference Manual&amp;quot; heading at the top, breadcrumbs, etc.&lt;br /&gt;
&lt;br /&gt;
I&#039;ll quit before I arrive at a frenzy of usability fanaticism the likes of which would make J. Nielsen repent like a dirty sinner.  (Got work to do, actually.  Now maybe if there was a &amp;quot;job opportunities&amp;quot; section.......)&lt;br /&gt;
&lt;br /&gt;
--[[User:somebody who sincerely appreciates not having to register/login and probably wouldn&#039;t participate elsewise]] 12:35, 30 January 2007 (EST)&lt;br /&gt;
&lt;br /&gt;
On the other hand, speed-bumping idiot apammers may be worth it.  I could go on for ages about how offensive I find that kind of griefing (If you think life isn&#039;t a game, you&#039;re doing it wrong)--[[User:Metraxis|Metraxis]] 11:27, 18 February 2007 (CST)&lt;/div&gt;</summary>
		<author><name>Metraxis</name></author>
	</entry>
	<entry>
		<id>https://wiki.kolmafia.us/index.php?title=User:Metraxis&amp;diff=1625</id>
		<title>User:Metraxis</title>
		<link rel="alternate" type="text/html" href="https://wiki.kolmafia.us/index.php?title=User:Metraxis&amp;diff=1625"/>
		<updated>2007-01-23T07:36:42Z</updated>

		<summary type="html">&lt;p&gt;Metraxis: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[User:Metraxis|Metraxis]]:&lt;br /&gt;
&lt;br /&gt;
A KoL player of old but not ancient vintage (after Black Sunday, but before Ascension), and a somwhat prolific scripter.&lt;br /&gt;
&lt;br /&gt;
Currently working on:  Adding and segmenting basic ASH information.  Only a few edits have been done so far, as &#039;proof of concept&#039;, in order to draw comment before expanding to larger chunks of the wiki.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Pages Authored by Metraxis:&lt;br /&gt;
&lt;br /&gt;
[[User:Metraxis]]&lt;br /&gt;
&lt;br /&gt;
[[my_name()]]&lt;br /&gt;
&lt;br /&gt;
[[Template:Primitive]]&lt;br /&gt;
&lt;br /&gt;
[[string]]&lt;br /&gt;
&lt;br /&gt;
[[my_class()]]&lt;br /&gt;
&lt;br /&gt;
[[Template:Enumerated]]&lt;br /&gt;
&lt;br /&gt;
[[class]]&lt;br /&gt;
&lt;br /&gt;
[[int]]&lt;br /&gt;
&lt;br /&gt;
[[my_level()]]&lt;br /&gt;
&lt;br /&gt;
[[location]]&lt;br /&gt;
&lt;br /&gt;
[[item]]&lt;br /&gt;
&lt;br /&gt;
[[my_adventures()]]&lt;br /&gt;
&lt;br /&gt;
[[my_turncount()]]&lt;br /&gt;
&lt;br /&gt;
[[can_interact()]]&lt;br /&gt;
&lt;br /&gt;
[[boolean]]&lt;br /&gt;
&lt;br /&gt;
[[my_inebriety()]]&lt;br /&gt;
&lt;br /&gt;
[[inebriety_limit()]]&lt;br /&gt;
&lt;br /&gt;
[[void]]&lt;/div&gt;</summary>
		<author><name>Metraxis</name></author>
	</entry>
	<entry>
		<id>https://wiki.kolmafia.us/index.php?title=My_inebriety&amp;diff=1907</id>
		<title>My inebriety</title>
		<link rel="alternate" type="text/html" href="https://wiki.kolmafia.us/index.php?title=My_inebriety&amp;diff=1907"/>
		<updated>2007-01-23T07:36:26Z</updated>

		<summary type="html">&lt;p&gt;Metraxis: New Page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[int]] [[my_inebriety()]]&lt;br /&gt;
&lt;br /&gt;
This function returns the logged-in character&#039;s current level of drunkenness as an [[int]].  This information, combined with the character&#039;s [[inebriety_limit()]], is vital for any script which intends to drink for the character, but without overdrinking.&lt;br /&gt;
&lt;br /&gt;
An example:&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
 if([[inebriety_limit()]] - [[my_inebriety()]] &amp;lt; 5) {&lt;br /&gt;
   [[int]] advisable = [[inebriety_limit()]] - [[my_inebriety()]] - 1;&lt;br /&gt;
   [[drink]](advisable,$[[item]][Ram&#039;s Face Lager]);&lt;br /&gt;
 }&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;/div&gt;</summary>
		<author><name>Metraxis</name></author>
	</entry>
	<entry>
		<id>https://wiki.kolmafia.us/index.php?title=Inebriety_limit&amp;diff=1898</id>
		<title>Inebriety limit</title>
		<link rel="alternate" type="text/html" href="https://wiki.kolmafia.us/index.php?title=Inebriety_limit&amp;diff=1898"/>
		<updated>2007-01-23T07:35:47Z</updated>

		<summary type="html">&lt;p&gt;Metraxis: Spelling&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[int]] [[inebriety_limit()]]&lt;br /&gt;
&lt;br /&gt;
This function returns the minimum drunkenness at which the logged-in character will become falling-down drink as an [[int]].  For characters without a Liver of Steel, this value will be 15.  For those characters with a Liver of Steel, this value is 20.&lt;br /&gt;
&lt;br /&gt;
An example:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
 [[void]] get_sneaky() {&lt;br /&gt;
   [[item]] FavoredDrink = $[[item]][grogtini];&lt;br /&gt;
   while([[my_inebriety()]] &amp;lt; [[inebriety_limit()]]) {&lt;br /&gt;
     [[drink]](1,FavoredDrink);&lt;br /&gt;
   }&lt;br /&gt;
   int cirrosis = [[inebriety_limit()]] + 10 - [[my_inebriety()]];&lt;br /&gt;
   [[drink]](cirrosis,$item[green beer]);&lt;br /&gt;
   if([[inebriety_limit()]] &amp;lt; 16) {&lt;br /&gt;
     print(&amp;quot;Not ... drunk ... enough.  Need ... ! ... potion&amp;quot;);&lt;br /&gt;
   }&lt;br /&gt;
 } &lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;/div&gt;</summary>
		<author><name>Metraxis</name></author>
	</entry>
	<entry>
		<id>https://wiki.kolmafia.us/index.php?title=Inebriety_limit&amp;diff=1897</id>
		<title>Inebriety limit</title>
		<link rel="alternate" type="text/html" href="https://wiki.kolmafia.us/index.php?title=Inebriety_limit&amp;diff=1897"/>
		<updated>2007-01-23T07:35:19Z</updated>

		<summary type="html">&lt;p&gt;Metraxis: New Page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[int]] [[inebriety_limit()]]&lt;br /&gt;
&lt;br /&gt;
This function returns the minimum drunkenness at which the logged-in character&#039;s will become falling-down drink as an [[int]].  For characters without a Liver of Steel, this value will be 15.  For those characters with a Liver of Steel, this value is 20.&lt;br /&gt;
&lt;br /&gt;
An example:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
 [[void]] get_sneaky() {&lt;br /&gt;
   [[item]] FavoredDrink = $[[item]][grogtini];&lt;br /&gt;
   while([[my_inebriety()]] &amp;lt; [[inebriety_limit()]]) {&lt;br /&gt;
     [[drink]](1,FavoredDrink);&lt;br /&gt;
   }&lt;br /&gt;
   int cirrosis = [[inebriety_limit()]] + 10 - [[my_inebriety()]];&lt;br /&gt;
   [[drink]](cirrosis,$item[green beer]);&lt;br /&gt;
   if([[inebriety_limit()]] &amp;lt; 16) {&lt;br /&gt;
     print(&amp;quot;Not ... drunk ... enough.  Need ... ! ... potion&amp;quot;);&lt;br /&gt;
   }&lt;br /&gt;
 } &lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;/div&gt;</summary>
		<author><name>Metraxis</name></author>
	</entry>
	<entry>
		<id>https://wiki.kolmafia.us/index.php?title=Void&amp;diff=1893</id>
		<title>Void</title>
		<link rel="alternate" type="text/html" href="https://wiki.kolmafia.us/index.php?title=Void&amp;diff=1893"/>
		<updated>2007-01-23T07:35:01Z</updated>

		<summary type="html">&lt;p&gt;Metraxis: New Page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Primitive|Name=void}}&lt;/div&gt;</summary>
		<author><name>Metraxis</name></author>
	</entry>
	<entry>
		<id>https://wiki.kolmafia.us/index.php?title=User:Metraxis&amp;diff=1624</id>
		<title>User:Metraxis</title>
		<link rel="alternate" type="text/html" href="https://wiki.kolmafia.us/index.php?title=User:Metraxis&amp;diff=1624"/>
		<updated>2007-01-20T08:23:16Z</updated>

		<summary type="html">&lt;p&gt;Metraxis: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[User:Metraxis|Metraxis]]:&lt;br /&gt;
&lt;br /&gt;
A KoL player of old but not ancient vintage (after Black Sunday, but before Ascension), and a somwhat prolific scripter.&lt;br /&gt;
&lt;br /&gt;
Currently working on:  Adding and segmenting basic ASH information.  Only a few edits have been done so far, as &#039;proof of concept&#039;, in order to draw comment before expanding to larger chunks of the wiki.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Pages Authored by Metraxis:&lt;br /&gt;
&lt;br /&gt;
[[User:Metraxis]]&lt;br /&gt;
&lt;br /&gt;
[[my_name()]]&lt;br /&gt;
&lt;br /&gt;
[[Template:Primitive]]&lt;br /&gt;
&lt;br /&gt;
[[string]]&lt;br /&gt;
&lt;br /&gt;
[[my_class()]]&lt;br /&gt;
&lt;br /&gt;
[[Template:Enumerated]]&lt;br /&gt;
&lt;br /&gt;
[[class]]&lt;br /&gt;
&lt;br /&gt;
[[int]]&lt;br /&gt;
&lt;br /&gt;
[[my_level()]]&lt;br /&gt;
&lt;br /&gt;
[[location]]&lt;br /&gt;
&lt;br /&gt;
[[item]]&lt;br /&gt;
&lt;br /&gt;
[[my_adventures()]]&lt;br /&gt;
&lt;br /&gt;
[[my_turncount()]]&lt;br /&gt;
&lt;br /&gt;
[[can_interact()]]&lt;br /&gt;
&lt;br /&gt;
[[boolean]]&lt;/div&gt;</summary>
		<author><name>Metraxis</name></author>
	</entry>
	<entry>
		<id>https://wiki.kolmafia.us/index.php?title=My_turncount&amp;diff=1804</id>
		<title>My turncount</title>
		<link rel="alternate" type="text/html" href="https://wiki.kolmafia.us/index.php?title=My_turncount&amp;diff=1804"/>
		<updated>2007-01-20T08:22:59Z</updated>

		<summary type="html">&lt;p&gt;Metraxis: New Page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[int]] [[my_turncount()]]&lt;br /&gt;
&lt;br /&gt;
This function returns the total number of adventures used thus far by the logged-in character during the current ascension as an [[int]].  With the introduction of [[can_interact()]], the use of this function to determine whether a softcore character is still in Ronin is no longer required, but it can still be used for logging.&lt;br /&gt;
&lt;br /&gt;
An example:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
 [[int]] [ [[string]] ] Accomplishments;&lt;br /&gt;
 &lt;br /&gt;
 if(adventure(1,$[[location]][The Boss Bat&#039;s Lair]) {&lt;br /&gt;
   Accomplishments[&amp;quot;Defeated Boss Bat&amp;quot;] = [[my_turncount()]];&lt;br /&gt;
 }&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;/div&gt;</summary>
		<author><name>Metraxis</name></author>
	</entry>
	<entry>
		<id>https://wiki.kolmafia.us/index.php?title=Can_interact&amp;diff=1780</id>
		<title>Can interact</title>
		<link rel="alternate" type="text/html" href="https://wiki.kolmafia.us/index.php?title=Can_interact&amp;diff=1780"/>
		<updated>2007-01-20T08:21:59Z</updated>

		<summary type="html">&lt;p&gt;Metraxis: New Page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[boolean]] [[can_interact()]]&lt;br /&gt;
&lt;br /&gt;
This function returns &amp;lt;i&amp;gt;true&amp;lt;/i&amp;gt; if the logged-in character is subject to neither the Hardcore or Ronin restrictions on inter-player interactions.  If the chracter has not spent the requisite turns and/or has not freed the King (for Hardcore characters), the function returns &amp;lt;i&amp;gt;false&amp;lt;/i&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
An example:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
 if([[can_interact()]]) {&lt;br /&gt;
   buy(3,$[[item]][hot hi hein]);&lt;br /&gt;
 } else {&lt;br /&gt;
   adventure(10,$[[location]][Knob Goblin Kitchens]);&lt;br /&gt;
 }&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;/div&gt;</summary>
		<author><name>Metraxis</name></author>
	</entry>
	<entry>
		<id>https://wiki.kolmafia.us/index.php?title=Boolean&amp;diff=1777</id>
		<title>Boolean</title>
		<link rel="alternate" type="text/html" href="https://wiki.kolmafia.us/index.php?title=Boolean&amp;diff=1777"/>
		<updated>2007-01-20T08:19:47Z</updated>

		<summary type="html">&lt;p&gt;Metraxis: New Page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Primitive|Name=boolean}}&lt;/div&gt;</summary>
		<author><name>Metraxis</name></author>
	</entry>
	<entry>
		<id>https://wiki.kolmafia.us/index.php?title=My_adventures&amp;diff=1761</id>
		<title>My adventures</title>
		<link rel="alternate" type="text/html" href="https://wiki.kolmafia.us/index.php?title=My_adventures&amp;diff=1761"/>
		<updated>2007-01-19T07:48:53Z</updated>

		<summary type="html">&lt;p&gt;Metraxis: typo&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[int]] [[my_adventures()]]&lt;br /&gt;
&lt;br /&gt;
This function returns the logged-in character&#039;s current number of remaining adventures as an [[int]].  Use of this function is essential in any kind of goal-seeking loop, lest it run on forever trying to adventure with no way to do so.  &lt;br /&gt;
&lt;br /&gt;
An example:&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
 while([[my_adventures()]] &amp;gt;= 4) {&lt;br /&gt;
   if(use(1,$[[item]][dance card])) {&lt;br /&gt;
     adventure(3,$[[location]][Haunted Gallery]);&lt;br /&gt;
     adventure(1,$[[location]][Haunted Ballroom]);&lt;br /&gt;
   }&lt;br /&gt;
 }&amp;lt;/code&amp;gt;&lt;/div&gt;</summary>
		<author><name>Metraxis</name></author>
	</entry>
	<entry>
		<id>https://wiki.kolmafia.us/index.php?title=My_adventures&amp;diff=1760</id>
		<title>My adventures</title>
		<link rel="alternate" type="text/html" href="https://wiki.kolmafia.us/index.php?title=My_adventures&amp;diff=1760"/>
		<updated>2007-01-19T07:48:26Z</updated>

		<summary type="html">&lt;p&gt;Metraxis: Grammar&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[int]] [[my_adventures()]]&lt;br /&gt;
&lt;br /&gt;
This function returns the logged-in character&#039;s current number of remaining adventures as an [[int]].  Use of this function is essential in any kind of goal-seeking loop, lest it run on forever trying to adventure with no way to do so.  &lt;br /&gt;
&lt;br /&gt;
An example:&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
 while([[my_adventures()]] &amp;gt;= 4) {&lt;br /&gt;
   if(use(1,$[[item]][dance card])) {&lt;br /&gt;
     adventure(3,$[[location]][Haunted Gallery]);&lt;br /&gt;
     adventure(3,$[[location]][Haunted Ballroom]);&lt;br /&gt;
   }&lt;br /&gt;
 }&amp;lt;/code&amp;gt;&lt;/div&gt;</summary>
		<author><name>Metraxis</name></author>
	</entry>
	<entry>
		<id>https://wiki.kolmafia.us/index.php?title=User:Metraxis&amp;diff=1623</id>
		<title>User:Metraxis</title>
		<link rel="alternate" type="text/html" href="https://wiki.kolmafia.us/index.php?title=User:Metraxis&amp;diff=1623"/>
		<updated>2007-01-19T07:47:40Z</updated>

		<summary type="html">&lt;p&gt;Metraxis: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[User:Metraxis|Metraxis]]:&lt;br /&gt;
&lt;br /&gt;
A KoL player of old but not ancient vintage (after Black Sunday, but before Ascension), and a somwhat prolific scripter.&lt;br /&gt;
&lt;br /&gt;
Currently working on:  Adding and segmenting basic ASH information.  Only a few edits have been done so far, as &#039;proof of concept&#039;, in order to draw comment before expanding to larger chunks of the wiki.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Pages Authored by Metraxis:&lt;br /&gt;
&lt;br /&gt;
[[User:Metraxis]]&lt;br /&gt;
&lt;br /&gt;
[[my_name()]]&lt;br /&gt;
&lt;br /&gt;
[[Template:Primitive]]&lt;br /&gt;
&lt;br /&gt;
[[string]]&lt;br /&gt;
&lt;br /&gt;
[[my_class()]]&lt;br /&gt;
&lt;br /&gt;
[[Template:Enumerated]]&lt;br /&gt;
&lt;br /&gt;
[[class]]&lt;br /&gt;
&lt;br /&gt;
[[int]]&lt;br /&gt;
&lt;br /&gt;
[[my_level()]]&lt;br /&gt;
&lt;br /&gt;
[[location]]&lt;br /&gt;
&lt;br /&gt;
[[item]]&lt;br /&gt;
&lt;br /&gt;
[[my_adventures()]]&lt;/div&gt;</summary>
		<author><name>Metraxis</name></author>
	</entry>
	<entry>
		<id>https://wiki.kolmafia.us/index.php?title=My_adventures&amp;diff=1759</id>
		<title>My adventures</title>
		<link rel="alternate" type="text/html" href="https://wiki.kolmafia.us/index.php?title=My_adventures&amp;diff=1759"/>
		<updated>2007-01-19T07:45:42Z</updated>

		<summary type="html">&lt;p&gt;Metraxis: New Page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[int]] [[my_adventures()]]&lt;br /&gt;
&lt;br /&gt;
This function returns the logged-in character&#039;s current number of remaining adventures as an [[int]].  Use of this function is essential in any kind of goal-seeking loop, lest they run on forever trying to adventure with no way to do so.  &lt;br /&gt;
&lt;br /&gt;
An example:&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
 while([[my_adventures()]] &amp;gt;= 4) {&lt;br /&gt;
   if(use(1,$[[item]][dance card])) {&lt;br /&gt;
     adventure(3,$[[location]][Haunted Gallery]);&lt;br /&gt;
     adventure(3,$[[location]][Haunted Ballroom]);&lt;br /&gt;
   }&lt;br /&gt;
 }&amp;lt;/code&amp;gt;&lt;/div&gt;</summary>
		<author><name>Metraxis</name></author>
	</entry>
	<entry>
		<id>https://wiki.kolmafia.us/index.php?title=User:Metraxis&amp;diff=1622</id>
		<title>User:Metraxis</title>
		<link rel="alternate" type="text/html" href="https://wiki.kolmafia.us/index.php?title=User:Metraxis&amp;diff=1622"/>
		<updated>2007-01-18T06:50:00Z</updated>

		<summary type="html">&lt;p&gt;Metraxis: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[User:Metraxis|Metraxis]]:&lt;br /&gt;
&lt;br /&gt;
A KoL player of old but not ancient vintage (after Black Sunday, but before Ascension), and a somwhat prolific scripter.&lt;br /&gt;
&lt;br /&gt;
Currently working on:  Adding and segmenting basic ASH information.  Only a few edits have been done so far, as &#039;proof of concept&#039;, in order to draw comment before expanding to larger chunks of the wiki.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Pages Authored by Metraxis:&lt;br /&gt;
&lt;br /&gt;
[[User:Metraxis]]&lt;br /&gt;
&lt;br /&gt;
[[my_name()]]&lt;br /&gt;
&lt;br /&gt;
[[Template:Primitive]]&lt;br /&gt;
&lt;br /&gt;
[[string]]&lt;br /&gt;
&lt;br /&gt;
[[my_class()]]&lt;br /&gt;
&lt;br /&gt;
[[Template:Enumerated]]&lt;br /&gt;
&lt;br /&gt;
[[class]]&lt;br /&gt;
&lt;br /&gt;
[[int]]&lt;br /&gt;
&lt;br /&gt;
[[my_level()]]&lt;br /&gt;
&lt;br /&gt;
[[location]]&lt;br /&gt;
&lt;br /&gt;
[[item]]&lt;/div&gt;</summary>
		<author><name>Metraxis</name></author>
	</entry>
	<entry>
		<id>https://wiki.kolmafia.us/index.php?title=Item&amp;diff=1749</id>
		<title>Item</title>
		<link rel="alternate" type="text/html" href="https://wiki.kolmafia.us/index.php?title=Item&amp;diff=1749"/>
		<updated>2007-01-18T06:47:41Z</updated>

		<summary type="html">&lt;p&gt;Metraxis: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Enumerated|Name=item}}&lt;/div&gt;</summary>
		<author><name>Metraxis</name></author>
	</entry>
	<entry>
		<id>https://wiki.kolmafia.us/index.php?title=My_level&amp;diff=1729</id>
		<title>My level</title>
		<link rel="alternate" type="text/html" href="https://wiki.kolmafia.us/index.php?title=My_level&amp;diff=1729"/>
		<updated>2007-01-18T06:47:10Z</updated>

		<summary type="html">&lt;p&gt;Metraxis: More type links&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[int]] [[my_level()]]&lt;br /&gt;
&lt;br /&gt;
This function returns the logged-in character&#039;s current level as an [[int]], and is easily used as an initial test to avoid aborts and loops in scripts which attempt to burn adventures in specific areas due to the targetted area being unavailable.  An example:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
 [[location]] select_farming_area() {&lt;br /&gt;
   if([[my_level()]] &amp;gt;= 10) {&lt;br /&gt;
     if(item_amount($[[item]][S.O.C.K.]) + ...&lt;br /&gt;
      item_amount($[[item]][intragalactic rowboat]) &amp;gt; 0) {&lt;br /&gt;
       return $[[location]][Castle in the Clouds in the Sky];&lt;br /&gt;
     } else {&lt;br /&gt;
       return $[[location]][Penultimate Fantasy Airship];&lt;br /&gt;
     }&lt;br /&gt;
   } else if([[my_level()]] &amp;gt;= 8) { &lt;br /&gt;
      ...etc...&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;/div&gt;</summary>
		<author><name>Metraxis</name></author>
	</entry>
	<entry>
		<id>https://wiki.kolmafia.us/index.php?title=Location&amp;diff=1741</id>
		<title>Location</title>
		<link rel="alternate" type="text/html" href="https://wiki.kolmafia.us/index.php?title=Location&amp;diff=1741"/>
		<updated>2007-01-18T06:46:18Z</updated>

		<summary type="html">&lt;p&gt;Metraxis: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Enumerated|Name=location}}&lt;/div&gt;</summary>
		<author><name>Metraxis</name></author>
	</entry>
	<entry>
		<id>https://wiki.kolmafia.us/index.php?title=My_level&amp;diff=1728</id>
		<title>My level</title>
		<link rel="alternate" type="text/html" href="https://wiki.kolmafia.us/index.php?title=My_level&amp;diff=1728"/>
		<updated>2007-01-18T06:45:03Z</updated>

		<summary type="html">&lt;p&gt;Metraxis: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[int]] [[my_level()]]&lt;br /&gt;
&lt;br /&gt;
This function returns the logged-in character&#039;s current level as an [[int]], and is easily used as an initial test to avoid aborts and loops in scripts which attempt to burn adventures in specific areas due to the targetted area being unavailable.  An example:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
 [[location]] select_farming_area() {&lt;br /&gt;
   if([[my_level()]] &amp;gt;= 10) {&lt;br /&gt;
     if(item_amount($item[S.O.C.K.]) + ...&lt;br /&gt;
      item_amount($item[intragalactic rowboat]) &amp;gt; 0) {&lt;br /&gt;
       return $[[location]][Castle in the Clouds in the Sky];&lt;br /&gt;
     } else {&lt;br /&gt;
       return $[[location]][Penultimate Fantasy Airship];&lt;br /&gt;
     }&lt;br /&gt;
   } else if([[my_level()]] &amp;gt;= 8) { &lt;br /&gt;
      ...etc...&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;/div&gt;</summary>
		<author><name>Metraxis</name></author>
	</entry>
	<entry>
		<id>https://wiki.kolmafia.us/index.php?title=My_name&amp;diff=1628</id>
		<title>My name</title>
		<link rel="alternate" type="text/html" href="https://wiki.kolmafia.us/index.php?title=My_name&amp;diff=1628"/>
		<updated>2007-01-18T06:34:31Z</updated>

		<summary type="html">&lt;p&gt;Metraxis: Wiki-style formatting&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[string]] [[my_name()]]&lt;br /&gt;
&lt;br /&gt;
This function returns the logged-in character&#039;s name as a [[string]].&lt;/div&gt;</summary>
		<author><name>Metraxis</name></author>
	</entry>
	<entry>
		<id>https://wiki.kolmafia.us/index.php?title=My_meat&amp;diff=1697</id>
		<title>My meat</title>
		<link rel="alternate" type="text/html" href="https://wiki.kolmafia.us/index.php?title=My_meat&amp;diff=1697"/>
		<updated>2007-01-17T07:34:41Z</updated>

		<summary type="html">&lt;p&gt;Metraxis: My meat moved to My meat(): Spelling correction&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;int my_meat()&amp;lt;/strong&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Returns the amount of meat you currently have in your inventory. This does not include meat you have in Your Colossal Closet or Hagnk&#039;s storage.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
The following sample checks to see if you have enough meat to buy a hermit Permit and if you do, it will buy one.&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
  int a = my_meat();&lt;br /&gt;
  if(a &amp;lt;= 100)&lt;br /&gt;
    {&lt;br /&gt;
    buy(1, $item[hermit permit]);&lt;br /&gt;
    }&lt;br /&gt;
&amp;lt;/code&amp;gt; &lt;br /&gt;
&lt;br /&gt;
The following code does the same, but places my_meat in the if statement rather than storing it in a variable first.&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
  if(my_meat() &amp;lt;= 100)&lt;br /&gt;
    {&lt;br /&gt;
    buy(1, $item[hermit permit]);&lt;br /&gt;
    }&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;Center&amp;gt;&lt;br /&gt;
&amp;lt;table style=&amp;quot;width:80%;margin-top:+.7em;background-color:#F4DF3B;border:2px solid #8663A8&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;tr&amp;gt;&lt;br /&gt;
    &amp;lt;td class=&amp;quot;box_tgen&amp;quot; style=&amp;quot;text-align:center;color:#000;font-size:90%;border:none;margin: 0;padding:.1em;&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;See Also:&#039;&#039;&#039; &amp;lt;br&amp;gt; [[my_closetmeat]] || [[item_amount]]&amp;lt;/td&amp;gt;&lt;br /&gt;
  &amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&amp;lt;/Center&amp;gt;&lt;/div&gt;</summary>
		<author><name>Metraxis</name></author>
	</entry>
	<entry>
		<id>https://wiki.kolmafia.us/index.php?title=My_class&amp;diff=1710</id>
		<title>My class</title>
		<link rel="alternate" type="text/html" href="https://wiki.kolmafia.us/index.php?title=My_class&amp;diff=1710"/>
		<updated>2007-01-17T07:33:17Z</updated>

		<summary type="html">&lt;p&gt;Metraxis: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[class]] &amp;lt;b&amp;gt;my_class&amp;lt;/b&amp;gt;()&lt;br /&gt;
&lt;br /&gt;
This function returns the logged-in character&#039;s current class as a [[class]].&lt;br /&gt;
&lt;br /&gt;
As an example, the following code snippet decides how many big rocks to acquire based on the character&#039;s class:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
  [[int]] rocks;&lt;br /&gt;
  &lt;br /&gt;
  if([[my_class()]] == $[[class]][Seal Clubber] ||&lt;br /&gt;
   [[my_class()]] == $[[class]][Turtle Tamer] ||&lt;br /&gt;
   [[my_class()]] == $[[class]][Disco Bandit]) {&lt;br /&gt;
    rocks = 2;&lt;br /&gt;
  } else {&lt;br /&gt;
    rocks = 1;&lt;br /&gt;
  }&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;/div&gt;</summary>
		<author><name>Metraxis</name></author>
	</entry>
	<entry>
		<id>https://wiki.kolmafia.us/index.php?title=User:Metraxis&amp;diff=1621</id>
		<title>User:Metraxis</title>
		<link rel="alternate" type="text/html" href="https://wiki.kolmafia.us/index.php?title=User:Metraxis&amp;diff=1621"/>
		<updated>2007-01-17T07:19:58Z</updated>

		<summary type="html">&lt;p&gt;Metraxis: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[User:Metraxis|Metraxis]]:&lt;br /&gt;
&lt;br /&gt;
A KoL player of old but not ancient vintage (after Black Sunday, but before Ascension), and a somwhat prolific scripter.&lt;br /&gt;
&lt;br /&gt;
Currently working on:  Adding and segmenting basic ASH information.  Only a few edits have been done so far, as &#039;proof of concept&#039;, in order to draw comment before expanding to larger chunks of the wiki.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Pages Authored by Metraxis:&lt;br /&gt;
&lt;br /&gt;
[[User:Metraxis]]&lt;br /&gt;
&lt;br /&gt;
[[my_name()]]&lt;br /&gt;
&lt;br /&gt;
[[Template:Primitive]]&lt;br /&gt;
&lt;br /&gt;
[[string]]&lt;br /&gt;
&lt;br /&gt;
[[my_class()]]&lt;br /&gt;
&lt;br /&gt;
[[Template:Enumerated]]&lt;br /&gt;
&lt;br /&gt;
[[class]]&lt;br /&gt;
&lt;br /&gt;
[[int]]&lt;/div&gt;</summary>
		<author><name>Metraxis</name></author>
	</entry>
	<entry>
		<id>https://wiki.kolmafia.us/index.php?title=Int&amp;diff=1724</id>
		<title>Int</title>
		<link rel="alternate" type="text/html" href="https://wiki.kolmafia.us/index.php?title=Int&amp;diff=1724"/>
		<updated>2007-01-17T07:19:31Z</updated>

		<summary type="html">&lt;p&gt;Metraxis: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Primitive|Name=int}}&lt;/div&gt;</summary>
		<author><name>Metraxis</name></author>
	</entry>
	<entry>
		<id>https://wiki.kolmafia.us/index.php?title=User:Metraxis&amp;diff=1620</id>
		<title>User:Metraxis</title>
		<link rel="alternate" type="text/html" href="https://wiki.kolmafia.us/index.php?title=User:Metraxis&amp;diff=1620"/>
		<updated>2007-01-17T07:17:58Z</updated>

		<summary type="html">&lt;p&gt;Metraxis: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[User:Metraxis|Metraxis]]:&lt;br /&gt;
&lt;br /&gt;
A KoL player of old but not ancient vintage (after Black Sunday, but before Ascension), and a somwhat prolific scripter.&lt;br /&gt;
&lt;br /&gt;
Currently working on:  Adding and segmenting basic ASH information.  Only a few edits have been done so far, as &#039;proof of concept&#039;, in order to draw comment before expanding to larger chunks of the wiki.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Pages Authored by Metraxis:&lt;br /&gt;
&lt;br /&gt;
[[User:Metraxis]]&lt;br /&gt;
&lt;br /&gt;
[[my_name()]]&lt;br /&gt;
&lt;br /&gt;
[[Template:Primitive]]&lt;br /&gt;
&lt;br /&gt;
[[string]]&lt;br /&gt;
&lt;br /&gt;
[[my_class()]]&lt;br /&gt;
&lt;br /&gt;
[[Template:Enumerated]]&lt;/div&gt;</summary>
		<author><name>Metraxis</name></author>
	</entry>
	<entry>
		<id>https://wiki.kolmafia.us/index.php?title=User:Metraxis&amp;diff=1619</id>
		<title>User:Metraxis</title>
		<link rel="alternate" type="text/html" href="https://wiki.kolmafia.us/index.php?title=User:Metraxis&amp;diff=1619"/>
		<updated>2007-01-17T07:13:36Z</updated>

		<summary type="html">&lt;p&gt;Metraxis: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[User:Metraxis|Metraxis]]:&lt;br /&gt;
&lt;br /&gt;
A KoL player of old but not ancient vintage (after Black Sunday, but before Ascension), and a somwhat prolific scripter.&lt;br /&gt;
&lt;br /&gt;
Currently working on:  Adding and segmenting basic ASH information.  Only a few edits have been done so far, as &#039;proof of concept&#039;, in order to draw comment before expanding to larger chunks of the wiki.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Pages Authored by Metraxis:&lt;br /&gt;
&lt;br /&gt;
[[User:Metraxis]]&lt;br /&gt;
&lt;br /&gt;
[[my_name()]]&lt;br /&gt;
&lt;br /&gt;
[[Template:Primitive]]&lt;br /&gt;
&lt;br /&gt;
[[my_class()]]&lt;br /&gt;
&lt;br /&gt;
{{Enumerated}}&lt;/div&gt;</summary>
		<author><name>Metraxis</name></author>
	</entry>
	<entry>
		<id>https://wiki.kolmafia.us/index.php?title=User:Metraxis&amp;diff=1618</id>
		<title>User:Metraxis</title>
		<link rel="alternate" type="text/html" href="https://wiki.kolmafia.us/index.php?title=User:Metraxis&amp;diff=1618"/>
		<updated>2007-01-17T07:11:15Z</updated>

		<summary type="html">&lt;p&gt;Metraxis: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[User:Metraxis|Metraxis]]:&lt;br /&gt;
&lt;br /&gt;
A KoL player of old but not ancient vintage (after Black Sunday, but before Ascension), and a somwhat prolific scripter.&lt;br /&gt;
&lt;br /&gt;
Currently working on:  Adding and segmenting basic ASH information.  Only a few edits have been done so far, as &#039;proof of concept&#039;, in order to draw comment before expanding to larger chunks of the wiki.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Pages Authored by Metraxis:&lt;br /&gt;
&lt;br /&gt;
[[User:Metraxis]]&lt;br /&gt;
&lt;br /&gt;
[[my_name()]]&lt;br /&gt;
&lt;br /&gt;
[[Template:Primitive]]&lt;br /&gt;
&lt;br /&gt;
[[my_class]]&lt;br /&gt;
&lt;br /&gt;
{{Enumerated}}&lt;/div&gt;</summary>
		<author><name>Metraxis</name></author>
	</entry>
	<entry>
		<id>https://wiki.kolmafia.us/index.php?title=My_class&amp;diff=1709</id>
		<title>My class</title>
		<link rel="alternate" type="text/html" href="https://wiki.kolmafia.us/index.php?title=My_class&amp;diff=1709"/>
		<updated>2007-01-17T07:10:09Z</updated>

		<summary type="html">&lt;p&gt;Metraxis: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[class]] &amp;lt;b&amp;gt;my_class&amp;lt;/b&amp;gt;()&lt;br /&gt;
&lt;br /&gt;
This function returns the logged-in character&#039;s current class as a [[class]].&lt;/div&gt;</summary>
		<author><name>Metraxis</name></author>
	</entry>
	<entry>
		<id>https://wiki.kolmafia.us/index.php?title=User:Metraxis&amp;diff=1617</id>
		<title>User:Metraxis</title>
		<link rel="alternate" type="text/html" href="https://wiki.kolmafia.us/index.php?title=User:Metraxis&amp;diff=1617"/>
		<updated>2007-01-17T07:08:06Z</updated>

		<summary type="html">&lt;p&gt;Metraxis: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[User:Metraxis|Metraxis]]:&lt;br /&gt;
&lt;br /&gt;
A KoL player of old but not ancient vintage (after Black Sunday, but before Ascension), and a somwhat prolific scripter.&lt;br /&gt;
&lt;br /&gt;
Currently working on:  Adding and segmenting basic ASH information.  Only a few edits have been done so far, as &#039;proof of concept&#039;, in order to draw comment before expanding to larger chunks of the wiki.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Pages Authored by Metraxis:&lt;br /&gt;
&lt;br /&gt;
[[User:Metraxis]]&lt;br /&gt;
&lt;br /&gt;
[[my_name()]]&lt;br /&gt;
&lt;br /&gt;
[[Template:Primitive]]&lt;br /&gt;
&lt;br /&gt;
[[my_class()]]&lt;/div&gt;</summary>
		<author><name>Metraxis</name></author>
	</entry>
	<entry>
		<id>https://wiki.kolmafia.us/index.php?title=User:Metraxis&amp;diff=1616</id>
		<title>User:Metraxis</title>
		<link rel="alternate" type="text/html" href="https://wiki.kolmafia.us/index.php?title=User:Metraxis&amp;diff=1616"/>
		<updated>2007-01-15T17:38:02Z</updated>

		<summary type="html">&lt;p&gt;Metraxis: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[User:Metraxis|Metraxis]]:&lt;br /&gt;
&lt;br /&gt;
A KoL player of old but not ancient vintage (after Black Sunday, but before Ascension), and a somwhat prolific scripter.&lt;br /&gt;
&lt;br /&gt;
Currently working on:  Adding and segmenting basic ASH information.  Only a few edits have been done so far, as &#039;proof of concept&#039;, in order to draw comment before expanding to larger chunks of the wiki.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Pages Authored by Metraxis:&lt;br /&gt;
&lt;br /&gt;
[[User:Metraxis]]&lt;br /&gt;
&lt;br /&gt;
[[my_name()]]&lt;br /&gt;
&lt;br /&gt;
[[Template:Primitive]]&lt;/div&gt;</summary>
		<author><name>Metraxis</name></author>
	</entry>
	<entry>
		<id>https://wiki.kolmafia.us/index.php?title=String&amp;diff=1684</id>
		<title>String</title>
		<link rel="alternate" type="text/html" href="https://wiki.kolmafia.us/index.php?title=String&amp;diff=1684"/>
		<updated>2007-01-15T17:33:45Z</updated>

		<summary type="html">&lt;p&gt;Metraxis: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Primitive|Name=string}}&lt;/div&gt;</summary>
		<author><name>Metraxis</name></author>
	</entry>
	<entry>
		<id>https://wiki.kolmafia.us/index.php?title=User:Metraxis&amp;diff=1615</id>
		<title>User:Metraxis</title>
		<link rel="alternate" type="text/html" href="https://wiki.kolmafia.us/index.php?title=User:Metraxis&amp;diff=1615"/>
		<updated>2007-01-15T17:32:39Z</updated>

		<summary type="html">&lt;p&gt;Metraxis: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[User:Metraxis|Metraxis]]:&lt;br /&gt;
&lt;br /&gt;
A KoL player of old but not ancient vintage (after Black Sunday, but before Ascension), and a somwhat prolific scripter&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Pages Authored by Metraxis:&lt;br /&gt;
&lt;br /&gt;
[[User:Metraxis]]&lt;br /&gt;
&lt;br /&gt;
[[my_name()]]&lt;br /&gt;
&lt;br /&gt;
[[Template:Primitive]]&lt;/div&gt;</summary>
		<author><name>Metraxis</name></author>
	</entry>
	<entry>
		<id>https://wiki.kolmafia.us/index.php?title=User:Metraxis&amp;diff=1614</id>
		<title>User:Metraxis</title>
		<link rel="alternate" type="text/html" href="https://wiki.kolmafia.us/index.php?title=User:Metraxis&amp;diff=1614"/>
		<updated>2007-01-15T17:31:56Z</updated>

		<summary type="html">&lt;p&gt;Metraxis: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[User:Metraxis|Metraxis]]:&lt;br /&gt;
&lt;br /&gt;
A KoL player of old but not ancient vintage (after Black Sunday, but before Ascension), and a somwhat prolific scripter&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Pages Authored by Metraxis:&lt;br /&gt;
&lt;br /&gt;
[[User:Metraxis]]&lt;br /&gt;
&lt;br /&gt;
[[my_name()]]&lt;br /&gt;
&lt;br /&gt;
[[{{Primitive}}]]&lt;/div&gt;</summary>
		<author><name>Metraxis</name></author>
	</entry>
	<entry>
		<id>https://wiki.kolmafia.us/index.php?title=User:Metraxis&amp;diff=1613</id>
		<title>User:Metraxis</title>
		<link rel="alternate" type="text/html" href="https://wiki.kolmafia.us/index.php?title=User:Metraxis&amp;diff=1613"/>
		<updated>2007-01-15T17:28:26Z</updated>

		<summary type="html">&lt;p&gt;Metraxis: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[User:Metraxis|Metraxis]]:&lt;br /&gt;
&lt;br /&gt;
A KoL player of old but not ancient vintage (after Black Sunday, but before Ascension), and a somwhat prolific scripter&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Pages Authored by Metraxis:&lt;br /&gt;
&lt;br /&gt;
[[User:Metraxis]]&lt;br /&gt;
&lt;br /&gt;
[[my_name()]]&lt;br /&gt;
&lt;br /&gt;
{{Primative}}&lt;/div&gt;</summary>
		<author><name>Metraxis</name></author>
	</entry>
	<entry>
		<id>https://wiki.kolmafia.us/index.php?title=My_name&amp;diff=1627</id>
		<title>My name</title>
		<link rel="alternate" type="text/html" href="https://wiki.kolmafia.us/index.php?title=My_name&amp;diff=1627"/>
		<updated>2007-01-15T17:27:45Z</updated>

		<summary type="html">&lt;p&gt;Metraxis: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[string]] &amp;lt;b&amp;gt;my_name&amp;lt;/b&amp;gt;()&lt;br /&gt;
&lt;br /&gt;
This function returns the logged-in character&#039;s name as a [[string]].&lt;/div&gt;</summary>
		<author><name>Metraxis</name></author>
	</entry>
	<entry>
		<id>https://wiki.kolmafia.us/index.php?title=User:Metraxis&amp;diff=1612</id>
		<title>User:Metraxis</title>
		<link rel="alternate" type="text/html" href="https://wiki.kolmafia.us/index.php?title=User:Metraxis&amp;diff=1612"/>
		<updated>2007-01-15T17:21:58Z</updated>

		<summary type="html">&lt;p&gt;Metraxis: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[User:Metraxis|Metraxis]]:&lt;br /&gt;
&lt;br /&gt;
A KoL player of old but not ancient vintage (after Black Sunday, but before Ascension), and a somwhat prolific scripter&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Pages Authored by Metraxis:&lt;br /&gt;
&lt;br /&gt;
[[User:Metraxis]]&lt;br /&gt;
&lt;br /&gt;
[[my_name()]]&lt;/div&gt;</summary>
		<author><name>Metraxis</name></author>
	</entry>
	<entry>
		<id>https://wiki.kolmafia.us/index.php?title=User:Metraxis&amp;diff=1611</id>
		<title>User:Metraxis</title>
		<link rel="alternate" type="text/html" href="https://wiki.kolmafia.us/index.php?title=User:Metraxis&amp;diff=1611"/>
		<updated>2007-01-09T08:21:39Z</updated>

		<summary type="html">&lt;p&gt;Metraxis: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[User:Metraxis|Metraxis]]:&lt;br /&gt;
&lt;br /&gt;
A KoL player of old but not ancient vintage (after Black Sunday, but before Ascension), and a somwhat prolific scripter&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Pages Authored by Metraxis:&lt;br /&gt;
&lt;br /&gt;
[[User:Metraxis]]&lt;/div&gt;</summary>
		<author><name>Metraxis</name></author>
	</entry>
	<entry>
		<id>https://wiki.kolmafia.us/index.php?title=User:Metraxis&amp;diff=1610</id>
		<title>User:Metraxis</title>
		<link rel="alternate" type="text/html" href="https://wiki.kolmafia.us/index.php?title=User:Metraxis&amp;diff=1610"/>
		<updated>2007-01-09T08:18:10Z</updated>

		<summary type="html">&lt;p&gt;Metraxis: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[User:Metraxis|Metraxis]]:&lt;br /&gt;
&lt;br /&gt;
A KoL player of old but not ancient vintage (after Black Sunday, but before Ascension), and a somwhat prolific scripter&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Pages Authored by Metraxis:&lt;br /&gt;
&lt;br /&gt;
[[User:Metraxis]]&lt;br /&gt;
&lt;br /&gt;
{{ASH function}}&lt;/div&gt;</summary>
		<author><name>Metraxis</name></author>
	</entry>
	<entry>
		<id>https://wiki.kolmafia.us/index.php?title=User:Metraxis&amp;diff=1609</id>
		<title>User:Metraxis</title>
		<link rel="alternate" type="text/html" href="https://wiki.kolmafia.us/index.php?title=User:Metraxis&amp;diff=1609"/>
		<updated>2007-01-09T08:16:26Z</updated>

		<summary type="html">&lt;p&gt;Metraxis: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Metraxis]]:&lt;br /&gt;
&lt;br /&gt;
A KoL player of old but not ancient vintage (after Black Sunday, but before Ascension), and a somwhat prolific scripter&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Pages Authored by Metraxis:&lt;br /&gt;
&lt;br /&gt;
[[Metraxis]]&lt;br /&gt;
&lt;br /&gt;
{{ASH function}}&lt;/div&gt;</summary>
		<author><name>Metraxis</name></author>
	</entry>
</feed>