<?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>The Evil League of Evil</title>
	<atom:link href="http://evilleague.org/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://evilleague.org</link>
	<description></description>
	<lastBuildDate>Wed, 27 Jan 2010 00:37:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Hector the Pool Boy</title>
		<link>http://evilleague.org/?p=349</link>
		<comments>http://evilleague.org/?p=349#comments</comments>
		<pubDate>Wed, 06 Jan 2010 05:19:52 +0000</pubDate>
		<dc:creator>Amalric</dc:creator>
				<category><![CDATA[Propaganda]]></category>

		<guid isPermaLink="false">http://evilleague.org/?p=349</guid>
		<description><![CDATA[Not many people knew about the utilities and parsing engine that I wrote for AoC. Most of this is because I have no desire to share (and thus help support whatever stupid shit you plan on attempting to do) and each time someone saw anything they wanted it (bribes included). Which is funny, because none [...]]]></description>
			<content:encoded><![CDATA[<p>Not many people knew about the utilities and parsing engine that I wrote for AoC.  Most of this is because I have no desire to share (and thus help support whatever stupid shit you plan on attempting to do) and each time someone saw anything they wanted it (bribes included).  Which is funny, because none of this stuff is rocket science.  It&#8217;s all pretty straight forward.</p>
<p>Anyway, some background.</p>
<p>AoC&#8217;s UI is horrible.  The hooks you have to do anything useful in it are pretty limited.  Even EQ1 had the ability to make something as simple as a timer (with some creativity, enchanter timers were very common).  WoW of course took this to the other extreme.  The concept of XML+LUA = \\&#8217; is a good one, but when taken too far it tends to ruin things.  Content designers then need to start taking all of these &#8220;automation&#8221; tools into consideration and then design around it.  This is of course the wrong answer to this problem, but that&#8217;s what happens.</p>
<p>So AoC first came out and said &#8220;YES API YES&#8221; and then quickly backed the fuck off of that statement shortly around release.  This is good and bad, but uninspired content designers often put annoying tedium into a game.  For instance, mobs that lack emotes, visual indicators or other such items to indicate something is happening or about to.  Instead you just need to count to N and react.  Most designers learned this was bad, but of course AoC lags behind.  The only real benefit here is that someone can&#8217;t write a UI mod that will play the game for you (one button tanking, like in WoW, etc).</p>
<p>So what I did about it&#8230;</p>
<p>Combat logs are the key to any MMO.  So first, you need a combat log parser.  Sure, there is conan stats but it was fairly lacking in the beginning and never gave me all the stats I wanted.  This is why the CLOG library came to be.  It was a parsing engine that I wrote that originally just parsed AoC files.  Now it&#8217;ll pretty much parse anything, but that&#8217;s not really the point.  AoC wasn&#8217;t the best at logging (not even second best), but if it happens in game it should be in a log.  With this information you can determine raid and mob state.  </p>
<p>This is obviously very useful information to have.  We often used it to determine exactly what went wrong on a wipe.  Now if you have a handful of state machines tracking everything as it happens live, you&#8217;ve got a pretty good representation of what is going on in game as it happens.  </p>
<p>This is only part of the solution.  Now you need to get the information to someone who can use it.  Chat bots are very common in AoC.  Since AoC&#8217;s chat protocol is based off of AO&#8217;s, it was pretty easy to look at some original work (from Slicer) and write my own AoC chat bot.  There other other bots out there, but this one was written from the ground up to do what I wanted.  Beatrice, as we had come to know and love her, maintained guild roster, snarky comments and provided a ton of utility that the AoC UI never did.  Ever wanted an AoC raid ready check?  We had it.  Ever wanted an AoC loot request system with voting for merit awards?  We had it.  Just about anything other than automatically tracking raid attendance and loot you can do with a chat bot.  I even had had the bot talking with the forums.</p>
<p>So now that you have a mechanism for interacting with people in game you can obviously see the next step.  You get the pool boy to talk to his mistress.  Hector was broken into two chunks.  One would monitor a combat log on a client that was in raid.  This information would then be passed to Hector proper where he would then maintain state (which encounter you were on, what players were doing and how the encounter was going).  Anything that was interesting could then be relayed to Hector&#8217;s lover Beatrice, which would of course be relayed to in game.  And of course, since Beatrice was watching in game conversation she could send anything necessary back to Hector (!dps, !topdmg, !healing, etc).</p>
<p>So, to simplify a bit AoC Client -> Live Combat Log -> Log Relay -> Hector -> Beatrice -> In game guild chat.<br />
In game guild chat -> Beatrice -> Hector or Forums or Guild Management System (GMS)</p>
<p>Boosh.  All of those tedious timers that you had to sand bag someone with, gone.  Of course you can do tons more than just deal with timers, but it&#8217;s probably one of the most useful things.</p>
<p>We had all sorts of other crazyness going on at TELoE.  Every raid was tracked and everything about that raid was parsed.  How long it took us to do something, how much damage, what type of damage, how much idle time someone had.. all of this was looked at.  A subset of this data was permanently stored and then dynamically graphed. </p>
<p>This all may sound fairly time consuming, but everything was written over a period of a year or so.  Once everything was in place it only took about 2 minutes after every raid to feed stuff into the system and then you could forget about it.  It all was very easy, very useful and made AoC that much more entertaining.</p>
<p>And no&#8230; I&#8217;m not releasing any source code.  I&#8217;m not telling anyone exactly how the state machines worked. It&#8217;s all pretty self evident.  You could already be doing this for yourself or your guild.  I&#8217;m sure what I did wasn&#8217;t unique.  I certainly had fun doing it (more fun than I was actually having with the game at times) and that&#8217;s really all that matters to me.</p>
]]></content:encoded>
			<wfw:commentRss>http://evilleague.org/?feed=rss2&amp;p=349</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TELoE will not be returning to AoC</title>
		<link>http://evilleague.org/?p=344</link>
		<comments>http://evilleague.org/?p=344#comments</comments>
		<pubDate>Wed, 06 Jan 2010 03:37:05 +0000</pubDate>
		<dc:creator>Amalric</dc:creator>
				<category><![CDATA[Propaganda]]></category>

		<guid isPermaLink="false">http://evilleague.org/?p=344</guid>
		<description><![CDATA[Since giving the game a break, checking out what&#8217;s going on with Test Live and playing other games, we have decided that we will not be returning to AoC in any sort of raiding capacity. A handful of us are still playing with other guilds, but the vast majority of the core and leadership have [...]]]></description>
			<content:encoded><![CDATA[<p>Since giving the game a break, checking out what&#8217;s going on with Test Live and playing other games, we have decided that we will not be returning to AoC in any sort of raiding capacity.  A handful of us are still playing with other guilds, but the vast majority of the core and leadership have stopped playing AoC entirely.  When the expansion is released a number of us will check it out, but we won&#8217;t be stepping into any raid zone as a guild.  </p>
<p>As you may have guessed, all of the cool kids have moved to DDO and we&#8217;ve been leveling, flagging and raiding there.  Good times.</p>
<p>But anyway.. now that we&#8217;re not playing AoC.. I&#8217;m going to be writing a post about a certain pool boy and his lover that some technical folks may find interesting.</p>
]]></content:encoded>
			<wfw:commentRss>http://evilleague.org/?feed=rss2&amp;p=344</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Know you not that I command the planes themselves?</title>
		<link>http://evilleague.org/?p=340</link>
		<comments>http://evilleague.org/?p=340#comments</comments>
		<pubDate>Fri, 11 Dec 2009 05:40:03 +0000</pubDate>
		<dc:creator>Amalric</dc:creator>
				<category><![CDATA[Propaganda]]></category>

		<guid isPermaLink="false">http://evilleague.org/?p=340</guid>
		<description><![CDATA[Tempest&#8217;s Spine is a free to play raid encounter in DDO. It&#8217;s a pretty good run. It kind of reminds me of what EQ1 raid zones felt like back in the day. It&#8217;s nice to see a game that doesn&#8217;t throw all of their game mechanics to the wind as soon as you enter a [...]]]></description>
			<content:encoded><![CDATA[<p align=center><img src="/media/ddo/tempestspine.jpg" alt="Raid content FTW" /></p>
<p>Tempest&#8217;s Spine is a free to play raid encounter in DDO.  It&#8217;s a pretty good run.  It kind of reminds me of what EQ1 raid zones felt like back in the day.  It&#8217;s nice to see a game that doesn&#8217;t throw all of their game mechanics to the wind as soon as you enter a raid zone.  More designers need to take note.</p>
]]></content:encoded>
			<wfw:commentRss>http://evilleague.org/?feed=rss2&amp;p=340</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Le Trou Normand</title>
		<link>http://evilleague.org/?p=322</link>
		<comments>http://evilleague.org/?p=322#comments</comments>
		<pubDate>Tue, 08 Dec 2009 05:10:56 +0000</pubDate>
		<dc:creator>Amalric</dc:creator>
				<category><![CDATA[Propaganda]]></category>

		<guid isPermaLink="false">http://evilleague.org/?p=322</guid>
		<description><![CDATA[After spending way more time than I care to admit being spoon-fed heaping piles of raw human excrement, it&#8217;s nice to have something that neutralizes the palate. This way when you taste something sweet it doesn&#8217;t just take like the same ol&#8217; shit. I&#8217;ve been meaning to do a home page update, but I haven&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p>After spending way more time than I care to admit being spoon-fed heaping piles of raw human excrement, it&#8217;s nice to have something that neutralizes the palate.  This way when you taste something sweet it doesn&#8217;t just take like the same ol&#8217; shit.</p>
<p><img src="/media/ddo/ContentWorthDoing.jpg" alt="Seriously, this isn't rocket science." /></p>
<p>I&#8217;ve been meaning to do a home page update, but I haven&#8217;t been taking screen shots.  Honestly, I&#8217;ve been too busy having fun playing the game.  I&#8217;m mid level on two characters (OMG, <strong>I</strong> rolled an alt before I had a max level character?  I think this is a first.) and I&#8217;ve ran more dungeons than I&#8217;ve ever ran in AoC.  I know, crazy.  I&#8217;ve ran the same dungeon more than once and not dreaded it.  I&#8217;ve ran the same dungeon over and over and got different loot each time.</p>
<p>I know, this is absolutely <strong>INSANE</strong>.  It&#8217;s crazy talk.  And no, it&#8217;s not totally worthless loot.  I can sell the loot to something called a broker (just like vendor diving, for those of you that don&#8217;t suck), I can use the loot to twink an army of multi-classed alts, or I can price gouge the bitches that can&#8217;t do the content themselves.</p>
<p align=center><img src="/media/ddo/DDODoesntSuckAward.jpg" alt="Loot Whore?" /></p>
<p>So, loot is nice, but what really makes the game is the fact that the content simply does not fuck&#8217;n suck.  It&#8217;s repeatable.  It&#8217;s fun.  It&#8217;s memorable.  It&#8217;s content that makes use of your entire party.  You&#8217;re more than just DPS, a tank or a healer.  And seriously, whomever said real crowd control was a stupid idea should be beaten with a lead pipe.  Stuns, charms, mezes.. you name it, it&#8217;s there.  </p>
<p><img src="/media/ddo/AoCSucksCock.jpg" alt="Can you that this guy is wearing a thong?" /></p>
<p>I&#8217;m sure after I&#8217;m max level, have played all of the classes I want to max level.. and play with the seemingly infinite number of builds (feats+enhancements+mixing and matching character classes == win!).. and reincarnate my max level character and play the game all over again.. twice&#8230; and once I&#8217;ve done all that, I&#8217;m sure I&#8217;ll be bored and ready for a change.</p>
]]></content:encoded>
			<wfw:commentRss>http://evilleague.org/?feed=rss2&amp;p=322</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Excuse me, I said &#8220;How would you like to suck my balls?&#8221;</title>
		<link>http://evilleague.org/?p=308</link>
		<comments>http://evilleague.org/?p=308#comments</comments>
		<pubDate>Wed, 25 Nov 2009 00:54:07 +0000</pubDate>
		<dc:creator>Amalric</dc:creator>
				<category><![CDATA[Propaganda]]></category>

		<guid isPermaLink="false">http://evilleague.org/?p=308</guid>
		<description><![CDATA[I wish I could have Funcom&#8217;s deadlines at work. You get to take forever to release something that&#8217;s pretty half ass. When people call you on your half ass deliverable you can pull a card from your deck of excuses and people eat it up like they&#8217;ve been smoke&#8217;n pot the past 12 hours and [...]]]></description>
			<content:encoded><![CDATA[<p>I wish I could have Funcom&#8217;s deadlines at work.  You get to take forever to release something that&#8217;s pretty half ass.  When people call you on your half ass deliverable you can pull a card from your deck of excuses and people eat it up like they&#8217;ve been smoke&#8217;n pot the past 12 hours and it&#8217;s the only thing left in the house.</p>
<p>Well, you can place TELoE on the side of we&#8217;re tired of eating the shit you call progress.</p>
<p>I could go into this rant about release cycles, the type of content that&#8217;s repeatable versus the bullshit content Funcom has been releasing that&#8217;s maybe worth only doing once.. but I think I&#8217;d rather just quote some folks from my guild.</p>
<p>Here is a subscription cancel reason:</p>
<blockquote><p>There has been no new endgame content in forver. Xib was fun. CN was bad but at least a worthwhile loot pinata. Iron tower is neither and was barely amusing the first time through.</p>
<p>I have little hope for T3 due to the travesty that raid balancing/bugfixing/itemization has been in T2/T1. Population is awful and solid guilds have been dwindling for months. My guild had full raids at the beginning of the summer, but Aion etc. + no new endgame content has sucked many players away. I&#8217;m tired of sticking around in a game I don&#8217;t want to play anymore out of loyalty, and asking other core members to do the same &#8211; of asking them to train new people every week who will loot and then disappear in two weeks.</p>
<p>I might resub for T3 or the expansion, but I&#8217;m not dropping $100+ on the current game plus what might end up being more of the same incredibly slow development cycle with spotty moments of good gameplay.</p>
<p>You have a good product, but you&#8217;re just not catering to me, the end-game raider.</p></blockquote>
<p>Here&#8217;s another guildmate stating his opinion&#8230; </p>
<blockquote><p>I&#8217;ll confess. Logging in sucks. I pretty much only login to raid because I don&#8217;t care to alt in this game (I have a few, several 80 or close to, but nearly not as much as many of you). The 6 man content takes what feels like 20 years to release and a few hours to enjoy. Usually I go &#8220;Well, that was interesting from a design standpoint, but there&#8217;s no reason to do that again&#8221;.</p>
<p>Raiding, in any game really, is usually pretty cool. You get all these people together, do cool shit and get stuff that enables you to do other cool shit. So, let&#8217;s break it down into a formula:</p>
<p>Cool people + Goals + Stuff that enables more awesomeness = Win</p>
<p>We still have cool people, but there aren&#8217;t any goals because Funcom hasn&#8217;t released anything worth doing since Wing 3 opened.. and there is no progression because end game raiding has taken a back seat.. to what I&#8217;m not sure because it seems all sections of the game are being ignored almost equally.</p></blockquote>
<p>And another&#8230;</p>
<blockquote><p>I&#8217;ve generally played the silent partner in TELOE and have avoided these conversations (two cooks in the kitchen and all that), but I suppose it&#8217;s my turn to chip in. I&#8217;ve been at this MMO thing a long ass time now (about 10 and a half years apparently), and it&#8217;s fair to say that I&#8217;ve pretty much seen it all. I can tell you the most important thing I&#8217;ve learned is that when you stop logging in to have fun, and instead do it out of a percieved responsibility to the others you&#8217;re playing with, it&#8217;s time to wrap it up. We&#8217;ve got a good core group of people here (including many of the people who aren&#8217;t officially &#8220;core&#8221;), and I&#8217;d hate to have people start resenting each other for feeling forced to do something they no longer enjoy. The game had promise, but it&#8217;s just not meeting our needs and slamming our heads into a brick wall on a nightly basis is going to do more harm than good. My play time recently has taken a nose dive, and even with that, I&#8217;ve found myself looking for excuses to not log in on the nights I&#8217;m actually available. It&#8217;s just not fun anymore &#8230; and I&#8217;d imagine everyone in the guild (if not the entire game) is feeling the same way.</p></blockquote>
<p>So yea, suck it pretty much sums it up.  How about if I go play a game that has shitloads of group content, shitloads of MEANINGFUL gear that doesn&#8217;t have a one size fits all situations of a given genre attitude?</p>
<p>Yea, how about I go give those guys my money instead you.  That&#8217;s a great idea.</p>
<p><img src=/media/ddo_logo.jpg></p>
<p>Oh wait, it&#8217;s free!</p>
<p>When T3 comes out we&#8217;ll check it out.  We&#8217;ll check out House of Crom and the expansion, but if it&#8217;s the same brand of crap we have now it&#8217;ll only be worth doing once and probably not even worth touching a raid zone.  Raiding without consistent new content is pointless.</p>
]]></content:encoded>
			<wfw:commentRss>http://evilleague.org/?feed=rss2&amp;p=308</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Screw your little fairy game&#8230;</title>
		<link>http://evilleague.org/?p=306</link>
		<comments>http://evilleague.org/?p=306#comments</comments>
		<pubDate>Mon, 12 Oct 2009 02:07:09 +0000</pubDate>
		<dc:creator>Amalric</dc:creator>
				<category><![CDATA[Recruiting]]></category>

		<guid isPermaLink="false">http://evilleague.org/?p=306</guid>
		<description><![CDATA[TELoE is recruiting able bodied raiders. We&#8217;re very interested in healers and Demos and are always interested in DPS who doesn&#8217;t suck. Tanks are welcome to apply as well, but you should have an in-guild sponsor.]]></description>
			<content:encoded><![CDATA[<p>TELoE is recruiting able bodied raiders.  We&#8217;re very interested in healers and Demos and are always interested in DPS who doesn&#8217;t suck.  Tanks are welcome to apply as well, but you should have an in-guild sponsor.</p>
]]></content:encoded>
			<wfw:commentRss>http://evilleague.org/?feed=rss2&amp;p=306</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[22:35:49] Leviathus died.</title>
		<link>http://evilleague.org/?p=271</link>
		<comments>http://evilleague.org/?p=271#comments</comments>
		<pubDate>Fri, 28 Aug 2009 19:23:53 +0000</pubDate>
		<dc:creator>Amalric</dc:creator>
				<category><![CDATA[Propaganda]]></category>

		<guid isPermaLink="false">http://evilleague.org/?p=271</guid>
		<description><![CDATA[What this should be is a some self patting on the back for coming together as a guild and progressing through all of T2 content without any hand holding, outside help or any ghetto bullshit tactics in ~3 months.. but it&#8217;s not going to be. Stock Footage! Instead this is going to be a story [...]]]></description>
			<content:encoded><![CDATA[<p>What this should be is a some self patting on the back for coming together as a guild and progressing through all of T2 content without any hand holding, outside help or any ghetto bullshit tactics in ~3 months.. but it&#8217;s not going to be.</p>
<div align=center>
<img src="http://evilleague.org/media/leviathus-down.jpg" alt="Leviathus Down" /><br />
<font size=-2><em>Stock Footage!</em></font></div>
<p>Instead this is going to be a story and release of frustration by how we got screwed by a buggy game.  I mean, &#8220;screwed&#8221; should be relative here as this is a game.  Nobody died.  Nations didn&#8217;t nuke each other and it&#8217;s not like we&#8217;re not going to kill him again next week; however, it certainly isn&#8217;t fun that your guild experiences their first significant raid loot bug on the last encounter currently in the game.</p>
<p><font size=+1>OMG Story Time!</font></p>
<p>After a 1% wipe and respawns, we clear back into Leviathus&#8217; room and down him with some relative ease.  There&#8217;s the sigh of relief that we&#8217;re done progressing, some brief celebratory whatever in guild chat and in raid and then I notice there&#8217;s no chest.  Someone else notices that the quest didn&#8217;t update.  The specter refuses to talk to anyone, presumably because the quest never updated.</p>
<p>So, WTF gives?</p>
<p>About the only thing you can possibly do, knowing full well what the action is going to be, is to petition.  The mandate comes out &#8220;Raid, petition this bullshit.&#8221; and in flies 20 some odd petitions for Leviathus.  The usual hour or so passes and the petition is finally answered.</p>
<p><img src="media/leviathus/gm_1.jpg"></p>
<p>Why thank you GM sir for your stock script response.  It just so happens I&#8217;m in a safe spot and I&#8217;m ready to &#8220;give you the know&#8221; (thanks random guy from Bangalore for an awesome quote). </p>
<p><img src="media/leviathus/gm_2.jpg"></p>
<p>We killed Leviathus, everybody was in the room, at his feet, 1%, then 0% and he&#8217;s then dead.  Specter spawns, we get boned on the rest of it.</p>
<p><img src="media/leviathus/gm_3.jpg"></p>
<p>Did you not listen to what I said?  No, nobody went LD, there were maybe four people dead total, everybody else was humping him minus the dancing bears.  Nobody got credit, nothing dropped.</p>
<p><img src="media/leviathus/gm_4.jpg"></p>
<p>I will copy and paste what I just said for you if it will make it more clear.</p>
<p><img src="media/leviathus/gm_5.jpg"></p>
<p>Well, that&#8217;s pretty swell.  I imagined it would have gone this way and I do understand you&#8217;re a cog in the machine, but this is a pretty BS support policy.  I do know GM&#8217;s have been abused in the past, but the correct answer is not to say &#8220;F U Mr Consumer&#8221; but rather to fix the logging and have your developers enable the GMs and give you the power to do something <strong>useful</strong>.  I know for a fact that your XML scripts for encounters have debug output, maybe you should look at one of those.  So, either way, just tell your management that they suck ass and they need to enable you to do your job.</p>
<p><img src="media/leviathus/gm_6.jpg"></p>
<p>Well, what can you do?  You can set the petition to raid via pet, what&#8217;s the point of petitioning for a raid if you can&#8217;t do anything about it to begin with?</p>
<p><img src="media/leviathus/gm_7.jpg"></p>
<p>Oh, I see.  The generic customer service face and someone to beat up.  It&#8217;d be easier to just submit a bug report and go about your day.</p>
<p><img src="media/leviathus/gm_8.jpg"></p>
<p>Hey, you too!</p>
<p>Soooooo, anyway&#8230;  It&#8217;s not like my experience is any different than any of you other folks out there who have petitioned the same damn thing on different/the same mobs many times before me.</p>
<div align=center>
<img src="http://evilleague.org/media/leviathus/kiss_our_ass.jpg" alt="Kiss it!" /> </p>
<p><font size=+1>How about you kiss our collective asses?</font>
</div>
<div align=center>
<img src="http://evilleague.org/media/leviathus/slash_rude.jpg" alt="Unf" /><br />
<font size=-1><em>I&#8217;m old school since I still have my slave ink.. UNF</em></font></div>
<p>Oh, so much drama and nerd rage!  It&#8217;s an outlet I suppose.  If I/we didn&#8217;t do it here, who knows.  I might cruise around town looking for kittens, puppies or POTENTIAL children and take it out on them.</p>
<p><font size=+1>Quotes and More Rambling!</font><br />
<img src="media/leviathus/lev_quotes.jpg"></p>
<div align=center>
<img src="http://evilleague.org/media/leviathus/gay_fantasy.jpg" alt="Dreamy" /></div>
<p>While riding on my white stallion with nothing but a bit of hide to cover my unmentionables (cock, lol)&#8230; living out my gay fantasies&#8230; I noticed that the animation is rather unkind to what would be your junk if you weren&#8217;t anything but a Ken lump.  Literally, you pound your non existent man parts into the saddle like some desperate puppy on someone&#8217;s leg.  I imagine it&#8217;s a good thing male characters don&#8217;t have sex organs as everybody would have a broken cock and/or busted testicles by the time you were 80.  It&#8217;s not like that hide gives you any, much needed support.  Please add better undergarments for dudes in the expansion or at least make it so we don&#8217;t pile drive our would be cocks into the mount.</p>
<p>Thanks!</p>
]]></content:encoded>
			<wfw:commentRss>http://evilleague.org/?feed=rss2&amp;p=271</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Leviathus Down: A placeholder</title>
		<link>http://evilleague.org/?p=266</link>
		<comments>http://evilleague.org/?p=266#comments</comments>
		<pubDate>Fri, 28 Aug 2009 03:09:59 +0000</pubDate>
		<dc:creator>Amalric</dc:creator>
				<category><![CDATA[Propaganda]]></category>

		<guid isPermaLink="false">http://evilleague.org/?p=266</guid>
		<description><![CDATA[It&#8217;s dead. Depending on how our petition goes will dictate the tone of the rest of this post. The petition queues are pretty shitty at the moment, so I doubt we&#8217;re going to get an answer any time soon. Just as I figured &#8212; the petition was a big &#8220;We can&#8217;t do anything for you.&#8221; [...]]]></description>
			<content:encoded><![CDATA[<div align=center><img src="media/leviathus-down.jpg"></div>
<p>It&#8217;s dead.</p>
<p>Depending on how our petition goes will dictate the tone of the rest of this post.  The petition queues are pretty shitty at the moment, so I doubt we&#8217;re going to get an answer any time soon.</p>
<p>Just as I figured &#8212; the petition was a big &#8220;We can&#8217;t do anything for you.&#8221;</p>
<p>It&#8217;s late and this home page update will require some tender loving care to put together.  It&#8217;s not the GM&#8217;s fault by any means.  He&#8217;s a cog in the machine, doing what he&#8217;s told (thanks to the assholes that took advantage of previous GM&#8217;s good will).  But I can have fun with it anyway.</p>
]]></content:encoded>
			<wfw:commentRss>http://evilleague.org/?feed=rss2&amp;p=266</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Athyr Bast Down</title>
		<link>http://evilleague.org/?p=263</link>
		<comments>http://evilleague.org/?p=263#comments</comments>
		<pubDate>Wed, 26 Aug 2009 02:57:28 +0000</pubDate>
		<dc:creator>Amalric</dc:creator>
				<category><![CDATA[Propaganda]]></category>

		<guid isPermaLink="false">http://evilleague.org/?p=263</guid>
		<description><![CDATA[Athyr Bast dropped tonight with minimal effort (which is par for the course). We were doing fairly well on Leviathus as well, making some solid progress but we were running late and people started to turn into pumpkins. Maybe next time.]]></description>
			<content:encoded><![CDATA[<p>Athyr Bast dropped tonight with minimal effort (which is par for the course).  We were doing fairly well on Leviathus as well, making some solid progress but we were running late and people started to turn into pumpkins.</p>
<p>Maybe next time.</p>
<div align=center><img src="media/athyr-bast-down.jpg"></div>
]]></content:encoded>
			<wfw:commentRss>http://evilleague.org/?feed=rss2&amp;p=263</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wing 3 Opened</title>
		<link>http://evilleague.org/?p=252</link>
		<comments>http://evilleague.org/?p=252#comments</comments>
		<pubDate>Mon, 24 Aug 2009 04:00:15 +0000</pubDate>
		<dc:creator>Amalric</dc:creator>
				<category><![CDATA[Propaganda]]></category>

		<guid isPermaLink="false">http://evilleague.org/?p=252</guid>
		<description><![CDATA[Chatha was a lot easier than I figured. Tonight was the first night we&#8217;ve really spent any time on him and it all came together rather quickly. Good job all that attended on listening, adjusting and sticking to assignments. Not bad for a guild that doesn&#8217;t pay attention to or use stock strats. All you [...]]]></description>
			<content:encoded><![CDATA[<p>Chatha was a lot easier than I figured.  Tonight was the first night we&#8217;ve really spent any time on him and it all came together rather quickly.  Good job all that attended on listening, adjusting and sticking to assignments.  Not bad for a guild that doesn&#8217;t pay attention to or use stock strats.  All you need is a combat log and half a brain stem and you can figure everything out on your own, which is well over half the fun.  Farm is boring and loot is for little girls who didn&#8217;t get enough barbie when they were younger.</p>
<div align=center><img src="media/chatha_down.jpg"><br /><font size=-2><em>Dead Demon</em></font></div>
]]></content:encoded>
			<wfw:commentRss>http://evilleague.org/?feed=rss2&amp;p=252</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
