<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Vbitz&#039;s Powerusers Blog</title>
	<atom:link href="http://vbitz.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://vbitz.wordpress.com</link>
	<description>All Round Programming and Gaming</description>
	<lastBuildDate>Sun, 27 Feb 2011 03:58:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='vbitz.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Vbitz&#039;s Powerusers Blog</title>
		<link>http://vbitz.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://vbitz.wordpress.com/osd.xml" title="Vbitz&#039;s Powerusers Blog" />
	<atom:link rel='hub' href='http://vbitz.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Working on Random Map Generation</title>
		<link>http://vbitz.wordpress.com/2009/12/17/working-on-random-map-generation/</link>
		<comments>http://vbitz.wordpress.com/2009/12/17/working-on-random-map-generation/#comments</comments>
		<pubDate>Thu, 17 Dec 2009 02:18:38 +0000</pubDate>
		<dc:creator>vbitz</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://vbitz.wordpress.com/2009/12/17/working-on-random-map-generation/</guid>
		<description><![CDATA[I just recently made a program that draws a costal atoll style map. it is just ansi art right now and the colours mean that i am using mostly the same char for water and such, anyone who wants to try and make it faster also just fell free to post the faster version in [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vbitz.wordpress.com&amp;blog=8289872&amp;post=108&amp;subd=vbitz&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I just recently made a program that draws a costal atoll style map. it is just ansi art right now and the colours mean that i am using mostly the same char for water and such, anyone who wants to try and make it faster also just fell free to post the faster version in the comments.</p>
<h2>Source Code </h2>
<p>In the public domain, do what you like with it: </p>
<p>Module Module1 </p>
<p>&#160;&#160;&#160; Dim teraindata(,) As Char ‘ Terrain stored Here    <br />&#160;&#160;&#160; Dim mapw As Integer ‘ Dimensions of the map     <br />&#160;&#160;&#160; Dim maph As Integer     <br />&#160;&#160;&#160; Dim rand As New Random     <br />&#160;&#160;&#160; Dim curlocx As Integer     <br />&#160;&#160;&#160; Dim curlocy As Integer     <br />&#160;&#160;&#160; Dim direction As Integer     <br />&#160;&#160;&#160; Dim directionold As Integer     <br />&#160;&#160;&#160; Dim directon1 As Integer     <br />&#160;&#160;&#160; Dim directon2 As Integer     <br />&#160;&#160;&#160; Dim count As Integer     <br />&#160;&#160;&#160; Dim citycount As Integer     <br />&#160;&#160;&#160; Dim watercount As Integer </p>
<p>&#160;&#160;&#160; Sub Main()    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; Console.Title = &quot;Vbitz&#8217;s Map Genorator&quot;     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; Console.WindowHeight = Console.LargestWindowHeight     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; Console.WindowWidth = Console.LargestWindowWidth     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; Console.WindowLeft = 0     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; Console.WindowTop = 0 </p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; ReDim Preserve teraindata(Console.WindowHeight &#8211; 4, Console.WindowWidth &#8211; 2) </p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; maph = teraindata.GetLength(0) &#8211; 1    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; mapw = teraindata.GetLength(1) &#8211; 1 </p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; clearmap()    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; makegrass()     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; makewater()     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#8216;rendermap()     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#8216;writecitys()     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; rendermap() </p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; Console.ReadKey()    <br />&#160;&#160;&#160; End Sub </p>
<p>&#160;&#160;&#160; Sub clearmap()    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; For x = 0 To maph     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; For y = 0 To mapw     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; teraindata(x, y) = &quot;0&quot;     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Next     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; Next     <br />&#160;&#160;&#160; End Sub </p>
<p>&#160;&#160;&#160; Sub makegrass()    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; Console.WriteLine(&quot;Grass Genoration Started&quot;)     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; Do Until count &gt; 509     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; curlocx = rand.Next(1, maph)     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; curlocy = rand.Next(1, mapw)     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; For x = 0 To 1000000     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; teraindata(curlocx, curlocy) = &quot;H&quot;     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; getdirection()     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; movepointer()     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Next     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; count = count + 1     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; writecount()     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; Loop     <br />&#160;&#160;&#160; End Sub </p>
<p>&#160;&#160;&#160; Sub rendermap()    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; Console.ForegroundColor = ConsoleColor.White     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#8216;writecount()     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; Console.WriteLine()     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; For x = 0 To maph     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; For y = 0 To mapw     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Select Case teraindata(x, y)     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Case &quot;H&quot;     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Console.ForegroundColor = ConsoleColor.Green     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Case &quot;0&quot;     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Console.ForegroundColor = ConsoleColor.DarkRed     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Case &quot;*&quot;     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Console.ForegroundColor = ConsoleColor.White     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Case &quot;-&quot;     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Console.ForegroundColor = ConsoleColor.Gray     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Case &quot;#&quot;     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Console.ForegroundColor = ConsoleColor.Blue     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; End Select     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Console.Write(teraindata(x, y))     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Next     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Console.WriteLine()     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; Next     <br />&#160;&#160;&#160; End Sub </p>
<p>&#160;&#160;&#160; Sub getdirection()    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; Do     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; directon1 = rand.Next(1, 10000)     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; directon2 = rand.Next(1, 10000)     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; direction = directon1 / directon2     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; direction = Math.Round(direction)     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; Loop Until direction &lt; 5     <br />&#160;&#160;&#160; End Sub </p>
<p>&#160;&#160;&#160; Sub movepointer()    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; If direction = directionold = False Then     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; directionold = direction     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Select Case direction     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Case 1     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#8216;up     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; If curlocx = 0 = False Then     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; curlocx = curlocx &#8211; 1     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; End If     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Case 2     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#8216;down     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; If curlocx = maph = False Then     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; curlocx = curlocx + 1     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; End If     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Case 3     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#8216;left     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; If curlocy = 0 = False Then     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; curlocy = curlocy &#8211; 1     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; End If     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Case 4     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#8216;right     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; If curlocy = mapw = False Then     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; curlocy = curlocy + 1     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; End If     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; End Select     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; End If     <br />&#160;&#160;&#160; End Sub </p>
<p>&#160;&#160;&#160; Sub writecount()    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; Console.WriteLine(&quot;Current Interation : &quot; + count.ToString)     <br />&#160;&#160;&#160; End Sub </p>
<p>&#160;&#160;&#160; Sub writecitys()    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; Dim trys As Integer = 0     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; Console.WriteLine(&quot;City Genoration Started&quot;)     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; citycount = 0     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; Do     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; curlocx = rand.Next(1, maph)     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; curlocy = rand.Next(1, mapw)     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; If teraindata(curlocx, curlocy) = &quot;H&quot; Then     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; If teraindata(curlocx, curlocy) = &quot;#&quot; = False Then     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; If checkforcity() = False Then     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; teraindata(curlocx, curlocy) = &quot;*&quot;     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; citycount = citycount + 1     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Else     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#8216;Console.WriteLine(&quot;Try: &quot; + trys.ToString)     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; trys = trys + 1     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; End If     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; End If     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; End If     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; Loop Until citycount &gt; 63 ‘ Number of Cities Here     <br />&#160;&#160;&#160; End Sub </p>
<p>&#160;&#160;&#160; Function checkforcity() As Boolean    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; Dim temp1 As Integer     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; For x = 0 To maph     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; For y = 0 To mapw     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; If teraindata(x, y) = &quot;*&quot; Then     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; temp1 = x &#8211; curlocx     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; temp1 = temp1 + (y &#8211; curlocy)     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#8216;Console.WriteLine(x.ToString + &quot;, &quot; + y.ToString)     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#8216;Console.WriteLine(temp1)     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#8216;rendermap()     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#8216;Console.ReadKey()     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; If temp1 &gt; 8 And temp1 &gt; 0 Then     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; ElseIf temp1 &lt; -8 And temp1 &lt; 0 Then     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Else     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Return True     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; End If     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; End If     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Next     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; Next     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; Return False     <br />&#160;&#160;&#160; End Function </p>
<p>&#160;&#160;&#160; Sub buildroads()    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; For x = 0 To maph     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; For y = 0 To mapw     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; If teraindata(x, y) = &quot;*&quot; Then     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; curlocx = x     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; curlocy = y     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; makeroad()     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; End If     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Next     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; Next     <br />&#160;&#160;&#160; End Sub </p>
<p>&#160;&#160;&#160; Sub makeroad() </p>
<p>&#160;&#160;&#160; End Sub </p>
<p>&#160;&#160;&#160; Sub makewater()    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; Console.WriteLine(&quot;Water Genoration Started&quot;)     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; count = 0     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; Do Until count &gt; 39     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; curlocx = rand.Next(1, maph)     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; curlocy = rand.Next(1, mapw)     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; For x = 0 To 10000     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; teraindata(curlocx, curlocy) = &quot;#&quot;     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; getdirection()     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; movepointer()     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Next     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#8216;Console.WriteLine(&quot;Count: &quot; + count.ToString)     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; count = count + 1     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; Loop     <br />&#160;&#160;&#160; End Sub </p>
<p>End Module</p>
<p><font color="#ff0000">WARNING</font>: It will take a very long time to run</p>
<br />Posted in Programming  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vbitz.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vbitz.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vbitz.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vbitz.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vbitz.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vbitz.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vbitz.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vbitz.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vbitz.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vbitz.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vbitz.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vbitz.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vbitz.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vbitz.wordpress.com/108/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vbitz.wordpress.com&amp;blog=8289872&amp;post=108&amp;subd=vbitz&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vbitz.wordpress.com/2009/12/17/working-on-random-map-generation/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/82bbd04fc8916c06c39a23b484073cf1?s=96&#38;d=identicon&#38;r=PG" medium="image">
			<media:title type="html">Vbitz</media:title>
		</media:content>
	</item>
		<item>
		<title>Active on IRC</title>
		<link>http://vbitz.wordpress.com/2009/12/17/active-on-irc/</link>
		<comments>http://vbitz.wordpress.com/2009/12/17/active-on-irc/#comments</comments>
		<pubDate>Wed, 16 Dec 2009 19:30:00 +0000</pubDate>
		<dc:creator>vbitz</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://vbitz.wordpress.com/2009/12/17/active-on-irc/</guid>
		<description><![CDATA[Most of the time right now I am on Internet Relay Chat a lot. For anyone who is interested i am on a lot of Game surge and also i have just set it so i am on a lot of open source related stuff like #ubuntu on Freenode. I am also on #wiremod on [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vbitz.wordpress.com&amp;blog=8289872&amp;post=105&amp;subd=vbitz&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Most of the time right now I am on Internet Relay Chat a lot.</p>
<p>For anyone who is interested i am on a lot of Game surge and also i have just set it so i am on a lot of open source related stuff like #ubuntu on Freenode. I am also on #wiremod on GameSurge</p>
<br />Posted in Computers, Random  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vbitz.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vbitz.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vbitz.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vbitz.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vbitz.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vbitz.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vbitz.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vbitz.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vbitz.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vbitz.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vbitz.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vbitz.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vbitz.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vbitz.wordpress.com/105/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vbitz.wordpress.com&amp;blog=8289872&amp;post=105&amp;subd=vbitz&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vbitz.wordpress.com/2009/12/17/active-on-irc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/82bbd04fc8916c06c39a23b484073cf1?s=96&#38;d=identicon&#38;r=PG" medium="image">
			<media:title type="html">Vbitz</media:title>
		</media:content>
	</item>
		<item>
		<title>Starting with Ubuntu</title>
		<link>http://vbitz.wordpress.com/2009/12/16/starting-with-ubuntu/</link>
		<comments>http://vbitz.wordpress.com/2009/12/16/starting-with-ubuntu/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 18:30:00 +0000</pubDate>
		<dc:creator>vbitz</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://vbitz.wordpress.com/2009/12/16/starting-with-ubuntu/</guid>
		<description><![CDATA[I just recently installed Ubuntu 9.10 into a virtual machine using virtual box and so far i have managed to get internet working and compiled vlc from source code. All to simple so far. Next things next, switch my desktop kernel with a server one for better performance, the only reason i have a desktop [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vbitz.wordpress.com&amp;blog=8289872&amp;post=104&amp;subd=vbitz&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I just recently installed Ubuntu 9.10 into a virtual machine using virtual box and so far i have managed to get internet working and compiled vlc from source code. All to simple so far.</p>
<p>Next things next, switch my desktop kernel with a server one for better performance, the only reason i have a desktop one is better hardware support.</p>
<br />Posted in Computers, Programming  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vbitz.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vbitz.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vbitz.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vbitz.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vbitz.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vbitz.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vbitz.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vbitz.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vbitz.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vbitz.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vbitz.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vbitz.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vbitz.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vbitz.wordpress.com/104/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vbitz.wordpress.com&amp;blog=8289872&amp;post=104&amp;subd=vbitz&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vbitz.wordpress.com/2009/12/16/starting-with-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/82bbd04fc8916c06c39a23b484073cf1?s=96&#38;d=identicon&#38;r=PG" medium="image">
			<media:title type="html">Vbitz</media:title>
		</media:content>
	</item>
		<item>
		<title>Testing Post from Windows Live Writer</title>
		<link>http://vbitz.wordpress.com/2009/12/15/testing-post-from-windows-live-writer/</link>
		<comments>http://vbitz.wordpress.com/2009/12/15/testing-post-from-windows-live-writer/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 07:06:52 +0000</pubDate>
		<dc:creator>vbitz</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://vbitz.wordpress.com/2009/12/15/testing-post-from-windows-live-writer/</guid>
		<description><![CDATA[I am doing this Blog post from Windows Live Writer which I though was a good idea since I do not need to be connected to the internet to make a post like this. Also stuff can be locally stored on my computer and uploaded when I am happy with it. Posted in Programming<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vbitz.wordpress.com&amp;blog=8289872&amp;post=103&amp;subd=vbitz&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I am doing this Blog post from Windows Live Writer which I though was a good idea since I do not need to be connected to the internet to make a post like this. Also stuff can be locally stored on my computer and uploaded when I am happy with it.</p>
<br />Posted in Programming  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vbitz.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vbitz.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vbitz.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vbitz.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vbitz.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vbitz.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vbitz.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vbitz.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vbitz.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vbitz.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vbitz.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vbitz.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vbitz.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vbitz.wordpress.com/103/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vbitz.wordpress.com&amp;blog=8289872&amp;post=103&amp;subd=vbitz&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vbitz.wordpress.com/2009/12/15/testing-post-from-windows-live-writer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/82bbd04fc8916c06c39a23b484073cf1?s=96&#38;d=identicon&#38;r=PG" medium="image">
			<media:title type="html">Vbitz</media:title>
		</media:content>
	</item>
		<item>
		<title>Working with XNA</title>
		<link>http://vbitz.wordpress.com/2009/12/11/working-with-xna/</link>
		<comments>http://vbitz.wordpress.com/2009/12/11/working-with-xna/#comments</comments>
		<pubDate>Thu, 10 Dec 2009 21:09:20 +0000</pubDate>
		<dc:creator>vbitz</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Gaming]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://vbitz.wordpress.com/?p=96</guid>
		<description><![CDATA[I have recently been working with the XNA Framework and have been using the XNA Console. I so far have managed to define a proper rectangle and almost render it, though i need to put it in the Draw Method, I am thinking the best way of doing that would be to use some sort [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vbitz.wordpress.com&amp;blog=8289872&amp;post=96&amp;subd=vbitz&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I have recently been working with the XNA Framework and have been using the XNA Console. I so far have managed to define a proper rectangle and almost render it, though i need to put it in the Draw Method, I am thinking the best way of doing that would be to use some sort of hook system executing the procedure in the draw method. Another interesting thing is i am able to make a brand new python sub system in game. I can even exit by using a back-end function Game.Exit.</p>
<br />Posted in Computers, Gaming, Programming  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vbitz.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vbitz.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vbitz.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vbitz.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vbitz.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vbitz.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vbitz.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vbitz.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vbitz.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vbitz.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vbitz.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vbitz.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vbitz.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vbitz.wordpress.com/96/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vbitz.wordpress.com&amp;blog=8289872&amp;post=96&amp;subd=vbitz&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vbitz.wordpress.com/2009/12/11/working-with-xna/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/82bbd04fc8916c06c39a23b484073cf1?s=96&#38;d=identicon&#38;r=PG" medium="image">
			<media:title type="html">Vbitz</media:title>
		</media:content>
	</item>
		<item>
		<title>Updated Project Work</title>
		<link>http://vbitz.wordpress.com/2009/11/13/updated-project-work/</link>
		<comments>http://vbitz.wordpress.com/2009/11/13/updated-project-work/#comments</comments>
		<pubDate>Thu, 12 Nov 2009 19:01:36 +0000</pubDate>
		<dc:creator>vbitz</dc:creator>
				<category><![CDATA[Gaming]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://vbitz.wordpress.com/?p=92</guid>
		<description><![CDATA[A while back I told you about the projects I have been working on and while a couple are finished, the coursework ones. The others are still going strong and most of the networking is going well, the graphics side is falling a bit short, though it is still going well. Posted in Gaming, Programming, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vbitz.wordpress.com&amp;blog=8289872&amp;post=92&amp;subd=vbitz&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>A while back I told you about the projects I have been working on and while a couple are finished, the coursework ones. The others are still going strong and most of the networking is going well, the graphics side is falling a bit short, though it is still going well.</p>
<br />Posted in Gaming, Programming, Random  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vbitz.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vbitz.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vbitz.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vbitz.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vbitz.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vbitz.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vbitz.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vbitz.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vbitz.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vbitz.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vbitz.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vbitz.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vbitz.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vbitz.wordpress.com/92/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vbitz.wordpress.com&amp;blog=8289872&amp;post=92&amp;subd=vbitz&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vbitz.wordpress.com/2009/11/13/updated-project-work/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/82bbd04fc8916c06c39a23b484073cf1?s=96&#38;d=identicon&#38;r=PG" medium="image">
			<media:title type="html">Vbitz</media:title>
		</media:content>
	</item>
		<item>
		<title>Cool games I Looked at</title>
		<link>http://vbitz.wordpress.com/2009/11/11/cool-games-i-looked-at/</link>
		<comments>http://vbitz.wordpress.com/2009/11/11/cool-games-i-looked-at/#comments</comments>
		<pubDate>Wed, 11 Nov 2009 04:15:38 +0000</pubDate>
		<dc:creator>vbitz</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Gaming]]></category>

		<guid isPermaLink="false">http://vbitz.wordpress.com/?p=89</guid>
		<description><![CDATA[Sorry for the non interesting post title. I have been looking at a lot of really cool indie games recently, just Google them for the homepage. N8 It is a really cool construction mmo, it is looking as if it has a lot of potential for times to come. weird thing is it is programmed [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vbitz.wordpress.com&amp;blog=8289872&amp;post=89&amp;subd=vbitz&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Sorry for the non interesting post title.</p>
<p>I have been looking at a lot of really cool indie games recently, just Google them for the homepage.</p>
<h4>N8</h4>
<p>It is a really cool construction mmo, it is looking as if it has a lot of potential for times to come. weird thing is it is programmed in Visual Basic.</p>
<h4>Toribash</h4>
<p>Strange fighting game where you have full control, trust me some of the things done are epic, try looking at the 3 piece tear.</p>
<br />Posted in Computers, Gaming  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vbitz.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vbitz.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vbitz.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vbitz.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vbitz.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vbitz.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vbitz.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vbitz.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vbitz.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vbitz.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vbitz.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vbitz.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vbitz.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vbitz.wordpress.com/89/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vbitz.wordpress.com&amp;blog=8289872&amp;post=89&amp;subd=vbitz&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vbitz.wordpress.com/2009/11/11/cool-games-i-looked-at/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/82bbd04fc8916c06c39a23b484073cf1?s=96&#38;d=identicon&#38;r=PG" medium="image">
			<media:title type="html">Vbitz</media:title>
		</media:content>
	</item>
		<item>
		<title>Wiremod.Com Comments Post</title>
		<link>http://vbitz.wordpress.com/2009/11/08/wiremod-com-comments-post/</link>
		<comments>http://vbitz.wordpress.com/2009/11/08/wiremod-com-comments-post/#comments</comments>
		<pubDate>Sat, 07 Nov 2009 20:40:52 +0000</pubDate>
		<dc:creator>vbitz</dc:creator>
				<category><![CDATA[Blog Admin]]></category>

		<guid isPermaLink="false">http://vbitz.wordpress.com/?p=87</guid>
		<description><![CDATA[Any comments about my posts can be commented here Posted in Blog Admin<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vbitz.wordpress.com&amp;blog=8289872&amp;post=87&amp;subd=vbitz&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Any comments about my posts can be commented here</p>
<br />Posted in Blog Admin  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vbitz.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vbitz.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vbitz.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vbitz.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vbitz.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vbitz.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vbitz.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vbitz.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vbitz.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vbitz.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vbitz.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vbitz.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vbitz.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vbitz.wordpress.com/87/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vbitz.wordpress.com&amp;blog=8289872&amp;post=87&amp;subd=vbitz&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vbitz.wordpress.com/2009/11/08/wiremod-com-comments-post/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/82bbd04fc8916c06c39a23b484073cf1?s=96&#38;d=identicon&#38;r=PG" medium="image">
			<media:title type="html">Vbitz</media:title>
		</media:content>
	</item>
		<item>
		<title>I am now a Wire Sofaking</title>
		<link>http://vbitz.wordpress.com/2009/11/08/i-am-now-a-wire-sofaking/</link>
		<comments>http://vbitz.wordpress.com/2009/11/08/i-am-now-a-wire-sofaking/#comments</comments>
		<pubDate>Sat, 07 Nov 2009 20:34:59 +0000</pubDate>
		<dc:creator>vbitz</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://vbitz.wordpress.com/?p=84</guid>
		<description><![CDATA[This morning i finally became a Wire Sofaking on Wiremod.com I now have over 400 posts there Posted in Computers, Random<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vbitz.wordpress.com&amp;blog=8289872&amp;post=84&amp;subd=vbitz&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This morning i finally became a Wire Sofaking on <a href="http://wiremod.com" target="_blank">Wiremod.com</a></p>
<p>I now have over 400 posts there</p>
<br />Posted in Computers, Random  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vbitz.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vbitz.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vbitz.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vbitz.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vbitz.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vbitz.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vbitz.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vbitz.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vbitz.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vbitz.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vbitz.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vbitz.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vbitz.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vbitz.wordpress.com/84/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vbitz.wordpress.com&amp;blog=8289872&amp;post=84&amp;subd=vbitz&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vbitz.wordpress.com/2009/11/08/i-am-now-a-wire-sofaking/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/82bbd04fc8916c06c39a23b484073cf1?s=96&#38;d=identicon&#38;r=PG" medium="image">
			<media:title type="html">Vbitz</media:title>
		</media:content>
	</item>
		<item>
		<title>Big Update</title>
		<link>http://vbitz.wordpress.com/2009/10/31/big-update/</link>
		<comments>http://vbitz.wordpress.com/2009/10/31/big-update/#comments</comments>
		<pubDate>Sat, 31 Oct 2009 03:51:38 +0000</pubDate>
		<dc:creator>vbitz</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Gaming]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://vbitz.wordpress.com/?p=81</guid>
		<description><![CDATA[Sorry i have not  posted in a while, had too much to do. There is alot of stuff i have been doing Wiremod Forums I have been going on wiremod forums a lot, i am now 10th highest poster on normal users, there are over 50000 users. Source Mapping Well i have also been making [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vbitz.wordpress.com&amp;blog=8289872&amp;post=81&amp;subd=vbitz&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Sorry i have not  posted in a while, had too much to do. There is alot of stuff i have been doing</p>
<h2>Wiremod Forums</h2>
<p>I have been going on wiremod forums a lot, i am now 10th highest poster on normal users, there are over 50000 users.</p>
<h2>Source Mapping</h2>
<p>Well i have also been making quite a few maps</p>
<br />Posted in Computers, Gaming, Programming  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vbitz.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vbitz.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vbitz.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vbitz.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vbitz.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vbitz.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vbitz.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vbitz.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vbitz.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vbitz.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vbitz.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vbitz.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vbitz.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vbitz.wordpress.com/81/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vbitz.wordpress.com&amp;blog=8289872&amp;post=81&amp;subd=vbitz&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vbitz.wordpress.com/2009/10/31/big-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/82bbd04fc8916c06c39a23b484073cf1?s=96&#38;d=identicon&#38;r=PG" medium="image">
			<media:title type="html">Vbitz</media:title>
		</media:content>
	</item>
	</channel>
</rss>
