<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wikidot="http://www.wikidot.com/rss-namespace">

	<channel>
		<title>Deleted threads (new posts)</title>
		<link>http://rbwhitaker.wikidot.com/forum/c-38228/deleted-threads</link>
		<description>Posts in the forum category &quot;Deleted threads&quot; - Deleted forum discussions should go here.</description>
				<copyright></copyright>
		<lastBuildDate>Fri, 06 Mar 2026 12:05:19 +0000</lastBuildDate>
		
					<item>
				<guid>http://rbwhitaker.wikidot.com/forum/t-860545#post-2030826</guid>
				<title>Official Trope List: Official Trope List</title>
				<link>http://rbwhitaker.wikidot.com/forum/t-860545/official-trope-list#post-2030826</link>
				<description></description>
				<pubDate>Mon, 12 May 2014 22:29:16 +0000</pubDate>
				<wikidot:authorName>rbwhitaker</wikidot:authorName>				<wikidot:authorUserId>88099</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Last time around, our theme was basically to build a clone of another game (Space Invaders). I think we discovered last time that people want to play pretty loosely with the theme, and go their own direction. So this time around, we're de-emphasizing the &quot;clone a game&quot; idea, and breaking the chosen game down into &quot;tropes&quot;. Tropes are like recurring themes or ideas that come up in a variety of games (or movies, or books, or whatever). We've broken the chosen theme game of <em>Thrust</em> down into its components, and listed them below.</p> <p>You can think of these as building materials which you can use to make whatever game you want. You're not limited to these. They're just here to give your brain some things to think about.</p> <p>If you think of more that we should add, post them below and I'll get them added to the official list here.</p> <p>(See <a href="http://tvtropes.org/pmwiki/pmwiki.php/Main/HomePage" target="_blank">here</a> for a cool list of tons of tropes to draw inspiration from.)</p> <h3><span>No Plot? No Problem!</span></h3> <p>Games don't need no stinkin' plot! If skipping the plot is good enough for Pac-Man, Asteroids, and Thrust, it's good enough for you.</p> <h3><span>Camera Centering</span></h3> <p>The game's point of view moves to follow the player's character, ship, avatar, or representation as they move around in the world.</p> <h3><span>Made of Paper</span></h3> <p>One hit kills you. There's no armor or shields to keep you safe. (Yes, even though Thrust <em>did</em> have a shield, for much of the game, you don't have it, and one hit kills you.)</p> <h3><span>Outrun the Fireball</span></h3> <p>Some portion of the game involves outrunning or escaping from a fireball or explosion.</p> <h3><span>Newton's Laws</span></h3> <p>The game has some non-trivial physics in it that the player has to deal with.</p> <h3><span>Save the Princess</span></h3> <p>The game involves rescuing, saving, capturing, or stealing an object (the pod in Thrust).</p> <h3><span>You Require More Vespene Gas</span></h3> <p>The player must deal with completing the game or level with limited resources (excluding time).</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://rbwhitaker.wikidot.com/forum/t-773088#post-1959114</guid>
				<title>This is just a test. Ignore me.: This is just a test. Ignore me.</title>
				<link>http://rbwhitaker.wikidot.com/forum/t-773088/this-is-just-a-test-ignore-me#post-1959114</link>
				<description></description>
				<pubDate>Fri, 07 Feb 2014 00:10:14 +0000</pubDate>
				<wikidot:authorName>RB a</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>This is just a test. Repeat&#8212;this is just a test.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://rbwhitaker.wikidot.com/forum/t-467396#post-1449476</guid>
				<title>Just a test...: </title>
				<link>http://rbwhitaker.wikidot.com/forum/t-467396/just-a-test#post-1449476</link>
				<description></description>
				<pubDate>Tue, 15 May 2012 15:36:03 +0000</pubDate>
				<wikidot:authorName>Plinko the Flying Slug</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <div class="code"> <pre><code>using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Loops_Input_Math_Practice { class Program { static void Main(string[] args) { // Some variables to store information about the user. int age; int favoriteNumber; string firstName; string lastName; Console.Write(&quot;How old are you: &quot;); // Display message asking for age. string ageAsText = Console.ReadLine(); // Store age as a string age = Convert.ToInt32(ageAsText); // convert it to an integer Console.Write(&quot;What is your favorite number: &quot;); string favoriteNumberAsText = Console.ReadLine(); favoriteNumber = Convert.ToInt32(favoriteNumberAsText); Console.Write(&quot;What is your first name: &quot;); firstName = Console.ReadLine(); // Don't need to convert since we are dealing with a string Console.Write(&quot;What is your last name: &quot;); lastName = Console.ReadLine(); // The loops are pointless but I can't think of good examples. int counter = 0; do { if (counter == 0) // If counter is at 0, display user's age. { Console.WriteLine(&quot;Your are &quot; + age + &quot; years old.&quot;); } else // Else display double the user's age. { Console.WriteLine(&quot;Twice your age is &quot; + age * 2 + &quot; years old.&quot;); break; // Get out of the forever loop we made. } counter++; // Update counter so we can exit the loop during the next iteration or we will be stuck here forever. } while (true); // Won't exit till it runs into something like a break statement. // This loop would of been more clear if written as a for loop, but this is for demonstration purposes. int number = 0; // Value we will be updating and checking in the loop while (number &lt;= 10) // Will use the values 0 - 10 { // Shows the multiplication chart for the user's favorite number from 0 - 10 // Example: 7 x 0 = 0, 7 x 1 = 7, etc.! Console.WriteLine(favoriteNumber + &quot; x &quot; + number + &quot; = &quot; + favoriteNumber * number); number++; // Update the value so we can eventually exit our loop } Console.Write(&quot;Give me a number from 1 - 10: &quot;); string aNumberAsText = Console.ReadLine(); int aNumber = Convert.ToInt32(aNumberAsText); for (int count = 0; count &lt; aNumber; count++) { for (int first = 0; first &lt; 1; first++) { Console.Write(firstName); Console.Write(&quot; &quot;); // Note: You could just add Console.Write(lastName); here and forget the for loop below. Was just to show a 3 tiered(nested) loop. for (int last = 0; last &lt; 1; last++) { Console.Write(lastName); } } Console.WriteLine(); } Console.ReadKey(); } } }</code></pre></div> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://rbwhitaker.wikidot.com/forum/t-467396#post-1449474</guid>
				<title>Just a test...: Re: Just a test...</title>
				<link>http://rbwhitaker.wikidot.com/forum/t-467396/just-a-test#post-1449474</link>
				<description></description>
				<pubDate>Tue, 15 May 2012 15:35:40 +0000</pubDate>
				<wikidot:authorName>rbwhitaker</wikidot:authorName>				<wikidot:authorUserId>88099</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <div class="code"> <pre><code>using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Loops_Input_Math_Practice { class Program { static void Main(string[] args) { // Some variables to store information about the user. int age; int favoriteNumber; string firstName; string lastName; Console.Write(&quot;How old are you: &quot;); // Display message asking for age. string ageAsText = Console.ReadLine(); // Store age as a string age = Convert.ToInt32(ageAsText); // convert it to an integer Console.Write(&quot;What is your favorite number: &quot;); string favoriteNumberAsText = Console.ReadLine(); favoriteNumber = Convert.ToInt32(favoriteNumberAsText); Console.Write(&quot;What is your first name: &quot;); firstName = Console.ReadLine(); // Don't need to convert since we are dealing with a string Console.Write(&quot;What is your last name: &quot;); lastName = Console.ReadLine(); // The loops are pointless but I can't think of good examples. int counter = 0; do { if (counter == 0) // If counter is at 0, display user's age. { Console.WriteLine(&quot;Your are &quot; + age + &quot; years old.&quot;); } else // Else display double the user's age. { Console.WriteLine(&quot;Twice your age is &quot; + age * 2 + &quot; years old.&quot;); break; // Get out of the forever loop we made. } counter++; // Update counter so we can exit the loop during the next iteration or we will be stuck here forever. } while (true); // Won't exit till it runs into something like a break statement. // This loop would of been more clear if written as a for loop, but this is for demonstration purposes. int number = 0; // Value we will be updating and checking in the loop while (number &lt;= 10) // Will use the values 0 - 10 { // Shows the multiplication chart for the user's favorite number from 0 - 10 // Example: 7 x 0 = 0, 7 x 1 = 7, etc.! Console.WriteLine(favoriteNumber + &quot; x &quot; + number + &quot; = &quot; + favoriteNumber * number); number++; // Update the value so we can eventually exit our loop } Console.Write(&quot;Give me a number from 1 - 10: &quot;); string aNumberAsText = Console.ReadLine(); int aNumber = Convert.ToInt32(aNumberAsText); for (int count = 0; count &lt; aNumber; count++) { for (int first = 0; first &lt; 1; first++) { Console.Write(firstName); Console.Write(&quot; &quot;); // Note: You could just add Console.Write(lastName); here and forget the for loop below. Was just to show a 3 tiered(nested) loop. for (int last = 0; last &lt; 1; last++) { Console.Write(lastName); } } Console.WriteLine(); } Console.ReadKey(); } } }</code></pre></div> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://rbwhitaker.wikidot.com/forum/t-467396#post-1449473</guid>
				<title>Just a test...: Re: Just a test...</title>
				<link>http://rbwhitaker.wikidot.com/forum/t-467396/just-a-test#post-1449473</link>
				<description></description>
				<pubDate>Tue, 15 May 2012 15:34:37 +0000</pubDate>
				<wikidot:authorName>rbwhitaker</wikidot:authorName>				<wikidot:authorUserId>88099</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <div class="code"> <div class="hl-main"> <pre><span class="hl-identifier">a</span><span class="hl-code">.</span><span class="hl-identifier">add</span><span class="hl-brackets">()</span><span class="hl-code">;</span></pre></div> </div> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://rbwhitaker.wikidot.com/forum/t-467396#post-1449471</guid>
				<title>Just a test...: </title>
				<link>http://rbwhitaker.wikidot.com/forum/t-467396/just-a-test#post-1449471</link>
				<description></description>
				<pubDate>Tue, 15 May 2012 15:33:13 +0000</pubDate>
				<wikidot:authorName>Plinko the Flying Slug</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <div class="code"> <div class="hl-main"> <pre><span class="hl-identifier">a</span><span class="hl-code">.</span><span class="hl-identifier">add</span><span class="hl-brackets">()</span><span class="hl-code">;</span></pre></div> </div> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://rbwhitaker.wikidot.com/forum/t-467396#post-1444540</guid>
				<title>Just a test...: </title>
				<link>http://rbwhitaker.wikidot.com/forum/t-467396/just-a-test#post-1444540</link>
				<description></description>
				<pubDate>Thu, 10 May 2012 16:48:23 +0000</pubDate>
				<wikidot:authorName>Pinky the Pink Pac-Man Ghost</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <div class="code"> <div class="hl-main"> <pre><span class="hl-identifier">a</span><span class="hl-code">. </span><span class="hl-identifier">add</span><span class="hl-brackets">()</span><span class="hl-code">;</span></pre></div> </div> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://rbwhitaker.wikidot.com/forum/t-467396#post-1444535</guid>
				<title>Just a test...: </title>
				<link>http://rbwhitaker.wikidot.com/forum/t-467396/just-a-test#post-1444535</link>
				<description></description>
				<pubDate>Thu, 10 May 2012 16:40:46 +0000</pubDate>
				<wikidot:authorName>Plinko the Flying Slug</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <div class="code"> <pre><code>ConsoleWrite(How old are you ) Display message asking for age. string ageAsText = ConsoleReadLine ) Store age as a string age = ConvertToInt32(ageAsText) convert it to an integer</code></pre></div> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://rbwhitaker.wikidot.com/forum/t-467396#post-1444531</guid>
				<title>Just a test...: </title>
				<link>http://rbwhitaker.wikidot.com/forum/t-467396/just-a-test#post-1444531</link>
				<description></description>
				<pubDate>Thu, 10 May 2012 16:38:45 +0000</pubDate>
				<wikidot:authorName>Plinko the Flying Slug</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>://</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://rbwhitaker.wikidot.com/forum/t-467396#post-1444530</guid>
				<title>Just a test...: </title>
				<link>http://rbwhitaker.wikidot.com/forum/t-467396/just-a-test#post-1444530</link>
				<description></description>
				<pubDate>Thu, 10 May 2012 16:38:12 +0000</pubDate>
				<wikidot:authorName>Plinko the Flying Slug</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <div class="code"> <pre><code>int[] numbers = new int[5]; numbers[5] = 3;</code></pre></div> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://rbwhitaker.wikidot.com/forum/t-467396#post-1444529</guid>
				<title>Just a test...: </title>
				<link>http://rbwhitaker.wikidot.com/forum/t-467396/just-a-test#post-1444529</link>
				<description></description>
				<pubDate>Thu, 10 May 2012 16:37:16 +0000</pubDate>
				<wikidot:authorName>Plinko the Flying Slug</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <div class="code"> <div class="hl-main"> <pre><span class="hl-types">int</span><span class="hl-brackets">[]</span><span class="hl-code"> </span><span class="hl-identifier">numbers</span><span class="hl-code"> = </span><span class="hl-reserved">new</span><span class="hl-code"> </span><span class="hl-types">int</span><span class="hl-brackets">[</span><span class="hl-number">5</span><span class="hl-brackets">]</span><span class="hl-code">; </span><span class="hl-identifier">Console</span><span class="hl-code">.</span><span class="hl-identifier">WriteLine</span><span class="hl-brackets">(</span><span class="hl-quotes">&quot;</span><span class="hl-string">arrays seem to work...</span><span class="hl-quotes">&quot;</span><span class="hl-brackets">)</span><span class="hl-code">;</span></pre></div> </div> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://rbwhitaker.wikidot.com/forum/t-467396#post-1443948</guid>
				<title>Just a test...: </title>
				<link>http://rbwhitaker.wikidot.com/forum/t-467396/just-a-test#post-1443948</link>
				<description></description>
				<pubDate>Thu, 10 May 2012 02:49:24 +0000</pubDate>
				<wikidot:authorName>Plinko the Flying Slug</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <div class="code"> <pre><code>Console.WriteLine();</code></pre></div> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://rbwhitaker.wikidot.com/forum/t-467396#post-1443946</guid>
				<title>Just a test...: </title>
				<link>http://rbwhitaker.wikidot.com/forum/t-467396/just-a-test#post-1443946</link>
				<description></description>
				<pubDate>Thu, 10 May 2012 02:49:00 +0000</pubDate>
				<wikidot:authorName>Plinko the Flying Slug</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <div class="code"> <div class="hl-main"> <pre><span class="hl-identifier">Console</span><span class="hl-code">.</span><span class="hl-identifier">WriteLine</span><span class="hl-brackets">(</span><span class="hl-quotes">&quot;</span><span class="hl-string">Hello World!</span><span class="hl-quotes">&quot;</span><span class="hl-brackets">)</span><span class="hl-code">;</span></pre></div> </div> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://rbwhitaker.wikidot.com/forum/t-467396#post-1443944</guid>
				<title>Just a test...: </title>
				<link>http://rbwhitaker.wikidot.com/forum/t-467396/just-a-test#post-1443944</link>
				<description></description>
				<pubDate>Thu, 10 May 2012 02:48:38 +0000</pubDate>
				<wikidot:authorName>Plinko the Flying Slug</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <div class="code"> <div class="hl-main"> <pre><span class="hl-identifier">namespace</span><span class="hl-code"> </span><span class="hl-identifier">Loops_Input_Math_Practice</span><span class="hl-code"> </span><span class="hl-brackets">{</span><span class="hl-code"> </span><span class="hl-reserved">class</span><span class="hl-code"> </span><span class="hl-identifier">Program</span><span class="hl-code"> </span><span class="hl-brackets">{</span><span class="hl-code"> </span><span class="hl-types">static</span><span class="hl-code"> </span><span class="hl-types">void</span><span class="hl-code"> </span><span class="hl-identifier">Main</span><span class="hl-brackets">(</span><span class="hl-identifier">string</span><span class="hl-brackets">[]</span><span class="hl-code"> </span><span class="hl-identifier">args</span><span class="hl-brackets">)</span><span class="hl-code"> </span><span class="hl-brackets">{</span><span class="hl-code"> </span><span class="hl-types">int</span><span class="hl-code"> </span><span class="hl-identifier">age</span><span class="hl-code">; </span><span class="hl-types">int</span><span class="hl-code"> </span><span class="hl-identifier">favoriteNumber</span><span class="hl-code">; </span><span class="hl-identifier">string</span><span class="hl-code"> </span><span class="hl-identifier">firstName</span><span class="hl-code">; </span><span class="hl-identifier">string</span><span class="hl-code"> </span><span class="hl-identifier">lastName</span><span class="hl-code">; </span><span class="hl-brackets">}</span><span class="hl-code"> </span><span class="hl-brackets">}</span><span class="hl-code"> </span><span class="hl-brackets">}</span></pre></div> </div> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://rbwhitaker.wikidot.com/forum/t-467396#post-1443942</guid>
				<title>Just a test...: </title>
				<link>http://rbwhitaker.wikidot.com/forum/t-467396/just-a-test#post-1443942</link>
				<description></description>
				<pubDate>Thu, 10 May 2012 02:47:08 +0000</pubDate>
				<wikidot:authorName>Plinko the Flying Slug</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <div class="code"> <pre><code>namespace Loops_Input_Math_Practice { class Program { static void Main(string[] args) { } } }</code></pre></div> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://rbwhitaker.wikidot.com/forum/t-467396#post-1443941</guid>
				<title>Just a test...: </title>
				<link>http://rbwhitaker.wikidot.com/forum/t-467396/just-a-test#post-1443941</link>
				<description></description>
				<pubDate>Thu, 10 May 2012 02:46:28 +0000</pubDate>
				<wikidot:authorName>Plinko the Flying Slug</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <div class="code"> <pre><code>using System;</code></pre></div> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://rbwhitaker.wikidot.com/forum/t-467396#post-1443939</guid>
				<title>Just a test...: </title>
				<link>http://rbwhitaker.wikidot.com/forum/t-467396/just-a-test#post-1443939</link>
				<description></description>
				<pubDate>Thu, 10 May 2012 02:45:43 +0000</pubDate>
				<wikidot:authorName>Plinko the Flying Slug</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <div class="code"> <pre><code>using System;</code></pre></div> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://rbwhitaker.wikidot.com/forum/t-467396#post-1443937</guid>
				<title>Just a test...: </title>
				<link>http://rbwhitaker.wikidot.com/forum/t-467396/just-a-test#post-1443937</link>
				<description></description>
				<pubDate>Thu, 10 May 2012 02:45:15 +0000</pubDate>
				<wikidot:authorName>Plinko the Flying Slug</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <div class="code"></div> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://rbwhitaker.wikidot.com/forum/t-467396#post-1443822</guid>
				<title>Just a test...: </title>
				<link>http://rbwhitaker.wikidot.com/forum/t-467396/just-a-test#post-1443822</link>
				<description></description>
				<pubDate>Thu, 10 May 2012 00:07:33 +0000</pubDate>
				<wikidot:authorName>Plinko the Flying Slug</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>int a = 3;<br /> if(a == 7)<br /> {<br /> Console.WriteLine(&quot;Hello World!&quot;);<br /> }</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://rbwhitaker.wikidot.com/forum/t-467396#post-1443820</guid>
				<title>Just a test...: </title>
				<link>http://rbwhitaker.wikidot.com/forum/t-467396/just-a-test#post-1443820</link>
				<description></description>
				<pubDate>Thu, 10 May 2012 00:07:06 +0000</pubDate>
				<wikidot:authorName>Plinko the Flying Slug</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Testing to see if an anonymous user can post code&#8230;</p> <div class="code"> <div class="hl-main"> <pre><span class="hl-types">int</span><span class="hl-code"> </span><span class="hl-identifier">a</span><span class="hl-code"> = </span><span class="hl-number">3</span><span class="hl-code">; </span><span class="hl-reserved">if</span><span class="hl-brackets">(</span><span class="hl-identifier">a</span><span class="hl-code"> == </span><span class="hl-number">7</span><span class="hl-brackets">)</span><span class="hl-code"> </span><span class="hl-brackets">{</span><span class="hl-code"> </span><span class="hl-identifier">Console</span><span class="hl-code">.</span><span class="hl-identifier">WriteLine</span><span class="hl-brackets">(</span><span class="hl-quotes">&quot;</span><span class="hl-string">Hello World!</span><span class="hl-quotes">&quot;</span><span class="hl-brackets">)</span><span class="hl-code">; </span><span class="hl-brackets">}</span></pre></div> </div> <div class="code"> <pre><code>// Look Mom! No type specified! int a = 3; if(a == 7) { Console.WriteLine(&quot;Hello World!&quot;); }</code></pre></div> 
				 	]]>
				</content:encoded>							</item>
				</channel>
</rss>