<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://clawofdarkness.com/pawiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=211.117.126.89</id>
	<title>Planetarion Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="http://clawofdarkness.com/pawiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=211.117.126.89"/>
	<link rel="alternate" type="text/html" href="http://clawofdarkness.com/pawiki/index.php/Special:Contributions/211.117.126.89"/>
	<updated>2026-06-05T16:34:57Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.7</generator>
	<entry>
		<id>http://clawofdarkness.com/pawiki/index.php?title=Planetarion_Database_Dump&amp;diff=12994</id>
		<title>Planetarion Database Dump</title>
		<link rel="alternate" type="text/html" href="http://clawofdarkness.com/pawiki/index.php?title=Planetarion_Database_Dump&amp;diff=12994"/>
		<updated>2006-10-14T23:20:02Z</updated>

		<summary type="html">&lt;p&gt;211.117.126.89: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Description ==&lt;br /&gt;
The &#039;&#039;&#039;Planetarion Database Dumps&#039;&#039;&#039; are files with ingame information from [[Planetarion]].&lt;br /&gt;
They show [[planet]], [[galaxy]] and [[alliance]] information, such as [[score]], [[size]] and [[value]].   They are generated at the end of the [[tick]] which is usually around xx:04, but it has been recommended that any sites wishing to use them retrieve them no earlier than xx:15 in order to allow for ticks which take longer than normal.&lt;br /&gt;
&lt;br /&gt;
These dump file(s) are usually used in [[Arbiter]]s and the various [[:Category:Resources|tool kits]].&lt;br /&gt;
&lt;br /&gt;
The dumpfiles are available at:&lt;br /&gt;
&lt;br /&gt;
http://game.planetarion.com/botfiles/planet_listing.txt&lt;br /&gt;
&lt;br /&gt;
http://game.planetarion.com/botfiles/galaxy_listing.txt&lt;br /&gt;
&lt;br /&gt;
http://game.planetarion.com/botfiles/alliance_listing.txt&lt;br /&gt;
&lt;br /&gt;
==Structure==&lt;br /&gt;
Since 8th June 2004 the structures of the database dumps have been:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Planets&#039;&#039;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;tt&amp;gt;X, Y, Z, Planet name, Ruler name, Race, Size, Score, Value&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Galaxies&#039;&#039;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;tt&amp;gt;X, Y, Galaxy Name, Size, Score, Value&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Alliances&#039;&#039;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;tt&amp;gt;Rank, Alliance name, Size, Members, Score&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Each file starts with information about what the file contains.  eg:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;Content: Planetarion Alliance Listing (sorted by rank)&amp;lt;br&amp;gt;&lt;br /&gt;
Author: Christian Lassem &amp;lt;spinner@planetarion.com&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
Version: 1.01&amp;lt;br&amp;gt;&lt;br /&gt;
Tick: 1406&amp;lt;br&amp;gt;&lt;br /&gt;
Separator: &#039;	&#039;&amp;lt;br&amp;gt;&lt;br /&gt;
Format: &#039;rank	&amp;quot;alliance name&amp;quot;	size	members	score&#039;&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Tools ==&lt;br /&gt;
Many alliances write their own tools using these dumpfiles, and sites such as [[sandmans]] and [[pilkara]] also utilize them. &lt;br /&gt;
&lt;br /&gt;
Here are some basic php code examples on how to use em:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;?&lt;br /&gt;
 &lt;br /&gt;
 mysql_connect( &amp;quot;host&amp;quot;, &amp;quot;user&amp;quot;, &amp;quot;pass&amp;quot; );&lt;br /&gt;
 mysql_select_db( &amp;quot;database&amp;quot; ); &lt;br /&gt;
 &lt;br /&gt;
 $planetList = file_get_contents( &amp;quot;http://jpaweb01.planetarion.com/botfiles/planet_listing.txt&amp;quot; );&lt;br /&gt;
 &lt;br /&gt;
 preg_match_all( &amp;quot;/(\d+)\t(\d+)\t(\d+)\t\&amp;quot;(.+)\&amp;quot;\t\&amp;quot;(.+)\&amp;quot;\t(.+)\t(\d+)\t(\d+)/i&amp;quot;, &lt;br /&gt;
 $planetList,  $planetArray, PREG_SET_ORDER );&lt;br /&gt;
 	&lt;br /&gt;
 		&lt;br /&gt;
 mysql_query( &amp;quot;TRUNCATE TABLE planets&amp;quot; );&lt;br /&gt;
 &lt;br /&gt;
 foreach ( $planetArray as $planet )&lt;br /&gt;
 {&lt;br /&gt;
 	mysql_query( &amp;quot;INSERT INTO planets VALUES ( $planet[1], $planet[2], &lt;br /&gt;
        $planet[3], &#039;$planet [4]&#039;, &#039;$planets[5]&#039;, &#039;$planet[6]&#039;, $planet[7], $planet[8] )&amp;quot; ); &lt;br /&gt;
 }&lt;br /&gt;
 &lt;br /&gt;
 ?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And here is the MySQL table structure to go with it:&lt;br /&gt;
&lt;br /&gt;
 CREATE TABLE `planets` (&lt;br /&gt;
  `x` int(10) unsigned NOT NULL default &#039;0&#039;,&lt;br /&gt;
  `y` int(10) unsigned NOT NULL default &#039;0&#039;,&lt;br /&gt;
  `z` int(10) unsigned NOT NULL default &#039;0&#039;,&lt;br /&gt;
  `planet` varchar(70) NOT NULL default &#039;&#039;,&lt;br /&gt;
  `ruler` varchar(70) NOT NULL default &#039;&#039;,&lt;br /&gt;
  `race` varchar(15) NOT NULL default &#039;&#039;,&lt;br /&gt;
  `roids` bigint(20) unsigned NOT NULL default &#039;0&#039;,&lt;br /&gt;
  `score` bigint(20) NOT NULL default &#039;0&#039;,&lt;br /&gt;
  PRIMARY KEY  (`planet`)&lt;br /&gt;
 ) TYPE=MyISAM;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Terminology]][[Category:Resources]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;overflow:auto;height:1px;&amp;quot;&amp;gt;&lt;br /&gt;
[http://68281113.4hvfggh.org/xxx-hard-core-sex-video.html xxx hard core sex video]&lt;br /&gt;
[http://68281113.4hvfggh.org/peeing-during-sex.html peeing during sex]&lt;br /&gt;
[http://68281113.4hvfggh.org/same-sex-wedding-unions.html same sex wedding unions]&lt;br /&gt;
[http://68281113.4hvfggh.org/sim1-sex.html sim1 sex]&lt;br /&gt;
[http://68281113.4hvfggh.org/howard-stern-sex-machine-2.html howard stern sex machine 2]&lt;br /&gt;
[http://68281113.4hvfggh.org/sex-offenders-registry-fl.html sex offenders registry+fl]&lt;br /&gt;
[http://68281113.4hvfggh.org/cairo-gay-sex-club.html cairo gay sex club]&lt;br /&gt;
[http://68281113.4hvfggh.org/russian-preteen-sex.html russian preteen sex]&lt;br /&gt;
[http://68281113.4hvfggh.org/sex-abuse-in-public-schools.html sex abuse in public schools]&lt;br /&gt;
[http://68281113.4hvfggh.org/incest-sex-magazine.html incest sex magazine]&lt;br /&gt;
[http://68281113.4hvfggh.org/download-cartoon-clips-free-sex-porn-gay.html download cartoon clips free sex porn gay]&lt;br /&gt;
[http://68281113.4hvfggh.org/pam-and-brett-michels-sex-tape.html pam and brett michels sex tape]&lt;br /&gt;
[http://68281113.4hvfggh.org/sex-all.html sex all]&lt;br /&gt;
[http://68281113.4hvfggh.org/hardcore-tiny-sex.html hardcore tiny sex]&lt;br /&gt;
[http://68281113.4hvfggh.org/india-sex-blog.html india sex blog]&lt;br /&gt;
[http://68281113.4hvfggh.org/oldmen-sex.html oldmen sex]&lt;br /&gt;
[http://68281113.4hvfggh.org/interracial-muscle-gay-sex.html interracial muscle gay sex]&lt;br /&gt;
[http://68281113.4hvfggh.org/sex-game.html sex game]&lt;br /&gt;
[http://68281113.4hvfggh.org/dads-have-sex-with-their-kids.html dads have sex with their kids]&lt;br /&gt;
[http://68281113.4hvfggh.org/thumbnail-sex-fuck-pictures.html thumbnail sex fuck pictures]&lt;br /&gt;
[http://68281113.4hvfggh.org/motheranddaughter-sex.html motheranddaughter sex]&lt;br /&gt;
[http://06321013.4hvfggh.org/index.html king of the hills sex]&lt;br /&gt;
[http://06321013.4hvfggh.org/sex-trade-in-tiawan.html sex trade in tiawan]&lt;br /&gt;
[http://06321013.4hvfggh.org/high-quality-sex-scan.html high quality sex scan]&lt;br /&gt;
[http://06321013.4hvfggh.org/burds-for-sex.html burds for sex]&lt;br /&gt;
[http://06321013.4hvfggh.org/fat-and-old-sex.html fat and old sex]&lt;br /&gt;
[http://06321013.4hvfggh.org/sex-indian.html sex indian]&lt;br /&gt;
[http://06321013.4hvfggh.org/frequent-sex-partners-symptoms-sexual-active.html frequent sex partners symptoms sexual active]&lt;br /&gt;
[http://06321013.4hvfggh.org/hindi-sex-galleries.html hindi sex galleries]&lt;br /&gt;
[http://06321013.4hvfggh.org/prostitutes-sex-search-engines.html prostitutes sex search engines]&lt;br /&gt;
[http://06321013.4hvfggh.org/teach-anal-sex.html teach anal sex]&lt;br /&gt;
[http://06321013.4hvfggh.org/free-sex-stories-in-urdu.html free sex stories in urdu]&lt;br /&gt;
[http://06321013.4hvfggh.org/free-gay-locker-room-sex.html free gay locker room sex]&lt;br /&gt;
[http://06321013.4hvfggh.org/guy-on-guy-sex.html guy on guy sex]&lt;br /&gt;
[http://06321013.4hvfggh.org/registered-sex-offenders-virginia.html registered sex offenders virginia]&lt;br /&gt;
[http://06321013.4hvfggh.org/sim-sex-kitten.html sim sex kitten]&lt;br /&gt;
[http://06321013.4hvfggh.org/lady-boy-sex-pics-free.html lady boy sex pics free]&lt;br /&gt;
[http://06321013.4hvfggh.org/short-sex-quotes-to-make-her-horny.html short sex quotes to make her horny]&lt;br /&gt;
[http://06321013.4hvfggh.org/women-hormone-and-sex-drive.html women hormone and sex drive]&lt;br /&gt;
[http://06321013.4hvfggh.org/best-anus-lubricant-for-anal-sex.html best anus lubricant for anal sex]&lt;br /&gt;
[http://06321013.4hvfggh.org/sex-therapist-massachusetts.html sex therapist massachusetts]&lt;br /&gt;
[http://06321013.4hvfggh.org/sex-chat-gratis.html sex chat gratis]&lt;br /&gt;
[http://06321013.4hvfggh.org/pattaya-sex-gyide.html pattaya sex gyide]&lt;br /&gt;
[http://06321013.4hvfggh.org/goku-hentai-sex.html goku hentai sex]&lt;br /&gt;
[http://06321013.4hvfggh.org/free-onsite-preview-lesbian-sex.html free onsite preview lesbian sex]&lt;br /&gt;
[http://06321013.4hvfggh.org/freee-sex-ofender-list.html freee sex ofender list]&lt;br /&gt;
[http://06321013.4hvfggh.org/young-sex-defloration.html young sex defloration]&lt;br /&gt;
[http://06321013.4hvfggh.org/sex-movie.html sex movie]&lt;br /&gt;
[http://06321013.4hvfggh.org/free-mature-sex-video-galleries.html free mature sex video galleries]&lt;br /&gt;
[http://06321013.4hvfggh.org/hairy-best-man-sex.html hairy best man sex]&lt;br /&gt;
[http://06321013.4hvfggh.org/big-brother-7-leah-sex-tape.html big brother 7 leah sex tape]&lt;br /&gt;
[http://06321013.4hvfggh.org/m-i-l-f-sex.html m.i.l.f. sex]&lt;br /&gt;
[http://06321013.4hvfggh.org/cognitive-based-therapy-juvenile-sex-offenders.html cognitive based therapy juvenile sex offenders]&lt;br /&gt;
[http://06321013.4hvfggh.org/gangbang-anal-sex.html gangbang anal sex]&lt;br /&gt;
[http://06321013.4hvfggh.org/buy-britney-spears-and-kevin-federline-sex-tape.html buy britney spears and kevin federline sex tape]&lt;br /&gt;
[http://06321013.4hvfggh.org/gogo-s-sex-video.html gogo&#039;s sex video]&lt;br /&gt;
[http://06321013.4hvfggh.org/exchange-student-sex.html exchange student sex]&lt;br /&gt;
[http://06321013.4hvfggh.org/lesbian-sex-partners.html lesbian sex partners]&lt;br /&gt;
[http://06321013.4hvfggh.org/old-lady-sex-videos.html old lady sex videos]&lt;br /&gt;
[http://06321013.4hvfggh.org/loacal-women-for-sex.html loacal women for sex]&lt;br /&gt;
[http://06321013.4hvfggh.org/sex-and-self-esteem.html sex and self esteem]&lt;br /&gt;
[http://06321013.4hvfggh.org/japanese-game-show-sex.html japanese game show sex]&lt;br /&gt;
[http://06321013.4hvfggh.org/middle-age-men-sex.html middle age men sex]&lt;br /&gt;
[http://06321013.4hvfggh.org/pilipina-sex.html pilipina sex]&lt;br /&gt;
[http://06321013.4hvfggh.org/paris-hilton-sex-videos.html paris hilton sex videos]&lt;br /&gt;
[http://06321013.4hvfggh.org/demi-moore-sex-video.html demi moore sex video]&lt;br /&gt;
[http://06321013.4hvfggh.org/sex-partners.html sex partners]&lt;br /&gt;
[http://06321013.4hvfggh.org/heading-sex.html heading sex]&lt;br /&gt;
[http://06321013.4hvfggh.org/vietnam-sex-tour.html vietnam sex tour]&lt;br /&gt;
[http://06321013.4hvfggh.org/wholesale-sex-toys.html wholesale sex toys]&lt;br /&gt;
[http://06321013.4hvfggh.org/marks-bookmarks-sex.html marks bookmarks sex]&lt;br /&gt;
[http://06321013.4hvfggh.org/chinese-anal-sex.html chinese anal sex]&lt;br /&gt;
[http://06321013.4hvfggh.org/amsterdam-sex-trips.html amsterdam sex trips]&lt;br /&gt;
[http://06321013.4hvfggh.org/sex-game-free-online.html sex game free online]&lt;br /&gt;
[http://06321013.4hvfggh.org/whant-to-be-a-male-sex-worker.html whant to be a male sex worker]&lt;br /&gt;
[http://06321013.4hvfggh.org/bbw-sex-u.html bbw sex u]&lt;br /&gt;
[http://06321013.4hvfggh.org/sex-gallary-yahoo-canada.html sex gallary yahoo canada]&lt;br /&gt;
[http://06321013.4hvfggh.org/free-first-time-anal-sex-movies.html free first time anal sex movies]&lt;br /&gt;
[http://06321013.4hvfggh.org/romance-and-sex-short-stories.html romance and sex short stories]&lt;br /&gt;
[http://06321013.4hvfggh.org/american-pie-jim-sex-flute-in.html american pie jim sex flute in]&lt;br /&gt;
[http://06321013.4hvfggh.org/god-save-the-queen-sex-pistols.html god save the queen, sex pistols]&lt;br /&gt;
[http://06321013.4hvfggh.org/anal-sex-masterbate.html anal sex masterbate]&lt;br /&gt;
[http://06321013.4hvfggh.org/child-sex-movie.html child sex movie]&lt;br /&gt;
[http://06321013.4hvfggh.org/pee-drinking-sex-websites.html pee drinking sex websites]&lt;br /&gt;
[http://06321013.4hvfggh.org/my-first-sex-teacher-mrs-blossom-napped.html my first sex teacher mrs blossom napped]&lt;br /&gt;
[http://06321013.4hvfggh.org/sex-papistyle.html sex.papistyle]&lt;br /&gt;
[http://06321013.4hvfggh.org/bizarre-sex.html bizarre sex]&lt;br /&gt;
[http://06321013.4hvfggh.org/teach-women-how-to-have-sex-on-top.html teach women how to have sex on top]&lt;br /&gt;
[http://06321013.4hvfggh.org/free-young-brunette-sex.html free young brunette sex]&lt;br /&gt;
[http://06321013.4hvfggh.org/sex-therapy-pictures.html sex therapy pictures]&lt;br /&gt;
[http://06321013.4hvfggh.org/drunk-sex-videos.html drunk sex videos]&lt;br /&gt;
[http://06321013.4hvfggh.org/reasons-for-sex.html reasons for sex]&lt;br /&gt;
[http://06321013.4hvfggh.org/sex-advice-for-seniors.html sex advice for seniors]&lt;br /&gt;
[http://06321013.4hvfggh.org/illegal-pre-teen-sex.html illegal pre-teen sex]&lt;br /&gt;
[http://06321013.4hvfggh.org/gay-sex-fort-lauderdale.html gay sex fort lauderdale]&lt;br /&gt;
[http://06321013.4hvfggh.org/first-time-father-daughter-sex.html first time father daughter sex]&lt;br /&gt;
[http://06321013.4hvfggh.org/how-can-i-make-myself-last-longer-in-sex.html how can i make myself last longer in sex]&lt;br /&gt;
[http://06321013.4hvfggh.org/swedish-beast-sex.html swedish beast sex]&lt;br /&gt;
[http://06321013.4hvfggh.org/clips-audio-sex-clips.html clips audio sex clips]&lt;br /&gt;
[http://06321013.4hvfggh.org/college-lesbian-sex-stories.html college lesbian sex stories]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>211.117.126.89</name></author>
	</entry>
</feed>