<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://globulation2.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=I+am+a+very+good+user+because+I+like+helping+this+wiki</id>
	<title>Globulation2 - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://globulation2.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=I+am+a+very+good+user+because+I+like+helping+this+wiki"/>
	<link rel="alternate" type="text/html" href="https://globulation2.org/wiki/Special:Contributions/I_am_a_very_good_user_because_I_like_helping_this_wiki"/>
	<updated>2026-04-13T20:33:57Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.31.16</generator>
	<entry>
		<id>https://globulation2.org/index.php?title=Terrain&amp;diff=10142</id>
		<title>Terrain</title>
		<link rel="alternate" type="text/html" href="https://globulation2.org/index.php?title=Terrain&amp;diff=10142"/>
		<updated>2017-08-11T12:55:45Z</updated>

		<summary type="html">&lt;p&gt;I am a very good user because I like helping this wiki: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The following is written after a day spent looking at Maph - it shouldn&amp;#039;t be considered as definitive.&lt;br /&gt;
&lt;br /&gt;
Squares of terrain are defined by three basic properties - the undertile, the main tile, and the main tile&amp;#039;s subtype.&lt;br /&gt;
&lt;br /&gt;
The undertile is the primary property, which the other two values are based on. The undertile is set manually (e.g. in the editor) to either water, sand, or grass. Since water and grass aren&amp;#039;t allowed next to each other, sand is inserted in-between.&lt;br /&gt;
&lt;br /&gt;
The main tile is generated from the undertile, through a somewhat mysterious process in Map::lookup(). The map tile used for a given square is based on the undertile of the current square, and the undertiles of the squares immediately below, right, and below-right of it. I suspect this process might be to do with handling edges correctly - for example, grass at the edge of an ocean (and at the corner of a pool) appears to be a special type of main tile. However, that is just speculation - I&amp;#039;m not even sure that the main tile will be of the same type as the undertile (e.g. the undertile could be water, the main tile sand).&lt;br /&gt;
&lt;br /&gt;
The main tile&amp;#039;s subtype is a random number between 0 and 7, or sometimes 0 and 15. It doesn&amp;#039;t convey any meaning, it just controls which exact image is displayed for the tile.&lt;br /&gt;
&lt;br /&gt;
[[Category:en]]&lt;br /&gt;
[[Category:Developer Resources]]&lt;/div&gt;</summary>
		<author><name>I am a very good user because I like helping this wiki</name></author>
		
	</entry>
	<entry>
		<id>https://globulation2.org/index.php?title=Terrain&amp;diff=10140</id>
		<title>Terrain</title>
		<link rel="alternate" type="text/html" href="https://globulation2.org/index.php?title=Terrain&amp;diff=10140"/>
		<updated>2017-08-11T12:55:28Z</updated>

		<summary type="html">&lt;p&gt;I am a very good user because I like helping this wiki: I am a very good user because I like helping this wiki moved page Terrain to Terain&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The following is written after a day spent looking at Map.h - it shouldn&amp;#039;t be considered as definitive.&lt;br /&gt;
&lt;br /&gt;
Squares of terrain are defined by three basic properties - the undertile, the main tile, and the main tile&amp;#039;s subtype.&lt;br /&gt;
&lt;br /&gt;
The undertile is the primary property, which the other two values are based on. The undertile is set manually (e.g. in the editor) to either water, sand, or grass. Since water and grass aren&amp;#039;t allowed next to each other, sand is inserted in-between.&lt;br /&gt;
&lt;br /&gt;
The main tile is generated from the undertile, through a somewhat mysterious process in Map::lookup(). The map tile used for a given square is based on the undertile of the current square, and the undertiles of the squares immediately below, right, and below-right of it. I suspect this process might be to do with handling edges correctly - for example, grass at the edge of an ocean (and at the corner of a pool) appears to be a special type of main tile. However, that is just speculation - I&amp;#039;m not even sure that the main tile will be of the same type as the undertile (e.g. the undertile could be water, the main tile sand).&lt;br /&gt;
&lt;br /&gt;
The main tile&amp;#039;s subtype is a random number between 0 and 7, or sometimes 0 and 15. It doesn&amp;#039;t convey any meaning, it just controls which exact image is displayed for the tile.&lt;br /&gt;
&lt;br /&gt;
[[Category:en]]&lt;br /&gt;
[[Category:Developer Resources]]&lt;/div&gt;</summary>
		<author><name>I am a very good user because I like helping this wiki</name></author>
		
	</entry>
	<entry>
		<id>https://globulation2.org/index.php?title=Developer_Center&amp;diff=10139</id>
		<title>Developer Center</title>
		<link rel="alternate" type="text/html" href="https://globulation2.org/index.php?title=Developer_Center&amp;diff=10139"/>
		<updated>2017-08-11T12:53:43Z</updated>

		<summary type="html">&lt;p&gt;I am a very good user because I like helping this wiki: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page is intended to be the center of the developer community, i.e. people working with direct [[Mercurial]] access. The final code documentation should be written by doxygen into [[Mercurial]] in docsrc/ directory, but intermediate doc are welcomed here to be worked on.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Resources for developers==&lt;br /&gt;
