<?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/"
	>

<channel>
	<title>Reflections &#187; Gaming</title>
	<atom:link href="http://reflections.irythia.com/category/gaming/feed/" rel="self" type="application/rss+xml" />
	<link>http://reflections.irythia.com</link>
	<description>The ramblings and ravings of a ... what?</description>
	<lastBuildDate>Sat, 01 Jan 2011 06:40:53 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>GPC Version 2: Phoenix Rising</title>
		<link>http://reflections.irythia.com/2010/12/31/gpc-version-2-phoenix-rising/</link>
		<comments>http://reflections.irythia.com/2010/12/31/gpc-version-2-phoenix-rising/#comments</comments>
		<pubDate>Sat, 01 Jan 2011 01:09:18 +0000</pubDate>
		<dc:creator>Illianthe</dc:creator>
				<category><![CDATA[Gaming]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Game Prototype Challenge]]></category>
		<category><![CDATA[Phoenix Rising]]></category>

		<guid isPermaLink="false">http://reflections.irythia.com/?p=336</guid>
		<description><![CDATA[I wanted to write this post right after the submission deadline earlier last week, but I put it off due to a case of not feeling well (technical term). So instead, this shall be my last piece for the year! Hopefully I&#8217;ll be writing a little more frequently in the following months, with university and [...]]]></description>
			<content:encoded><![CDATA[<p>I wanted to write this post right after the submission deadline earlier last week, but I put it off due to a case of <em>not feeling well</em> (technical term). So instead, this shall be my last piece for the year! Hopefully I&#8217;ll be writing a little more frequently in the following months, with university and a whole bunch of projects coming up. <img src='http://www.irythia.com/portal/reflections/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><strong>Background</strong></p>
<p><a href="http://studios.irythia.com/games/phoenixrising/">Phoenix Rising</a> is a JavaScript/HTML5-based puzzle game that I wrote for the second iteration of the <a href="http://gameprototypechallenge.com/">Game Prototype Challenge</a>, a week-long game jam. Organized by former colleague Jason Kaplan, the purpose of the challenge was to motivate game developers. And motivate me it did; I saw it as a good opportunity to try my hand at game development. <img src='http://www.irythia.com/portal/reflections/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p><strong>Idea</strong></p>
<p>This was my <em>first ever</em> attempt at writing a game, so I wanted to keep things simple. Basically, this meant that I couldn&#8217;t do anything that required complex mechanics. I was also working that week and had a couple of events to attend so time was definitely an issue.</p>
<p>I chose to write the game in JavaScript, making use of the canvas element introduced in the HTML5 specifications. There are a couple of reasons for this. One: I&#8217;m already quite experienced when it comes to web development so I wanted to take full advantage of that knowledge. Two: I haven&#8217;t actually worked with canvas before even though I&#8217;ve seen all sorts of cool demos that others have written. This was a good way for me to get my feet wet on both fronts.</p>
<p>It took me a few hours to come up with a workable concept once the themes for the challenge (immortality and thin ice) were announced (I was actually up &#8217;till 4 AM thinking while reading up on basic game development). One of the first things that came to mind was the notion of cracking tiles that would deteriorate into holes once you&#8217;ve stepped on it a couple of times; a set of such tiles would essentially be a puzzle that has to be navigated carefully. This was one of the mini-obstacles in <em>Golden Sun</em>, a RPG that I hold in the highest regards. In the end, it turns out that I would do something similar &#8211; a set of ice tiles that melt into a trail of impassible water. I wasn&#8217;t entirely sure how to fit immortality in at first (early ideas included obtaining an elixir of life, spiritual ascendancy, etc.), but then it hit me. Why not do something featuring one of my favourite creatures of all time, the phoenix? Everything came into place once I wrapped my head around that thought, including the melting ice (a phoenix <em>is</em> made of fire after all), the collection of twigs to build a nest, the mini-story&#8230;</p>
<p><strong>Development</strong></p>
<p>Although I fleshed out the game concept fairly early in the week, I didn&#8217;t actually start coding seriously until Thursday. In hindsight I should have started sooner, but there was a lot of material for me to read up first (as stated, I haven&#8217;t done game development before). JavaScript is pretty quirky as a language too which didn&#8217;t help much (I typically use jQuery syntax for the things that I need in the average web development project).</p>
<p>I started with a simple game loop using setInterval() that is first called when the DOM is ready. For this particular project, a continuous game loop was probably overkill; something based on player input would have been far more efficient. I wanted the flexibility though, in case I felt like implementing AI for enemies and whatnot. It turns out this was a rather bad decision as I overestimated the performance of JavaScript in certain browsers; FF 3.6 was quite laggy although FF 4 and Chrome 8 ran the game alright.</p>
<p>All of the level data is stored in separate XML files which are parsed into game objects as needed. This allowed me the flexibility of adding new levels on-the-fly as well as giving an easy way for others to create their own custom maps (in the future?). The jQuery framework makes the parsing process painless, only requiring an AJAX request and a callback function. I&#8217;m actually pretty sure it&#8217;s standard practice to store this data separately, although it was more out of intuition for me.</p>
<p>It turns out that drawing on the HTML5 canvas is rather simple, though you are more-or-less limited to primitive objects. I made extensive use of drawImage() since most of what I had was stored externally. The visual part of the game consists of a bunch of images hastily drawn using my trusty Wacom Bamboo tablet. <img src='http://www.irythia.com/portal/reflections/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  It was actually slightly challenging drawing things that would tile correctly (mainly the wall) and writing code to display the right image wasn&#8217;t a walk in the park either. I probably messed up here; there was likely a <em>much</em> better way of doing things (i.e. not having separate cases for everything).</p>
<p>Everything else is rather straightforward; I used a 2-dimensional array to store the current game state and had various checks in place for &#8220;special&#8221; events. Arkayle&#8217;s abilities were actually a last minute add-on that I felt added a lot more depth to the game (I knew something similar had to be added eventually &#8211; there is only so much you can do with a puzzle where you couldn&#8217;t normally retrace your steps). Unfortunately since I was crunched for time, I couldn&#8217;t really do too much level design. The result is a three-level game where only the last level is slightly challenging. <img src='http://www.irythia.com/portal/reflections/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p><strong>Lessons Learned</strong></p>
<p>There were a few major issues that I ran into. I found that drawing on the canvas is pretty damn slow especially when the dimensions are large (e.g. 1000px x 500px). Especially for a game like this, it was probably a much better idea to redraw when something actually happened (e.g. player input), rather than at a constant interval. An alternative would have been to not use canvas: DOM manipulation is another path that I could have taken.</p>
<p>A second major issue that I found was when I was trying to import my &#8220;art&#8221; assets into the game. There is an issue with drawImage() which tries to render an image onto the canvas even if it hasn&#8217;t been loaded yet. I&#8217;m not sure if this is a bug or by design (if it <em>is</em> by design, I&#8217;d like to know why). One of the ways to resolve this issue was to use drawImage() on image load:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
</pre></td><td class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #003366; font-weight: bold;">var</span> img <span style="color: #339933;">=</span> <span style="color: #003366; font-weight: bold;">new</span> Image<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
img.<span style="color: #000066;">onLoad</span> <span style="color: #339933;">=</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    canvasContext.<span style="color: #660066;">drawImage</span><span style="color: #009900;">&#40;</span>img<span style="color: #339933;">,</span> xStartingCoordinates<span style="color: #339933;">,</span> yStartingCoordinates<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
img.<span style="color: #660066;">src</span> <span style="color: #339933;">=</span> <span style="color: #3366CC;">&quot;path/to/image.png&quot;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>Unfortunately, this caused a whole bunch of flickering due to my game loop (at least in Firefox 3.6) so I opted to preload all of my images instead.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
</pre></td><td class="code"><pre class="javascript" style="font-family:monospace;">$<span style="color: #009900;">&#40;</span>document<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">ready</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #003366; font-weight: bold;">var</span> images <span style="color: #339933;">=</span> <span style="color: #009900;">&#91;</span><span style="color: #3366CC;">&quot;image1.png&quot;</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">&quot;image2.png&quot;</span><span style="color: #339933;">,</span> ...<span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
    <span style="color: #003366; font-weight: bold;">var</span> img <span style="color: #339933;">=</span> <span style="color: #009900;">&#91;</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
    <span style="color: #000066; font-weight: bold;">for</span> <span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">var</span> i <span style="color: #339933;">=</span> <span style="color: #CC0000;">0</span><span style="color: #339933;">;</span> i <span style="color: #339933;">&lt;</span> images.<span style="color: #660066;">length</span><span style="color: #339933;">;</span> i<span style="color: #339933;">++</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
        img<span style="color: #009900;">&#91;</span>i<span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #003366; font-weight: bold;">new</span> Image<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        img<span style="color: #009900;">&#91;</span>i<span style="color: #009900;">&#93;</span>.<span style="color: #660066;">src</span> <span style="color: #339933;">=</span> images<span style="color: #009900;">&#91;</span>i<span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>Turns out that this works quite well. <img src='http://www.irythia.com/portal/reflections/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  The smart way of dealing with so many images (20 at my last count) would have been to use sprite maps to minimize the number of HTTP requests, but I didn&#8217;t want to deal with the hassle at the time (as mentioned, crunch period!).</p>
<p>There were a few more kinks along the way (e.g. dealing with JavaScript&#8217;s prototypical &#8211; rather than classical &#8211; inheritance), but they were pretty minor. My code base is pretty messy, though that was to be expected writing something I didn&#8217;t know how to write, using tools that I didn&#8217;t know how to use. <img src='http://www.irythia.com/portal/reflections/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />  In hindsight, I should have introduced a lot more separation between the engine and game logic. I also should have found a way to reuse code more effectively (see the Entity object). As for the game itself, I should have added in a few more abilities for Arkayle to use, as well as more levels (right now it doesn&#8217;t seem much like a game). Ah well&#8230;</p>
<p>All in all, I had a great time working on this prototype. I felt like I learned a lot from the process and I hope to apply that in future projects. <img src='http://www.irythia.com/portal/reflections/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://reflections.irythia.com/2010/12/31/gpc-version-2-phoenix-rising/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Torchlight</title>
		<link>http://reflections.irythia.com/2010/11/30/torchlight/</link>
		<comments>http://reflections.irythia.com/2010/11/30/torchlight/#comments</comments>
		<pubDate>Wed, 01 Dec 2010 02:42:57 +0000</pubDate>
		<dc:creator>Illianthe</dc:creator>
				<category><![CDATA[Gaming]]></category>
		<category><![CDATA[Review]]></category>
		<category><![CDATA[Torchlight]]></category>

		<guid isPermaLink="false">http://reflections.irythia.com/?p=316</guid>
		<description><![CDATA[It&#8217;s been a long time since I&#8217;ve last touched Diablo I and II, long considered revolutionary games for the action-based RPG genre. The series caused massive waves in the world of gaming, and even today we can still see its influence in modern game design. Hell, it did more than just influence the industry; the [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been a long time since I&#8217;ve last touched Diablo I and II, long considered revolutionary games for the action-based RPG genre. The series caused massive waves in the world of gaming, and even today we can still see its influence in modern game design. Hell, it did more than just <em>influence</em> the industry; the formula was so successful that a slew of copycats followed &#8211; hence the creation of the term &#8220;Diablo clone&#8221;. That&#8217;s not a bad thing, however, as refinements and innovations were made upon the basic concept.</p>
<p>I picked up <a href="http://www.torchlightgame.com/">Torchlight</a>, among others, over the last week during Steam&#8217;s Thanksgiving sale. Being that I&#8217;ve already heard good things about the game from others, it was pretty much a no-brainer. Disappointment was not an emotion I had that day.</p>
<p>As I so subtly hinted in the opening paragraph, Torchlight very much feels like Diablo gameplay-wise. The similarities are such that I&#8217;d advise anyone who <em>has</em> played Diablo to start Torchlight at the hard or very hard setting if they want a good challenge; a lot of basic premises like elemental resistances and such are still in effect. Of course, it feels a little unfair to base my opinions of one game on another but&#8230;</p>
<p>Anyway, let&#8217;s start with the graphics. I definitely enjoyed the art style; it gave the game a more cartoony, light-hearted feel to it. Your mileage may vary, of course, but I find a lot of dungeon crawlers to be rather dark and dreary. It&#8217;s rather nice to see a change every once in a while.</p>
<p>I can&#8217;t really comment on much of the audio; I&#8217;d say it&#8217;s on par for the game&#8217;s theme. Nothing really stuck out and impressed me, but of course the game would be much worse off without it. It&#8217;s just like good web design: audio plays an invisible but vitally important role. For the most part though, I just couldn&#8217;t pay attention to most of the stuff I was listening to since I was too busy running around like a madman trying not to get killed. <img src='http://www.irythia.com/portal/reflections/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />  In that aspect, I suppose it did its job well, giving clear signals on when to dodge projectiles and such.</p>
<p>Personally I thought the story was rather weak and shallow, merely present to provide a small backdrop to the world. I barely know anything about the characters in Torchlight such as Syl and Aldric, though I guess the journals did provide some information on the latter. Hell, I don&#8217;t really know much about Ordrak either, beyond the fact that he&#8217;s a corrupt being I have to take down. Ah well, I didn&#8217;t go in expecting much anyway. <img src='http://www.irythia.com/portal/reflections/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p>Gameplay-wise, Torchlight is quite solid. I wish there was a little more information on how skill damage is calculated (things like ricochet which is based on &#8220;weapon DPS&#8221;) but that&#8217;s not a really big deal (unless you&#8217;re a min-maxer, of course). There weren&#8217;t really any skill trees or synergies &#8211; just abilities you can put points into once you reach a certain level. This removed a lot of complexity in choosing how to build a character (though at the same time reducing the game&#8217;s depth). I prefer it this way though, since it lets you experiment without investing too heavily in one particular style. The pet that always tags along with you is quite a nice little innovation to the genre since it does away with the whole go-back-to-town-to-sell-everything-since-you-have-no-more-room-in-your-pack problem; the ability-granting fish was rather cool too, though quite odd and out-of-place.</p>
<p>One major issue I found with the game was the huge ramp in difficulty between floor 29 and 30. The Dark Zealots on floors 30-34 are quite insane as they can literally kill you in one hit, giving you next to no notice. It was quite frustrating dealing with them; indeed, I just suicided my way to the final boss because I was fed up part way through. At least in the rest of the game the difficulty ramped up at a reasonable pace; sure, there were always things that could 2/3-hit you, but you could avoid them by playing carefully. The final boss was rather tedious as well, though I was quite underleveled at that point (my character was only at 25 compared to the boss and his minions all at 30). Basically I just suicided a couple dozen times spamming traps everywhere to take him down. Good thing I wasn&#8217;t playing on hardcore mode, eh? <img src='http://www.irythia.com/portal/reflections/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>All that said though, I believe modability is definitely Torchlight&#8217;s greatest strength. Any part of the game that causes irritation can be changed to better suit the player. For example, I thought having to constantly identify items was a massive waste of time so I hunted down something to change it. Mods can even add huge amounts of extra content to the game, from things like quests to completely new classes. There are quite a few resources for mods as well. In addition to a few select sites, <a href="http://torchleech.runicgamesfansite.com:7000/">TorchLeech</a>, an unofficial tool that manages modifications to Torchlight, helps in organizing and finding most of what you need.</p>
<p>Anyway, in summary: definitely try this game out if you&#8217;re into action-based RPGs (hell, even if you&#8217;re only tangentially acquainted with the genre). I think there&#8217;s a free demo floating about somewhere too. <img src='http://www.irythia.com/portal/reflections/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://reflections.irythia.com/2010/11/30/torchlight/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>StarCraft II: Lost Viking</title>
		<link>http://reflections.irythia.com/2010/10/31/starcraft-ii-lost-viking/</link>
		<comments>http://reflections.irythia.com/2010/10/31/starcraft-ii-lost-viking/#comments</comments>
		<pubDate>Mon, 01 Nov 2010 03:48:41 +0000</pubDate>
		<dc:creator>Illianthe</dc:creator>
				<category><![CDATA[Gaming]]></category>
		<category><![CDATA[Lost Viking]]></category>
		<category><![CDATA[StarCraft II]]></category>

		<guid isPermaLink="false">http://reflections.irythia.com/?p=299</guid>
		<description><![CDATA[For anyone not accustomed to side-scrolling shooters &#8211; very plausible given that SC2 is a real-time strategy game &#8211; the Lost Viking achievements may be one of the most annoying to obtain (at least as far as the campaign goes). However, given a bit of effort, it is far from impossible for even the most [...]]]></description>
			<content:encoded><![CDATA[<p>For anyone not accustomed to side-scrolling shooters &#8211; very plausible given that SC2 is a real-time strategy game &#8211; the Lost Viking achievements may be one of the most annoying to obtain (at least as far as the campaign goes). However, given a bit of effort, it is far from impossible for even the most casual gamer. Here are a few general tips&#8230;</p>
<p><strong>Power-ups</strong></p>
<ul>
<li>Plasma vs. side missiles &#8211; Though the plasmas will take down bosses much quicker than the rockets, it is hard to use them elsewhere in the scenario. In general, the latter is much more user-friendly; the former is for those who have great skill in aiming while maneuvering through enemy fire.</li>
<li>Drones &#8211; These little guys are amazing; they help take down opposing units and also sacrifice themselves should you take a hit, acting as an extra life. Two of these should be gotten as soon as possible (wait for the power-ups to morph if need be).</li>
<li>Bombs &#8211; Bombs are literally the PANIC! button in this minigame and there is no shortage of them after having finished upgrading the ship&#8217;s weaponry and obtaining the drones. They should be used whenever you&#8217;re in a &#8220;crap, I&#8217;m screwed&#8221;-spot (typically during the Zerg and Terran bosses).</li>
</ul>
<p><strong>Levels</strong></p>
<ul>
<li>The Protoss level is pretty straightforward; there aren&#8217;t too many things worth mentioning about it. One interesting thing to note is that you can &#8220;farm&#8221; the interceptors that the boss throws out for points; this can actually get you past the 500k point barrier without having to fight Terra-Tron for a 3rd time.</li>
<li>For the Zerg, it is best not to move around a lot as you take down the scourges. By staying motionless, the enemy &#8220;firing&#8221; pattern is much less chaotic. Of course, moving as little as possible is a general rule in most shooters so&#8230; As for the boss here, the main thing to watch out for is the tentacles; the stockpile of bombs will come in useful here though they aren&#8217;t completely necessary.</li>
<li>Terra-Tron is by far the biggest threat in the third level, with lasers, bullets, and even a homing saw at its disposal. The laser can be avoided by being at the opposite side of the screen from where Terra-Tron starts firing; the saw isn&#8217;t <em>too</em> hard to dodge, at least on its own. The hail of bullets on the other hand is quite annoying given the clunky, imprecise controls. Again, the bomb stockpile will serve quite nicely here.</li>
</ul>
<p><strong>Controls</strong></p>
<p>One interesting thing to note is that spamming the spacebar continuously is much more effective than keeping it held down. This gets rather tiring and distracting so, me being me, I wrote a quick AutoHotkey script to automate this process.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
</pre></td><td class="code"><pre class="text" style="font-family:monospace;">Activated := 0
&nbsp;
Loop {
	If (Activated) {
		Send {Space}
		Sleep, 50
	}
}
&nbsp;
$Space::
	Activated := !Activated</pre></td></tr></table></div>

<p>Press the spacebar once and the ship will fire continuously at maximum speed without any further direction. It makes it much easier to focus on dodging fire and using bombs when necessary. <img src='http://www.irythia.com/portal/reflections/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p>Anyway, Happy Hallowe&#8217;en!</p>
]]></content:encoded>
			<wfw:commentRss>http://reflections.irythia.com/2010/10/31/starcraft-ii-lost-viking/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft Kinect</title>
		<link>http://reflections.irythia.com/2010/09/30/microsoft-kinect/</link>
		<comments>http://reflections.irythia.com/2010/09/30/microsoft-kinect/#comments</comments>
		<pubDate>Fri, 01 Oct 2010 03:31:28 +0000</pubDate>
		<dc:creator>Illianthe</dc:creator>
				<category><![CDATA[Gaming]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Kinect]]></category>
		<category><![CDATA[Kinect Adventures]]></category>
		<category><![CDATA[Kinect Joy Ride]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Project Natal]]></category>
		<category><![CDATA[Xbox 360]]></category>

		<guid isPermaLink="false">http://reflections.irythia.com/?p=295</guid>
		<description><![CDATA[It&#8217;s been over a year now since Project Natal (now Kinect) was announced. One of the most mindblowing demos of the day was created by Lionhead, where participants could interact fluidly with an in-game kid named Milo (E3 2009 video here). Things sort of died down after a while until earlier this year when Microsoft [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been over a year now since Project Natal (now Kinect) was announced. One of the most mindblowing demos of the day was created by Lionhead, where participants could interact fluidly with an in-game kid named Milo (E3 2009 video <a href="http://www.youtube.com/watch?v=HluWsMlfj68">here</a>). Things sort of died down after a while until earlier this year when Microsoft formally introduced the system as Kinect. Curious name, that; it&#8217;s sort of a blend between kinect (i.e. movement) and connect (as in with other people) which is understandable given all the hype about social media these days.</p>
<p>Anyway, my friend and I got to play around with the system earlier today (quite randomly, actually, since we were just strolling downtown getting food and stuff). We got to play Kinect Adventures which included activities such as navigating a raft with our bodies, dodging items on an obstacle track, and plugging up leaks caused by some very vicious fish. I believe the second game we tried was Kinect Joy Ride which was basically a racing game with a variety of game modes. I was actually quite surprised at how well the sensor picked up body movements, though I did have some problems controlling my car in Joy Ride (though that was likely due to my inexperience with the controls). Both games had relatively slick UIs too given the new method of control; I can&#8217;t think of many ways to improve upon them off the top of my head.</p>
<p>Perhaps the technology is still too immature or the style of games will only fit in with a niche group of people; nevertheless, it&#8217;ll be interesting to see how Microsoft, Sony (with its PlayStation Move), and Nintendo (with its Wii &#8211; or presumably, the Wii&#8217;s successor) battle it out for a piece of console gaming&#8217;s future.</p>
]]></content:encoded>
			<wfw:commentRss>http://reflections.irythia.com/2010/09/30/microsoft-kinect/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RuneScape Bonus XP Weekend (Part 2)</title>
		<link>http://reflections.irythia.com/2010/08/24/runescape-bonus-xp-weekend-part-2/</link>
		<comments>http://reflections.irythia.com/2010/08/24/runescape-bonus-xp-weekend-part-2/#comments</comments>
		<pubDate>Tue, 24 Aug 2010 13:29:28 +0000</pubDate>
		<dc:creator>Illianthe</dc:creator>
				<category><![CDATA[Gaming]]></category>
		<category><![CDATA[Bonus XP Weekend]]></category>
		<category><![CDATA[RuneScape]]></category>

		<guid isPermaLink="false">http://reflections.irythia.com/?p=288</guid>
		<description><![CDATA[&#8230;and it&#8217;s back! Jagex announced last day that the second bonus XP weekend will be running from the 3rd to the 6th of September. Clearly I&#8217;ve been out of the loop for a good period of time; I only noticed because this post was getting a spike in traffic the last couple of days. It [...]]]></description>
			<content:encoded><![CDATA[<p>&#8230;and it&#8217;s back! Jagex <a href="http://services.runescape.com/m=news/bonus-xp-weekend---3rd-to-6th-september">announced last day</a> that the second bonus XP weekend will be running from the 3rd to the 6th of September. Clearly I&#8217;ve been out of the loop for a good period of time; I only noticed because <a href="http://reflections.irythia.com/2010/03/21/runescape-bonus-xp-weekend-an-overview/">this post</a> was getting a spike in traffic the last couple of days.</p>
<p>It looks like the principle behind the entire event has largely stayed the same. There is one major difference though: summoning will be capped at 110% of normal XP throughout the weekend. This is due to the nature of the skill; as I mentioned previously, most of the work occurs during charm gathering rather than pouch making. The addition of dungeoneering is a slight change; the XP calculations will work as normal although extra tokens won&#8217;t be given out as rewards.</p>
<p>As expected, many raw materials have already been bought out and are rising in price rapidly while big-ticket items are heading in the opposite direction. I&#8217;m actually pretty curious to know how many people were already planning / holding out for this event ever since the last one ended. It&#8217;s unlikely that people would be willing to train skills like summoning and herblore heavily if there was a chance that this weekend would come. In other words, there was a very real possibility that the first bonus XP weekend altered player training habits for good. I mean, who wants to get shafted by an arbitrary external force?</p>
<p>Anyway, I&#8217;m still on a hiatus from the game so it&#8217;s unlikely that I&#8217;ll even bother participating. If I did, my day would probably consist of a whole lot of dungeoneering &#8217;cause, you know, at least that particular skill is somewhat interesting to level. <img src='http://www.irythia.com/portal/reflections/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://reflections.irythia.com/2010/08/24/runescape-bonus-xp-weekend-part-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>StarCraft II</title>
		<link>http://reflections.irythia.com/2010/08/21/starcraft-ii/</link>
		<comments>http://reflections.irythia.com/2010/08/21/starcraft-ii/#comments</comments>
		<pubDate>Sat, 21 Aug 2010 04:47:17 +0000</pubDate>
		<dc:creator>Illianthe</dc:creator>
				<category><![CDATA[Gaming]]></category>
		<category><![CDATA[StarCraft II]]></category>

		<guid isPermaLink="false">http://reflections.irythia.com/?p=282</guid>
		<description><![CDATA[Well, SC2 is a game that needs no introduction with all the press that it has gathered over the last few months. After all, its predecessor literally jumpstarted the entire progaming scene; expectations are high that SC2 will take Brood War&#8217;s place over the next few years. I&#8217;ve been replaying the campaign the last few [...]]]></description>
			<content:encoded><![CDATA[<p>Well, SC2 is a game that needs no introduction with all the press that it has gathered over the last few months. After all, its predecessor literally jumpstarted the entire progaming scene; expectations are high that SC2 will take Brood War&#8217;s place over the next few years. I&#8217;ve been replaying the campaign the last few days, trying to pick up most of the achievements (I already stomped through it once during my exam period just to go through the storyline; let&#8217;s just say casual difficulty is really, really casual <img src='http://www.irythia.com/portal/reflections/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> ).</p>
<p>As is usual for a Blizzard game, SC2 mostly lives up to its hype. The graphics are phenomenal without being overbearing; I can still play the game relatively well on medium settings using a laptop that I got three years ago. The audio is pretty decent as well. All of the sounds are appropriate, given the situation; it&#8217;s easy enough to tell what&#8217;s going on if you listen intently. Much of the music seems like it was remixed from SC1 too, giving an old nostalgic feel to the game. </p>
<p>What I really liked was the changes to the user interface. The new control groups really help a low-APM player like me. <img src='http://www.irythia.com/portal/reflections/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />  Things like automatically (and intelligently) choosing which building to build a unit from, having unlimited units in one group, casting only one copy of a special ability at a time, and such means that I can focus less on mass-spamming my mouse and keyboard and focus more on overall strategies. Of course, there are things missing that I&#8217;d like to see. For example, wouldn&#8217;t it be nice if units created from a building were automatically assigned to a chosen control group when they come out? This could be implemented by, say, Ctrl + Right Click on a control group when the buildings are highlighted. Right now this is half-done if you rally the buildings&#8217; troops to a unit; they&#8217;ll basically follow that unit if it isn&#8217;t dead.</p>
<p>The storyline itself was okay. I didn&#8217;t expect much from a RTS game so all of the character development and stuff were pretty much gravy. That said, much of the plot is relatively predictable and cliché; despite giving you a lot of choice in choosing which missions to do first, there isn&#8217;t much overall impact in the end. At least there weren&#8217;t any inconsistencies that I could see though (e.g. one mission done before another, but some dialogue refers to the latter in the former). I suppose not too many people care about singleplayer SC2 anyway so it&#8217;s a moot point&#8230;</p>
<p>I haven&#8217;t played any league games yet and don&#8217;t really intend to; I&#8217;m not particularly big on competitive gaming in general. SC2 isn&#8217;t exactly balanced for anything above 1 vs 1 anyway (hell, it&#8217;s not even balanced for <em>that</em> despite aiming to become the de facto standard for progaming). I&#8217;ll stick with trolling the AI and playing custom maps, thanks. <img src='http://www.irythia.com/portal/reflections/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p>Anyway, there are a few things that I dislike about the game. The lack of chat on the new Battle.net is kind of a step back from the previous iteration; not everyone likes to interact with others on the official community forums. That said, the old Battle.net was pretty blah, so meh&#8230; Regionalization of the community is a massive pain in the ass too; is Blizzard seriously telling me that I can&#8217;t play with friends in other regions without buying another copy of the game? The world is coming closer together with all of our new communication technology and they pull that kind of crap in the name of providing a better experience for their users. I haven&#8217;t seen a justification for such an action that couldn&#8217;t be met with a &#8220;softer&#8221; version of segregation (for example, league matchmaking can be done by region but custom games can allow anyone from anywhere to join; this allows for lower ping in &#8220;important&#8221; matches and increased versatility when players want it). Sure, it&#8217;d be harder to implement but it shouldn&#8217;t be impossible for a company with Blizzard&#8217;s resources. Oh yeah, a lack of LAN support is lame too (I can deal with regionalization if we had that option). I can definitely see why Blizzard doesn&#8217;t want to implement it though, seeing as SC2 is supposed to be focusing on competitive gaming. A look at the company&#8217;s actions with KeSPA and you can see that they really want to control a good part of the scene.</p>
<p>That said, SC2 is still a solid game in my eyes (and I&#8217;m missing out on the supposed best part of the game &#8211; online league play). Time to finish up the campaign achievements, I guess. My fingers are still numb from doing &#8220;All In&#8221; on brutal versus all of that flying Zerg&#8230; <img src='http://www.irythia.com/portal/reflections/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://reflections.irythia.com/2010/08/21/starcraft-ii/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Guild Wars 2: Personality</title>
		<link>http://reflections.irythia.com/2010/08/05/guild-wars-2-personality/</link>
		<comments>http://reflections.irythia.com/2010/08/05/guild-wars-2-personality/#comments</comments>
		<pubDate>Thu, 05 Aug 2010 16:20:35 +0000</pubDate>
		<dc:creator>Illianthe</dc:creator>
				<category><![CDATA[Gaming]]></category>
		<category><![CDATA[Guild Wars 2]]></category>

		<guid isPermaLink="false">http://reflections.irythia.com/?p=270</guid>
		<description><![CDATA[Glad to see ArenaNet hasn&#8217;t lost their innovative spirit. Besides introducing a rather linear leveling curve (as opposed to exponential like in most RPGs) the studio has opted to add some personality to player characters. This will really add to the role-playing aspects of the game if it is done right. For most MMORPGs (and [...]]]></description>
			<content:encoded><![CDATA[<p>Glad to see ArenaNet hasn&#8217;t lost their innovative spirit. Besides introducing a rather linear leveling curve (as opposed to exponential like in most RPGs) the studio has opted to add some personality to player characters. This will really add to the role-playing aspects of the game if it is done right.</p>
<p>For most MMORPGs (and even a few single-player RPGs), we typically take the role of a rather nondescript hero. In many cases, said hero generally has next to no real backstory; conversations with NPCs are dull, predictable, and pretty much one-sided (when was the last time we said more than a sentence to / grunted at a NPC? <img src='http://www.irythia.com/portal/reflections/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> ). Wouldn&#8217;t it be nice to give a tongue-lashing to characters you hate? How about flirting with those that you love?</p>
<div id="attachment_272" class="wp-caption aligncenter" style="width: 310px"><a href="http://reflections.irythia.com/wp-content/uploads/2010/08/felix.png"><img src="http://reflections.irythia.com/wp-content/uploads/2010/08/felix-300x108.png" alt="Felix Talking" title="Felix Talking" width="300" height="108" class="size-medium wp-image-272" /></a><p class="wp-caption-text">Throughout 'Golden Sun: The Lost Age', this is pretty much the only time Felix talks. The rest of the time he just nods 'yes' or 'no' and may occasionally give a '...'. But hey, at least he has a compelling backstory! <img src='http://www.irythia.com/portal/reflections/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p></div>
<p>Personality in GW2 isn&#8217;t set in stone either, apparently. Maybe a life-long jerk will suddenly have an epiphany and decide to change his ways, or a tragic incident will turn a paragon of light into a cynic. This sounds great, so long as it actually takes a bit of effort to reform (a personality isn&#8217;t a personality if it can change on the spot). It would even be better if NPC interactions have permanent effects on relationships, though that typically falls out of the realm of MMORPGs. (Imagine a persistent world where certain characters will avoid you outright, where decisions are not clear-cut and could leave you agonizing for a good period of time.)</p>
<p>Anyway, that&#8217;s my current stream of thoughts on the subject. Now to get back to burying my head in books&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://reflections.irythia.com/2010/08/05/guild-wars-2-personality/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>As per usual&#8230;</title>
		<link>http://reflections.irythia.com/2010/07/09/as-per-usual/</link>
		<comments>http://reflections.irythia.com/2010/07/09/as-per-usual/#comments</comments>
		<pubDate>Fri, 09 Jul 2010 18:25:54 +0000</pubDate>
		<dc:creator>Illianthe</dc:creator>
				<category><![CDATA[Gaming]]></category>
		<category><![CDATA[Blizzard]]></category>
		<category><![CDATA[Real ID]]></category>

		<guid isPermaLink="false">http://reflections.irythia.com/?p=265</guid>
		<description><![CDATA[&#8230;I&#8217;m late to the party. Just an hour or two after my rant on Blizzard&#8217;s Real ID, the company took a step back with a post on the WoW general discussion forums. From the thread (the words of CEO Mike Morhaime): We will still move forward with new forum features such as the ability to [...]]]></description>
			<content:encoded><![CDATA[<p>&#8230;<a href="http://reflections.irythia.com/2010/07/09/its-a-blizzard/">I&#8217;m late to the party</a>. <img src='http://www.irythia.com/portal/reflections/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  Just an hour or two after my rant on Blizzard&#8217;s Real ID, the company <a href="http://forums.worldofwarcraft.com/thread.html?topicId=25968987278&#038;sid=1">took a step back</a> with a post on the WoW general discussion forums.</p>
<p>From the thread (the words of CEO Mike Morhaime):</p>
<blockquote><p>We will still move forward with new forum features such as the ability to rate posts up or down, post highlighting based on rating, improved search functionality, and more. However, when we launch the new StarCraft II forums that include these new features, you will be posting by your StarCraft II Battle.net character name + character code, not your real name. The upgraded World of Warcraft forums with these new features will launch close to the release of Cataclysm, and also will not require your real name. </p></blockquote>
<p>Kudos to Blizzard for re-evaluating their stance. Usually it&#8217;s pretty hard to get a general sense of things from mere forum posts and blogs because of, again, the vocal minority phenomenon.</p>
<p>Now, obviously they do not want to completely back away from the idea. Further on in the post, Mike continues saying that the company would like to implement &#8220;powerful communications functionality&#8221; inside their games. This supports my stance that there is a much bigger, underlying motive to their actions. I wouldn&#8217;t be surprised if, like Facebook&#8217;s Beacon (resurrected as its Open Graph), Real ID will come back in a more sinister, hidden form.</p>
]]></content:encoded>
			<wfw:commentRss>http://reflections.irythia.com/2010/07/09/as-per-usual/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>It&#8217;s a Blizzard!</title>
		<link>http://reflections.irythia.com/2010/07/09/its-a-blizzard/</link>
		<comments>http://reflections.irythia.com/2010/07/09/its-a-blizzard/#comments</comments>
		<pubDate>Fri, 09 Jul 2010 14:31:03 +0000</pubDate>
		<dc:creator>Illianthe</dc:creator>
				<category><![CDATA[Gaming]]></category>
		<category><![CDATA[Blizzard]]></category>
		<category><![CDATA[Real ID]]></category>
		<category><![CDATA[StarCraft II]]></category>

		<guid isPermaLink="false">http://reflections.irythia.com/?p=259</guid>
		<description><![CDATA[&#8230;or in this case, more like a shitstorm. Blizzard&#8217;s intention of rolling out their Real ID system made its way around the internet in a surprisingly swift manner. And the general feedback is negative, even after taking into account the vocal minority phenomenon. Not surprising. Recent advancements in areas such as social media (Facebook, Twitter, [...]]]></description>
			<content:encoded><![CDATA[<p>&#8230;or in this case, more like a shitstorm. Blizzard&#8217;s <a href="http://us.battle.net/realid/">intention of rolling out their Real ID system</a> made its way around the internet in a surprisingly swift manner. And the general feedback is negative, even after taking into account the vocal minority phenomenon. Not surprising.</p>
<p>Recent advancements in areas such as social media (Facebook, Twitter, etc.) has gradually chipped away at the notion of anonymity over the web. People are taking to the idea of revealing more of themselves to others using such tools. This is by no means a bad thing; the internet has shifted towards being a more interactive, real-time medium. The way we disseminate news and other information has changed drastically.</p>
<p>Blizzard&#8217;s reason for rolling out the system was to foster a better community, one that was devoid of spammers and trolls. They&#8217;re likely the only gaming company that has the clout to do so, with millions of subscribers on their flagship game. Of course, being that World of Warcraft <em>is</em> subscription-based, they already have the information needed for Real ID (i.e. first/last name). That&#8217;s scary. (Of course, one wonders how many kids have their parent&#8217;s name on record instead. <img src='http://www.irythia.com/portal/reflections/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> )</p>
<p>Will it stop trolling on the forums? Perhaps. It will also turn off a lot of people who are genuinely interested in distancing their online personality from their offline one. One of the reasons why content creation on the internet is so popular is that people do not necessarily have to attribute the content to themselves. This allows for more truthful communication; words do not necessarily have to be sugar-coated to please a certain group of members. If I recall correctly, 4chan was based on this principle, having unfiltered and often heated discussions between people. Would people be willing to talk about sensitive issues such as gay marriage, wars, etc. if their real-life reputation was on the line? My guess is that for most, no.</p>
<p>One major reason that I dislike the idea of Real ID is that gamers <em>do not</em> require that kind of intimacy. Hell, even in my extremely close-knit gaming circle, pretty much everyone calls me by one of my nicknames. In some cases we actually want to distance ourselves from our true identity; what&#8217;s the point of playing RPGs if we&#8217;re not actually role-playing the characters? Besides, games are sometimes used as a way to escape into a virtual world.</p>
<p>Anyway, let&#8217;s be honest. Blizzard <em>really</em> wants to use such a system so that it can align itself with social media. If it can tap into Facebook&#8217;s social graph where people reveal all sorts of things about themselves, it can tailor new features to such demographics. Again, this is not necessarily a bad thing (read: better products) but it does suggest other ulterior motives. I personally don&#8217;t need a web where my own information can be easily used against me (and I&#8217;m saying this while being currently enrolled in a marketing class! <img src='http://www.irythia.com/portal/reflections/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> ).</p>
<p>Here&#8217;s a few more articles/blogs/sites/whatever of interest:</p>
<ul>
<li><a href="http://forums.worldofwarcraft.com/thread.html?topicId=25712374700&#038;sid=1">WoW Official Forums &#8211; Upcoming Changes</a>: Possibly one of the biggest threads in the history of threads.</li>
<li><a href="http://stylishcorpse.wordpress.com/2010/07/07/fail-of-the-century/">Stylish Corpse &#8211; Fail of the Century</a>: Ysharros rants about the issues in letting online strangers know your identity. She&#8217;s clearly not very happy.</li>
<li><a href="http://www.ted.com/talks/christopher_m00t_poole_the_case_for_anonymity_online.html">Christopher &#8220;moot&#8221; Poole&#8217;s TED Talk</a>: The creator of 4chan talks about why anonymity is so important in regards to the internet.</li>
<li><a href="http://kotaku.com/5582923/is-it-that-bad-using-your-real-name-on-the-internet">Kotaku &#8211; Is It That Bad Using Your Real Name On The Internet?</a>: Luke Plunkett takes an opposing view and talks about the benefits of Real ID. He makes some good points, although as bloggers we already have a diminished sense of privacy.</li>
</ul>
<p>On another note, the StarCraft 2 beta is back out again. I&#8217;m just going to wait for the game to be released, but it&#8217;s still interesting to watch my friends pounce on it and rip it apart once again. <img src='http://www.irythia.com/portal/reflections/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />  Must&#8230;feed&#8230;SC&#8230;addiction, yes?</p>
]]></content:encoded>
			<wfw:commentRss>http://reflections.irythia.com/2010/07/09/its-a-blizzard/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>RuneScape Bonus XP Weekend: An Overview</title>
		<link>http://reflections.irythia.com/2010/03/21/runescape-bonus-xp-weekend-an-overview/</link>
		<comments>http://reflections.irythia.com/2010/03/21/runescape-bonus-xp-weekend-an-overview/#comments</comments>
		<pubDate>Sun, 21 Mar 2010 21:10:55 +0000</pubDate>
		<dc:creator>Illianthe</dc:creator>
				<category><![CDATA[Gaming]]></category>
		<category><![CDATA[Bonus XP Weekend]]></category>
		<category><![CDATA[RuneScape]]></category>

		<guid isPermaLink="false">http://reflections.irythia.com/?p=234</guid>
		<description><![CDATA[On February 26th, Mod Knox announced RuneScape&#8217;s first ever bonus XP event. It was to run on the weekend of March 12th, starting at 7:00 AM EST and running until the same time the following Monday. The effects of this announcement were profound and widespread. In a matter of days, many popular items used in [...]]]></description>
			<content:encoded><![CDATA[<p>On February 26th, Mod Knox <a href="http://services.runescape.com/m=devblog/view_post.ws?post_id=84&#038;page=1">announced</a> RuneScape&#8217;s first ever bonus XP event. It was to run on the weekend of March 12th, starting at 7:00 AM EST and running until the same time the following Monday.</p>
<p>The effects of this announcement were profound and widespread. In a matter of days, many popular items used in skill training (such as planks, herbs and summoning secondaries) became unbuyable on the Grand Exchange. Merchanting clans &#8211; and indeed, pretty much everybody &#8211; promptly jumped on the bandwagon, causing prices to spike in a dramatic fashion. This imbalance in the supply and demand of raw materials trickled down; soon, &#8220;essential&#8221; items such as potions were also bought out, crippling the ability of players to participate in PvP and other activities.</p>
<p>In a bid to hoard more supplies, however, many players began to sell off expensive items such as godswords and Bandos armour. This triggered a crash of sorts in the high-end market, causing many players to speculate on what the future has in store. What was notable, however, was the influx of discontinued items in the Grand Exchange; prior to the event announcement, traders often had to use &#8220;junk&#8221; in order to obtain them. There are two sides to this: although collectors were easily able to get something they want at a steep discount, said items became more heavily concentrated in the hands of wealthy players.</p>
<p>This state of affairs wouldn&#8217;t last for long, of course. About a week later, the market for training supplies began to cool down; it won&#8217;t be until the beginning of the actual event that things start to pick up again. Prices for high-end items took on a reversed course as people began to recognize that they were vastly undervalued.</p>
<p>Meanwhile, the RuneScape forums were raging with activity. Many players thought it was an awesome event and began preparing for it, even going so far as to use calculus to determine how much XP might be expected for a particular activity. Questions were thrown around left, right and center about what particular training methods were covered under the event. Others, however, had a negativistic view and stated that bonus XP devalued skills (in particular, summoning).</p>
<p>On the first day of the actual event, people quickly determined that the XP rate counter was decreasing faster than it should have been. Mod Nexus confirmed this in a forum thread, saying it was because of a rounding error in the math calculations. This meant that the curve leveled off at 110% normal experience approximately 3 hours faster than expected, throwing off many of the more meticulous plans for the day.</p>
<p>Despite this miscalculation, players were undeterred in their training. Areas such as Castle Wars and the Ourania Runecrafting Altar were flooded with skillers. At multiple points throughout the weekend, RuneScape peaked at over 180k people online. Such enthusiasm turned what is ordinarily dull training into a group activity, building relationships between players; it was sort of like a global skilling clan going to areas normally devoid of people. In the end, many &#8216;Scapers received a hefty experience boost in the skill(s) of their choice.</p>
<p>&#8212;</p>
<p>So that&#8217;s pretty much what <em>happened</em>. Here&#8217;s a few of my thoughts on the event.</p>
<p>There&#8217;s no doubt that it was one of the most controversial announcements of the year. Although bonus XP events were commonplace in many other MMORPGs, this marks the first time such a thing has happened in RuneScape. Much of the debate centered around the &#8220;devaluing&#8221; of achievements prior to the weekend. In particular, summoning took the brunt of the criticism due to the design of the skill itself; most of the time spent is on charm gathering rather than pouch making, so it was possible to save months of playtime (rather than the ~5 or so hours with most other skills). Herblore took second place due to the vast amounts of money that could be saved in the process of gaining upwards of ~4 million XP over the weekend.</p>
<p>What&#8217;s the big deal? Well, RuneScape is largely a time-based game (more so than most); there are few things that players <em>can&#8217;t</em> do if they put in sufficient effort. As a result, the main thing distinguishing players is the number of hours spent in-game (way overgeneralizing here). To put it into perspective: think of time as some sort of currency and a government deciding to introduce more of it into the economy &#8211; causing hyperinflation to occur.</p>
<p>It&#8217;s essentially an egotistical argument; the idea boils down to &#8220;I worked for my skills the hard way, so everyone else should too&#8221;. In a game like RuneScape, where higher levels give substantially larger advantages, it becomes easy for players to point fingers at the bonus XP event and say that it nullifies their competitive advantage over others. For example, let&#8217;s use the pack yak as an example: it requires level 96 summoning and provides a massive advantage in the form of extra inventory space (and long-range banking). Those who have gotten the yak prior to the event were able to cash in on their efforts, staying at boss fights and whatnot longer than their lower-leveled counterparts. However, there may be those who have, say, level 85-90 summoning who didn&#8217;t have enough resources to reach level 96, but had enough to achieve half of that. The bonus weekend helps to put the pack yak in their line of sight, making it possible for more people to compete with others who have already done so.</p>
<p>Now, I&#8217;m a relatively casual player. Although I&#8217;ve been &#8220;around&#8221; longer than probably 95% of the population today, I haven&#8217;t done many noteworthy things. For example, I&#8217;ve never hit maxed level in any skill thus far, and have no plans on doing so. My reason? I dislike grinding and am happy with ~90% of the benefits in a third of the time. Basically, my opportunity cost for gaining the last little bit of extra advantages are too high. And yeah, being a mathie I have a habit of calculating efficiency rates for various activities in the game. <img src='http://www.irythia.com/portal/reflections/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />  So what draws me into RuneScape? Questing is probably the primary reason. It&#8217;s also one of the few games that I&#8217;m capable of multitasking well with when I&#8217;m knocking heads together in Guild Wars or programming &#8220;the next big thing&#8221;. <img src='http://www.irythia.com/portal/reflections/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  For someone like me who pretty much tries everything to avoid straight-up grind, anything that increases efficiency per time spent is likely to be more good than bad (just as a sidenote, I went for summoning, construction and hunter last weekend).</p>
<p>There&#8217;s a couple of arguments in favour of the event that I haven&#8217;t really seen yet. First of all, it was sort of a money-sink. In the case of summoning, many players had to buy shards from the shop, removing gold from the game. It&#8217;s no big secret that inflation has been running rampant over the last couple years so every little bit helps. For other materials, it helped to decentralize wealth as people with a lot of money bought things from those who supply them (merchants notwithstanding). Secondly, an increased number of higher-leveled players can actually help the game. Think of it this way: if more people are able to make an attempt at the God Wars Dungeon or the Corporeal Beast, then prices of the more expensive items may drop into affordable range.</p>
<p>It&#8217;s been my experience that forums aren&#8217;t a very good way to judge feedback to an in-game event. The responses tend to be skewed towards the dissenting side and for good reason &#8211; happy players tend to be the ones actually <em>playing</em> the content. I suspect given the amount of activity last weekend that it was a huge success, so I wouldn&#8217;t be surprised if another similar announcement comes up in the future.</p>
<p>I appreciate a gaming company who&#8217;s willing to try out controversial things so I have a few suggestions for Jagex. It&#8217;d be nice to give <em>less</em> notice should a repeat occur, as the Grand Exchange was essentially destabilized for a month. Using a limited subset of activities might be interesting too, as that would herd players to various areas (this, of course, only works if the activity isn&#8217;t based around zero-sum like mining).</p>
<p>Anyway, this post has gotten a bit out of hand so I&#8217;ll wrap things up for now. <img src='http://www.irythia.com/portal/reflections/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://reflections.irythia.com/2010/03/21/runescape-bonus-xp-weekend-an-overview/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