&lt;br /&gt;
See on glob2wiki main page&lt;br /&gt;
&lt;br /&gt;
===Coding info===&lt;br /&gt;
* [[Main Issues|Proposals for some actively supported issues]]&lt;br /&gt;
* [http://cofundos.org/projects.php?tag=glob2 Bounty projects] - a list of things people will pay to have implemented.&lt;br /&gt;
* [[General Gameplay Guidelines]] - what the game must keep to&lt;br /&gt;
* [[File Hierarchy|The hierarchy of files in glob2&amp;#039;s sources]]. Refer to [[Mercurial]] HEAD.&lt;br /&gt;
* [[GUI Theming]]&lt;br /&gt;
* [[CodingConventions|Programming conventions used by source code]]. Please follow them if you want to contribute to source code. You can comment them in ther [[Talk:CodingConventions|discussion page.]]&lt;br /&gt;
* [[Code_Documentation|View the way code should be documented]] &lt;br /&gt;
* [[Source Understanding Guide|Things to read if you want to enter into glob2&amp;#039;s source code.]]&lt;br /&gt;
* [[Common Programming Mistakes|Mistake often seen in C++]]. Please read this and check your code if you are new to C++.&lt;br /&gt;
* [[Campaign Creation]] Information on adding campaigns into the code&lt;br /&gt;
* [[BuildingSourceInts]]&lt;br /&gt;
* [[Race Customization]]&lt;br /&gt;
* [[Making An AI With Echo (part 1)|Making An AI With Echo]]. Read this if you want to make an AI for Glob2.&lt;br /&gt;
* [[How to contribute without having access to VCS]]&lt;br /&gt;
====Algorithm Descriptions====&lt;br /&gt;
* [[Resource_Algorithm|Resource growing description]]&lt;br /&gt;
* [[Gradients|High level gradient usage description]]&lt;br /&gt;
* [[Terrain|High level terrain description]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Of course, [[Contributor Center|Resources for contributors]], [http://savannah.nongnu.org/projects/glob2 savannah] as well as [[IRC]] are also very usefull for developers.&lt;br /&gt;
&lt;br /&gt;
===Work in Progress===&lt;br /&gt;
These sections are still being worked on.  While you&amp;#039;re welcome to comment on them, you shouldn&amp;#039;t spend all day nitpicking on them, as they might be changed completely or removed before you&amp;#039;re finished.&lt;br /&gt;
&lt;br /&gt;
* [[AINicowar]]&lt;br /&gt;
* [[Universe Background]]&lt;br /&gt;
* [[USL interface]]&lt;br /&gt;
&lt;br /&gt;
===Request for comments===&lt;br /&gt;
These files have been written up fully, but need to be peer-reviewed.  Please read through these pages, edit and comment on them.&lt;br /&gt;
&lt;br /&gt;
* nothing for now&lt;br /&gt;
[[Category:Developer Resources]]&lt;/div&gt;</summary>
		<author><name>I am a very good user because I like helping this wiki</name></author>
		
	</entry>
	<entry>
		<id>https://globulation2.org/index.php?title=Developer_Center&amp;diff=10137</id>
		<title>Developer Center</title>
		<link rel="alternate" type="text/html" href="https://globulation2.org/index.php?title=Developer_Center&amp;diff=10137"/>
		<updated>2017-08-11T12:52:59Z</updated>

		<summary type="html">&lt;p&gt;I am a very good user because I like helping this wiki: I am a very good user because I like helping this wiki moved page Developer Center to Diveloper Center: name&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page is intended to be the center of the developer community, i.e. people working with direct [[Mercurial]] access. The final code documentation should be written by doxygen into [[Mercurial]] in docsrc/ directory, but intermediate doc are welcomed here to be worked on.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Resources for developers==&lt;br /&gt;
&lt;br /&gt;
These are wiki resources usefull for developer:&lt;br /&gt;
===Compilation and Releases===&lt;br /&gt;
* [[Changes|Changelog for players, source for release notes]]. Please update it when you commit a new feature or an important bug fix in the [[Mercurial]].&lt;br /&gt;
* [[Compatibility]] - one issue should be fixed per release so it&amp;#039;s supported on more operating systems&lt;br /&gt;
* [[Releasing a new version]] - what to do when it&amp;#039;s time to release a new version&lt;br /&gt;
* [[Uploading to Savannah]] - what to do when you&amp;#039;re ready to upload the version&lt;br /&gt;
* [[Things to do before 1.0.0]] - a list of must do things that need to be incorporated into Globulation before the 1.0.0 release&lt;br /&gt;
* [[Converting from the old map format]] - After Alpha 23, the format for maps was changed, so you need to convert&lt;br /&gt;
* [[Obtaining the Release Candidate]] - How to work with the release candidate&lt;br /&gt;
* [[Beta 5 rebalance]] - Slight gameplay tweaks in beta 5&lt;br /&gt;
====Packaging====&lt;br /&gt;
* [[Building the .deb file]] - making a package for Debian&lt;br /&gt;
* [[Mingw cross compilation|Cross compile glob2]] - explains how to compile globulation2 for windows on Debian&lt;br /&gt;
* [[Mingw compilation|Compile glob2 with mingw]] - explains how to compile globulation2 on windows using mingw.&lt;br /&gt;
* [[MAC OS X Development|Compiling Glob2 on Mac OSX]] - maintained by AppleBoy&lt;br /&gt;
* [[Cross compiling deb packages on Hudson]] - how to cross compile and package using pbuilder.&lt;br /&gt;
&lt;br /&gt;
===Coding info===&lt;br /&gt;
* [[Main Issues|Proposals for some actively supported issues]]&lt;br /&gt;
* [http://cofundos.org/projects.php?tag=glob2 Bounty projects] - a list of things people will pay to have implemented.&lt;br /&gt;
* [[General Gameplay Guidelines]] - what the game must keep to&lt;br /&gt;
* [[File Hierarchy|The hierarchy of files in glob2&amp;#039;s sources]]. Refer to [[Mercurial]] HEAD.&lt;br /&gt;
* [[GUI Theming]]&lt;br /&gt;
* [[CodingConventions|Programming conventions used by source code]]. Please follow them if you want to contribute to source code. You can comment them in ther [[Talk:CodingConventions|discussion page.]]&lt;br /&gt;
* [[Code_Documentation|View the way code should be documented]] &lt;br /&gt;
* [[Source Understanding Guide|Things to read if you want to enter into glob2&amp;#039;s source code.]]&lt;br /&gt;
* [[Common Programming Mistakes|Mistake often seen in C++]]. Please read this and check your code if you are new to C++.&lt;br /&gt;
* [[Campaign Creation]] Information on adding campaigns into the code&lt;br /&gt;
* [[BuildingSourceInts]]&lt;br /&gt;
* [[Race Customization]]&lt;br /&gt;
* [[Making An AI With Echo (part 1)|Making An AI With Echo]]. Read this if you want to make an AI for Glob2.&lt;br /&gt;
* [[How to contribute without having access to VCS]]&lt;br /&gt;
====Algorithm Descriptions====&lt;br /&gt;
* [[Resource_Algorithm|Resource growing description]]&lt;br /&gt;
* [[Gradients|High level gradient usage description]]&lt;br /&gt;
* [[Terrain|High level terrain description]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Of course, [[Contributor Center|Resources for contributors]], [http://savannah.nongnu.org/projects/glob2 savannah] as well as [[IRC]] are also very usefull for developers.&lt;br /&gt;
&lt;br /&gt;
===Work in Progress===&lt;br /&gt;
These sections are still being worked on.  While you&amp;#039;re welcome to comment on them, you shouldn&amp;#039;t spend all day nitpicking on them, as they might be changed completely or removed before you&amp;#039;re finished.&lt;br /&gt;
&lt;br /&gt;
* [[AINicowar]]&lt;br /&gt;
* [[Universe Background]]&lt;br /&gt;
* [[USL interface]]&lt;br /&gt;
&lt;br /&gt;
===Request for comments===&lt;br /&gt;
These files have been written up fully, but need to be peer-reviewed.  Please read through these pages, edit and comment on them.&lt;br /&gt;
&lt;br /&gt;
* nothing for now&lt;br /&gt;
[[Category:Developer Resources]]&lt;/div&gt;</summary>
		<author><name>I am a very good user because I like helping this wiki</name></author>
		
	</entry>
	<entry>
		<id>https://globulation2.org/index.php?title=Contributor_Center&amp;diff=10136</id>
		<title>Contributor Center</title>
		<link rel="alternate" type="text/html" href="https://globulation2.org/index.php?title=Contributor_Center&amp;diff=10136"/>
		<updated>2017-08-11T12:52:25Z</updated>

		<summary type="html">&lt;p&gt;I am a very good user because I like helping this wiki: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Translations|View this page in|Article=Contributor_Center}}&lt;br /&gt;
&lt;br /&gt;
__NOTOC__ is intended to be the center of the contributors community, i.e. people helping glob2 but not working with direct [[Mercurial]] access.&lt;br /&gt;
&lt;br /&gt;
==The community==&lt;br /&gt;
You can find the community on [[IRC]], on the [https://savannah.nongnu.org/mail/?group=glob2 development Mailing list] and on the [http://www.globulation2.org/forums/ forums].&lt;br /&gt;
&lt;br /&gt;
==Resources for contributors==&lt;br /&gt;
* [[Translation guide|Game translation guide]]&lt;br /&gt;
* [[Media guide]]&lt;br /&gt;
* [[Making Tiles]]&lt;br /&gt;
* [[Map editor guide]]&lt;br /&gt;
* [[Wiki guide| Wiki guide, also for wiki translators]]&lt;br /&gt;
* [[Trackback|Keep track of sites that talk about glob2]]&lt;br /&gt;
* [[Wishlist|Wishlist and new ideas from users/contributors/developers]]&lt;br /&gt;
* [[Video Creation Howto]]&lt;br /&gt;
&lt;br /&gt;
Of course, all the reading suggested in the [[User Manual#Further_readings|user manual]] are good for contributors too.&lt;br /&gt;
&lt;br /&gt;
==About this wiki==&lt;br /&gt;
Every page on this wiki should be accessible by one level indirection from the sidebar, that is, it should be linked at least by one page directly accessible by the sidebar.&lt;br /&gt;
&lt;br /&gt;
[[Category:en]]&lt;br /&gt;
[[Category:Contributor_Resources]]&lt;/div&gt;</summary>
		<author><name>I am a very good user because I like helping this wiki</name></author>
		
	</entry>
	<entry>
		<id>https://globulation2.org/index.php?title=Contributor_Center&amp;diff=10134</id>
		<title>Contributor Center</title>
		<link rel="alternate" type="text/html" href="https://globulation2.org/index.php?title=Contributor_Center&amp;diff=10134"/>
		<updated>2017-08-11T12:51:20Z</updated>

		<summary type="html">&lt;p&gt;I am a very good user because I like helping this wiki: I am a very good user because I like helping this wiki moved page Contributor Center to Contributer Center: the name&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Translations|View this page in|Article=Contributor_Center}}&lt;br /&gt;
&lt;br /&gt;
__NOTOC__&lt;br /&gt;
This page is intended to be the center of the contributors community, i.e. people helping glob2 but not working with direct [[Mercurial]] access.&lt;br /&gt;
&lt;br /&gt;
==The community==&lt;br /&gt;
You can find the community on [[IRC]], on the [https://savannah.nongnu.org/mail/?group=glob2 development Mailing list] and on the [http://www.globulation2.org/forums/ forums].&lt;br /&gt;
&lt;br /&gt;
==Resources for contributors==&lt;br /&gt;
* [[Translation guide|Game translation guide]]&lt;br /&gt;
* [[Media guide]]&lt;br /&gt;
* [[Making Tiles]]&lt;br /&gt;
* [[Map editor guide]]&lt;br /&gt;
* [[Wiki guide| Wiki guide, also for wiki translators]]&lt;br /&gt;
* [[Trackback|Keep track of sites that talk about glob2]]&lt;br /&gt;
* [[Wishlist|Wishlist and new ideas from users/contributors/developers]]&lt;br /&gt;
* [[Video Creation Howto]]&lt;br /&gt;
&lt;br /&gt;
Of course, all the reading suggested in the [[User Manual#Further_readings|user manual]] are good for contributors too.&lt;br /&gt;
&lt;br /&gt;
==About this wiki==&lt;br /&gt;
Every page on this wiki should be accessible by one level indirection from the sidebar, that is, it should be linked at least by one page directly accessible by the sidebar.&lt;br /&gt;
&lt;br /&gt;
[[Category:en]]&lt;br /&gt;
[[Category:Contributor_Resources]]&lt;/div&gt;</summary>
		<author><name>I am a very good user because I like helping this wiki</name></author>
		
	</entry>
	<entry>
		<id>https://globulation2.org/index.php?title=Videos&amp;diff=10133</id>
		<title>Videos</title>
		<link rel="alternate" type="text/html" href="https://globulation2.org/index.php?title=Videos&amp;diff=10133"/>
		<updated>2017-08-11T12:45:11Z</updated>

		<summary type="html">&lt;p&gt;I am a very good user because I like helping this wiki: fix&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[https://www.xvideos.com/| Click here to obtain advanced info.]&lt;br /&gt;
&lt;br /&gt;
===Fosdem 2008 presentation===&lt;br /&gt;
* [http://video.fosdem.org/2008/maintracks/FOSDEM2008-globulation2.ogg PAL quality]&lt;br /&gt;
*: &amp;lt;small&amp;gt; you need the [http://www.theora.org/ ogg theora] codec to watch the video.&amp;lt;/small&amp;gt;&lt;br /&gt;
* [http://stephane.magnenat.net/data/glob2-fosdem2008-presentation.pdf slides of the presentation]&lt;br /&gt;
&lt;br /&gt;
===Small game (13 minutes) : nct v.s. AI numbi===&lt;br /&gt;
&lt;br /&gt;
* [http://www.youtube.com/watch?v=5_2GLBBXOl8 320x240 flash video on Youtube]&lt;br /&gt;
* [http://www.archive.org/details/Globulation2_small_game_vs_ai_numbi_movie 640x480 full quality ogg theora from archive.org]&lt;br /&gt;
&lt;br /&gt;
===Small game (18 minutes) : Giszmo vs 7 * AI-Numbi===&lt;br /&gt;
In this video you see how to effectively use fruits to convert your opponents.&lt;br /&gt;
*not a single warrior is built&lt;br /&gt;
*no barracks&lt;br /&gt;
&lt;br /&gt;
You can watch it either in google-video quality split up into 2 files:&lt;br /&gt;
[http://video.google.com/videoplay?docid=-6100295662521061117 Part1]&lt;br /&gt;
[http://video.google.com/videoplay?docid=7044526113925215760 Part2]&lt;br /&gt;
&lt;br /&gt;
or the really big file (150MB) via [http://www.leowandersleb.de/static/Globulation2_Against7_FruitsHowTo.ogg Globulation2_Against7_FruitsHowTo.ogg]&lt;br /&gt;
&lt;br /&gt;
===Really small game (5 minutes) : Migi vs. AiWarrush===&lt;br /&gt;
This video shows how to effectively counter the Warrush AI and beat him pretty fast.&lt;br /&gt;
&lt;br /&gt;
* Youtube: [http://www.youtube.com/watch?v=JSP72nOazaI click here].&lt;br /&gt;
* Mpeg file: [http://www.box.net/shared/a8gk7fgmau click here].&lt;br /&gt;
&lt;br /&gt;
===Assassination campaign (5 minutes)===&lt;br /&gt;
This is a video showing you how to beat [http://globulation2.org/forums/viewtopic.php?t=928 Assassination], a campaign created by Migi. It&amp;#039;s about 5 minutes long. Actually playing the campaign usually takes about 5 times longer though.&lt;br /&gt;
&lt;br /&gt;
* Youtube: [http://www.youtube.com/watch?v=rZPLCCsqYZM click here].&lt;br /&gt;
* Mpeg file: coming soon.&lt;br /&gt;
&lt;br /&gt;
===How to create one yourself===&lt;br /&gt;
[http://globulation2.org/wiki/Video_Creation_Howto How do I create a glob2 video?]&lt;br /&gt;
&lt;br /&gt;
[[Category:en]]&lt;br /&gt;
[[Category:Contributor_Resources]]&lt;/div&gt;</summary>
		<author><name>I am a very good user because I like helping this wiki</name></author>
		
	</entry>
	<entry>
		<id>https://globulation2.org/index.php?title=Videos&amp;diff=10131</id>
		<title>Videos</title>
		<link rel="alternate" type="text/html" href="https://globulation2.org/index.php?title=Videos&amp;diff=10131"/>
		<updated>2017-08-11T12:43:49Z</updated>

		<summary type="html">&lt;p&gt;I am a very good user because I like helping this wiki: I am a very good user because I like helping this wiki moved page Videos to XVideos: fixed name&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Translations|View this page in|Article=Videos}}&lt;br /&gt;
&lt;br /&gt;
===Fosdem 2008 presentation===&lt;br /&gt;
* [http://video.fosdem.org/2008/maintracks/FOSDEM2008-globulation2.ogg PAL quality]&lt;br /&gt;
*: &amp;lt;small&amp;gt; you need the [http://www.theora.org/ ogg theora] codec to watch the video.&amp;lt;/small&amp;gt;&lt;br /&gt;
* [http://stephane.magnenat.net/data/glob2-fosdem2008-presentation.pdf slides of the presentation]&lt;br /&gt;
&lt;br /&gt;
===Small game (13 minutes) : nct v.s. AI numbi===&lt;br /&gt;
&lt;br /&gt;
* [http://www.youtube.com/watch?v=5_2GLBBXOl8 320x240 flash video on Youtube]&lt;br /&gt;
* [http://www.archive.org/details/Globulation2_small_game_vs_ai_numbi_movie 640x480 full quality ogg theora from archive.org]&lt;br /&gt;
&lt;br /&gt;
===Small game (18 minutes) : Giszmo vs 7 * AI-Numbi===&lt;br /&gt;
In this video you see how to effectively use fruits to convert your opponents.&lt;br /&gt;
*not a single warrior is built&lt;br /&gt;
*no barracks&lt;br /&gt;
&lt;br /&gt;
You can watch it either in google-video quality split up into 2 files:&lt;br /&gt;
[http://video.google.com/videoplay?docid=-6100295662521061117 Part1]&lt;br /&gt;
[http://video.google.com/videoplay?docid=7044526113925215760 Part2]&lt;br /&gt;
&lt;br /&gt;
or the really big file (150MB) via [http://www.leowandersleb.de/static/Globulation2_Against7_FruitsHowTo.ogg Globulation2_Against7_FruitsHowTo.ogg]&lt;br /&gt;
&lt;br /&gt;
===Really small game (5 minutes) : Migi vs. AiWarrush===&lt;br /&gt;
This video shows how to effectively counter the Warrush AI and beat him pretty fast.&lt;br /&gt;
&lt;br /&gt;
* Youtube: [http://www.youtube.com/watch?v=JSP72nOazaI click here].&lt;br /&gt;
* Mpeg file: [http://www.box.net/shared/a8gk7fgmau click here].&lt;br /&gt;
&lt;br /&gt;
===Assassination campaign (5 minutes)===&lt;br /&gt;
This is a video showing you how to beat [http://globulation2.org/forums/viewtopic.php?t=928 Assassination], a campaign created by Migi. It&amp;#039;s about 5 minutes long. Actually playing the campaign usually takes about 5 times longer though.&lt;br /&gt;
&lt;br /&gt;
* Youtube: [http://www.youtube.com/watch?v=rZPLCCsqYZM click here].&lt;br /&gt;
* Mpeg file: coming soon.&lt;br /&gt;
&lt;br /&gt;
===How to create one yourself===&lt;br /&gt;
[http://globulation2.org/wiki/Video_Creation_Howto How do I create a glob2 video?]&lt;br /&gt;
&lt;br /&gt;
[[Category:en]]&lt;br /&gt;
[[Category:Contributor_Resources]]&lt;/div&gt;</summary>
		<author><name>I am a very good user because I like helping this wiki</name></author>
		
	</entry>
	<entry>
		<id>https://globulation2.org/index.php?title=IRC&amp;diff=10130</id>
		<title>IRC</title>
		<link rel="alternate" type="text/html" href="https://globulation2.org/index.php?title=IRC&amp;diff=10130"/>
		<updated>2017-08-11T12:43:04Z</updated>

		<summary type="html">&lt;p&gt;I am a very good user because I like helping this wiki: removed spam&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Quick info ==&lt;br /&gt;
{&lt;br /&gt;
| &amp;#039;&amp;#039;&amp;#039;server&amp;#039;&amp;#039;&amp;#039; || irc.globulation2.org ||&lt;br /&gt;
|-&lt;br /&gt;
|| &amp;#039;&amp;#039;&amp;#039;channel&amp;#039;&amp;#039;&amp;#039; || #glob2 ||&lt;br /&gt;
|-&lt;br /&gt;
|| &amp;#039;&amp;#039;&amp;#039;link&amp;#039;&amp;#039;&amp;#039; || irc://irc.globulation2.org/glob2 ||&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
== Connecting to IRC ==&lt;br /&gt;
&lt;br /&gt;
The Globulation2 Channels are currently hosted on the [http://www.oftc.net OFTC IRC Network] which is accessible via irc.globulation2.org or irc.oftc.net; both go to the same network.  This is normally done in most IRC clients by issuing the command &amp;#039;/server irc.oftc.net&amp;#039; followed by &amp;#039;/join #glob2&amp;#039;.&lt;br /&gt;
&lt;br /&gt;
More information on how IRC works can be found at [http://en.wikipedia.org/wiki/Internet_Relay_Chat Wikipedia], along with an extensive [http://en.wikipedia.org/wiki/List_of_IRC_clients list of IRC clients].&lt;br /&gt;
&lt;br /&gt;
[[Category:en]]&lt;br /&gt;
[[Category:Support]]&lt;/div&gt;</summary>
		<author><name>I am a very good user because I like helping this wiki</name></author>
		
	</entry>
	<entry>
		<id>https://globulation2.org/index.php?title=IRC&amp;diff=10128</id>
		<title>IRC</title>
		<link rel="alternate" type="text/html" href="https://globulation2.org/index.php?title=IRC&amp;diff=10128"/>
		<updated>2017-08-11T12:42:36Z</updated>

		<summary type="html">&lt;p&gt;I am a very good user because I like helping this wiki: I am a very good user because I like helping this wiki moved page IRC to IRC hannelz: not correct name&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Quick info ==&lt;br /&gt;
{|&lt;br /&gt;
| &amp;#039;&amp;#039;&amp;#039;server&amp;#039;&amp;#039;&amp;#039; || irc.globulation2.org ||&lt;br /&gt;
|-&lt;br /&gt;
|| &amp;#039;&amp;#039;&amp;#039;channel&amp;#039;&amp;#039;&amp;#039; || #glob2 ||&lt;br /&gt;
|-&lt;br /&gt;
|| &amp;#039;&amp;#039;&amp;#039;link&amp;#039;&amp;#039;&amp;#039; || irc://irc.globulation2.org/glob2 ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Info ==&lt;br /&gt;
Many Glob2 users and developers socialize in the official Globulation2 &amp;#039;Game&amp;#039; Channel ([irc://irc.globulation2.org/glob2 #glob2]).&lt;br /&gt;
Here you can chat with other Glob2 fans and developers and find out what&amp;#039;s happening with your favorite game. This is also a great place to connect with others to start up an online game using [[YOG|Ysagoon Online Gaming]].&lt;br /&gt;
&lt;br /&gt;
Globulation2 developers also run a Globulation2 Development Channel ([irc://irc.globulation2.org/glob2-dev #glob2-dev]),&lt;br /&gt;
where the development cycle and additions are commonly discussed. Although due to low traffic they mainly stick to #glob2.&lt;br /&gt;
&lt;br /&gt;
== Connecting to IRC ==&lt;br /&gt;
&lt;br /&gt;
The Globulation2 Channels are currently hosted on the [http://www.oftc.net OFTC IRC Network] which is accessible via irc.globulation2.org or irc.oftc.net; both go to the same network.  This is normally done in most IRC clients by issuing the command &amp;#039;/server irc.oftc.net&amp;#039; followed by &amp;#039;/join #glob2&amp;#039;.&lt;br /&gt;
&lt;br /&gt;
More information on how IRC works can be found at [http://en.wikipedia.org/wiki/Internet_Relay_Chat Wikipedia], along with an extensive [http://en.wikipedia.org/wiki/List_of_IRC_clients list of IRC clients].&lt;br /&gt;
&lt;br /&gt;
[[Category:en]]&lt;br /&gt;
[[Category:Support]]&lt;/div&gt;</summary>
		<author><name>I am a very good user because I like helping this wiki</name></author>
		
	</entry>
	<entry>
		<id>https://globulation2.org/index.php?title=YOG&amp;diff=10127</id>
		<title>YOG</title>
		<link rel="alternate" type="text/html" href="https://globulation2.org/index.php?title=YOG&amp;diff=10127"/>
		<updated>2017-08-11T12:41:25Z</updated>

		<summary type="html">&lt;p&gt;I am a very good user because I like helping this wiki: removed spam&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;BLANKED&lt;/div&gt;</summary>
		<author><name>I am a very good user because I like helping this wiki</name></author>
		
	</entry>
	<entry>
		<id>https://globulation2.org/index.php?title=YOG&amp;diff=10126</id>
		<title>YOG</title>
		<link rel="alternate" type="text/html" href="https://globulation2.org/index.php?title=YOG&amp;diff=10126"/>
		<updated>2017-08-11T12:41:04Z</updated>

		<summary type="html">&lt;p&gt;I am a very good user because I like helping this wiki: Undo my revision; it was an error&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Translations|View this page in|Article=YOG}}&lt;br /&gt;
{{UserManualLinks}}&lt;br /&gt;
&lt;br /&gt;
Ysagoon Online Gaming is the meta server of Globulation2. Here you will find others to play online-games. If you log in, please be patient and don&amp;#039;t expect people to react within seconds. We always wonder how many people drop in, ask if someone wants to play and leave just seconds after that.&lt;br /&gt;
&lt;br /&gt;
==Logging in==&lt;br /&gt;
On the globulation main screen, there is a button named Ysagoon Online Gaming. Click it!&lt;br /&gt;
If you log in for the first time please choose a nick and a password and check the checkbox &amp;quot;register a new YOG user&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
==Inside YOG==&lt;br /&gt;
The YOG-screen shows you who else is connected to it. These are the names at the right of the screen. People with the YOG symbol in front of their nick are connected to Globulation2 like you. Those with the [IRC] symbol are only connected to [IRC irc.globulation2.org] via an irc-client. They might want to play as well!! You can ask them, but best is to &amp;#039;&amp;#039;&amp;#039;ask them directly by using their nick&amp;#039;&amp;#039;&amp;#039; (that will alert them and get their attention) as most of them will not react to every &amp;quot;hello&amp;quot;or &amp;quot;bye&amp;quot;-noise on the channel. Wait around patiently for 10-20 minutes, if no one responds then try again later! Someone is sure to show up during the day and talk to you or play a game or two!&lt;br /&gt;
&lt;br /&gt;
==Open games==&lt;br /&gt;
If someone has already created a game it will get listed in the upper left corner. Once a player has joined a game their name is shown in brackets. To join the game yourself simply select the game and click on &amp;quot;join game&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
==The game has started==&lt;br /&gt;
When you started a YOG-game you might notice a line telling you your opponent has left YOG. That does NOT mean the game is over. Players normally disconnect from YOG as it is only needed to initiate games, not to run them.&lt;br /&gt;
&lt;br /&gt;
==Bugs in YOG==&lt;br /&gt;
In the current stable release, you can distinguish about 11 bugs:&lt;br /&gt;
* &amp;#039;&amp;#039;&amp;#039;Log in bug:&amp;#039;&amp;#039;&amp;#039; When you log in into the YOG and quit lobby, you won&amp;#039;t be able to log in again because of you didn&amp;#039;t log off the YOG. To log in again you have quit globulation and turn it on again.&lt;br /&gt;
* &amp;#039;&amp;#039;&amp;#039;YOG is down-bug:&amp;#039;&amp;#039;&amp;#039; From time to time YOG says that: &amp;quot;Currently YOG metaserver is down&amp;quot;, it means that it crashed and will be up after about 20 seconds, during this it stops all the games and kicks everyone from the lobby.&lt;br /&gt;
* &amp;#039;&amp;#039;&amp;#039;Ready bug:&amp;#039;&amp;#039;&amp;#039; Sometimes it happens and it&amp;#039;s the most often if players came into the game hosted with a map which they wouldn&amp;#039;t have the map; When you press ready you see yourself ready but host does not, and he can&amp;#039;t start the game. To fix that it&amp;#039;s the best for everyone quit Globulation, come in again and host again (and of course before that download map from the lobby or elsewhere).&lt;br /&gt;
* &amp;#039;&amp;#039;&amp;#039;Map download section scrolling bug:&amp;#039;&amp;#039;&amp;#039; when you catch slide and try to move it by pulling it, you&amp;#039;ll crash and quit Globulation. How to evade? use mouse scroll or click on the arrows.&lt;br /&gt;
* &amp;#039;&amp;#039;&amp;#039;Map download bug:&amp;#039;&amp;#039;&amp;#039; When you don&amp;#039;t have a map and you downloaded it from the host it&amp;#039;s most possible that after starting the game you&amp;#039;ll be kicked.&lt;br /&gt;
* &amp;#039;&amp;#039;&amp;#039;Game start bug:&amp;#039;&amp;#039;&amp;#039; if anyone had any of these bugs and didn&amp;#039;t have the map, it&amp;#039;s possibility to kick all after starting the game (kick players from the game and quit their Globulation clients)&lt;br /&gt;
* &amp;#039;&amp;#039;&amp;#039;Screen bug:&amp;#039;&amp;#039;&amp;#039; Sometimes when you write on the lobby, people may see your messages but you can&amp;#039;t see theirs, sometimes they can&amp;#039;t see yours, and sometimes it works in both ways. To evade it, IRC users&amp;#039; messages are always visible and not bugged. (channel #glob2 in OFTC network)&lt;br /&gt;
* &amp;#039;&amp;#039;&amp;#039;Lobby bug:&amp;#039;&amp;#039;&amp;#039; Sometimes when you log in, and don&amp;#039;t get any messages that you have logged in, if you try to quit, Globulation will freeze, if you host a game and start, globulation will freeze, if you write something in the lobby (not in the game chat), game will freeze, if you join a game and host start, it will freeze, to fix kill Globulation manually and turn it on again, and keep doing until you get a message from YOG (wait 10 secs after log in)&lt;br /&gt;
* &amp;#039;&amp;#039;&amp;#039;Lag Bug:&amp;#039;&amp;#039;&amp;#039; If you start a game, and somebody will have red bar on the top, it&amp;#039;s not a bug when you lag, but when everyone have quite good connection, and everyone have green (eventually yellow) bars, it shouldn&amp;#039;t lag, if it does, it means that YOG has broken something and you should restart, but before you restart, quit globulation and come in again, it usually helps (I don&amp;#039;t know why)&lt;br /&gt;
* &amp;#039;&amp;#039;&amp;#039;Just bug:&amp;#039;&amp;#039;&amp;#039; I don&amp;#039;t know why, but it sometimes when you start a game waits for somebody and it waits until he quit. It&amp;#039;s very weird bug. Everyone had good connection and green bar when it happened.&lt;br /&gt;
&lt;br /&gt;
[[Category:en]]&lt;br /&gt;
[[Category:User Manual]]&lt;/div&gt;</summary>
		<author><name>I am a very good user because I like helping this wiki</name></author>
		
	</entry>
	<entry>
		<id>https://globulation2.org/index.php?title=YOG&amp;diff=10125</id>
		<title>YOG</title>
		<link rel="alternate" type="text/html" href="https://globulation2.org/index.php?title=YOG&amp;diff=10125"/>
		<updated>2017-08-11T12:40:12Z</updated>

		<summary type="html">&lt;p&gt;I am a very good user because I like helping this wiki: Blanked the page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Blanked the page, idiot!&lt;/div&gt;</summary>
		<author><name>I am a very good user because I like helping this wiki</name></author>
		
	</entry>
	<entry>
		<id>https://globulation2.org/index.php?title=YOG&amp;diff=10123</id>
		<title>YOG</title>
		<link rel="alternate" type="text/html" href="https://globulation2.org/index.php?title=YOG&amp;diff=10123"/>
		<updated>2017-08-11T12:39:07Z</updated>

		<summary type="html">&lt;p&gt;I am a very good user because I like helping this wiki: I am a very good user because I like helping this wiki moved page YOG to YODA: incorrect name&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Translations|View this page in|Article=YOG}}&lt;br /&gt;
{{UserManualLinks}}&lt;br /&gt;
&lt;br /&gt;
Ysagoon Online Gaming is the meta server of Globulation2. Here you will find others to play online-games. If you log in, please be patient and don&amp;#039;t expect people to react within seconds. We always wonder how many people drop in, ask if someone wants to play and leave just seconds after that.&lt;br /&gt;
&lt;br /&gt;
==Logging in==&lt;br /&gt;
On the globulation main screen, there is a button named Ysagoon Online Gaming. Click it!&lt;br /&gt;
If you log in for the first time please choose a nick and a password and check the checkbox &amp;quot;register a new YOG user&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
==Inside YOG==&lt;br /&gt;
The YOG-screen shows you who else is connected to it. These are the names at the right of the screen. People with the YOG symbol in front of their nick are connected to Globulation2 like you. Those with the [IRC] symbol are only connected to [IRC irc.globulation2.org] via an irc-client. They might want to play as well!! You can ask them, but best is to &amp;#039;&amp;#039;&amp;#039;ask them directly by using their nick&amp;#039;&amp;#039;&amp;#039; (that will alert them and get their attention) as most of them will not react to every &amp;quot;hello&amp;quot;or &amp;quot;bye&amp;quot;-noise on the channel. Wait around patiently for 10-20 minutes, if no one responds then try again later! Someone is sure to show up during the day and talk to you or play a game or two!&lt;br /&gt;
&lt;br /&gt;
==Open games==&lt;br /&gt;
If someone has already created a game it will get listed in the upper left corner. Once a player has joined a game their name is shown in brackets. To join the game yourself simply select the game and click on &amp;quot;join game&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
==The game has started==&lt;br /&gt;
When you started a YOG-game you might notice a line telling you your opponent has left YOG. That does NOT mean the game is over. Players normally disconnect from YOG as it is only needed to initiate games, not to run them.&lt;br /&gt;
&lt;br /&gt;
==Bugs in YOG==&lt;br /&gt;
In the current stable release, you can distinguish about 11 bugs:&lt;br /&gt;
* &amp;#039;&amp;#039;&amp;#039;Log in bug:&amp;#039;&amp;#039;&amp;#039; When you log in into the YOG and quit lobby, you won&amp;#039;t be able to log in again because of you didn&amp;#039;t log off the YOG. To log in again you have quit globulation and turn it on again.&lt;br /&gt;
* &amp;#039;&amp;#039;&amp;#039;YOG is down-bug:&amp;#039;&amp;#039;&amp;#039; From time to time YOG says that: &amp;quot;Currently YOG metaserver is down&amp;quot;, it means that it crashed and will be up after about 20 seconds, during this it stops all the games and kicks everyone from the lobby.&lt;br /&gt;
* &amp;#039;&amp;#039;&amp;#039;Ready bug:&amp;#039;&amp;#039;&amp;#039; Sometimes it happens and it&amp;#039;s the most often if players came into the game hosted with a map which they wouldn&amp;#039;t have the map; When you press ready you see yourself ready but host does not, and he can&amp;#039;t start the game. To fix that it&amp;#039;s the best for everyone quit Globulation, come in again and host again (and of course before that download map from the lobby or elsewhere).&lt;br /&gt;
* &amp;#039;&amp;#039;&amp;#039;Map download section scrolling bug:&amp;#039;&amp;#039;&amp;#039; when you catch slide and try to move it by pulling it, you&amp;#039;ll crash and quit Globulation. How to evade? use mouse scroll or click on the arrows.&lt;br /&gt;
* &amp;#039;&amp;#039;&amp;#039;Map download bug:&amp;#039;&amp;#039;&amp;#039; When you don&amp;#039;t have a map and you downloaded it from the host it&amp;#039;s most possible that after starting the game you&amp;#039;ll be kicked.&lt;br /&gt;
* &amp;#039;&amp;#039;&amp;#039;Game start bug:&amp;#039;&amp;#039;&amp;#039; if anyone had any of these bugs and didn&amp;#039;t have the map, it&amp;#039;s possibility to kick all after starting the game (kick players from the game and quit their Globulation clients)&lt;br /&gt;
* &amp;#039;&amp;#039;&amp;#039;Screen bug:&amp;#039;&amp;#039;&amp;#039; Sometimes when you write on the lobby, people may see your messages but you can&amp;#039;t see theirs, sometimes they can&amp;#039;t see yours, and sometimes it works in both ways. To evade it, IRC users&amp;#039; messages are always visible and not bugged. (channel #glob2 in OFTC network)&lt;br /&gt;
* &amp;#039;&amp;#039;&amp;#039;Lobby bug:&amp;#039;&amp;#039;&amp;#039; Sometimes when you log in, and don&amp;#039;t get any messages that you have logged in, if you try to quit, Globulation will freeze, if you host a game and start, globulation will freeze, if you write something in the lobby (not in the game chat), game will freeze, if you join a game and host start, it will freeze, to fix kill Globulation manually and turn it on again, and keep doing until you get a message from YOG (wait 10 secs after log in)&lt;br /&gt;
* &amp;#039;&amp;#039;&amp;#039;Lag Bug:&amp;#039;&amp;#039;&amp;#039; If you start a game, and somebody will have red bar on the top, it&amp;#039;s not a bug when you lag, but when everyone have quite good connection, and everyone have green (eventually yellow) bars, it shouldn&amp;#039;t lag, if it does, it means that YOG has broken something and you should restart, but before you restart, quit globulation and come in again, it usually helps (I don&amp;#039;t know why)&lt;br /&gt;
* &amp;#039;&amp;#039;&amp;#039;Just bug:&amp;#039;&amp;#039;&amp;#039; I don&amp;#039;t know why, but it sometimes when you start a game waits for somebody and it waits until he quit. It&amp;#039;s very weird bug. Everyone had good connection and green bar when it happened.&lt;br /&gt;
&lt;br /&gt;
[[Category:en]]&lt;br /&gt;
[[Category:User Manual]]&lt;/div&gt;</summary>
		<author><name>I am a very good user because I like helping this wiki</name></author>
		
	</entry>
</feed>