<?xml version="1.0" encoding="utf-8"?>
<!-- If you are running a bot please visit this policy page outlining rules you must respect. http://www.livejournal.com/bots/ -->
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:lj="http://www.livejournal.com">
  <id>urn:lj:livejournal.com:atom1:webrunner</id>
  <title>ADVENTURERS!! II: The Cursed Mask and the Sword of Reality devblog</title>
  <subtitle>Currently developing an entertainment software product</subtitle>
  <author>
    <name>webrunner</name>
  </author>
  <link rel="alternate" type="text/html" href="http://webrunner.livejournal.com/"/>
  <link rel="self" type="text/xml" href="http://webrunner.livejournal.com/data/atom"/>
  <updated>2008-04-25T19:57:52Z</updated>
  <lj:journal userid="7226" username="webrunner" type="personal"/>
  <link rel="service.feed" type="application/x.atom+xml" href="http://webrunner.livejournal.com/data/atom" title="ADVENTURERS!! II: The Cursed Mask and the Sword of Reality devblog"/>
  <link rel="hub" href="http://pubsubhubbub.appspot.com/"/>
  <entry>
    <id>urn:lj:livejournal.com:atom1:webrunner:48781</id>
    <link rel="alternate" type="text/html" href="http://webrunner.livejournal.com/48781.html"/>
    <link rel="self" type="text/xml" href="http://webrunner.livejournal.com/data/atom/?itemid=48781"/>
    <title>Build Update</title>
    <published>2008-04-25T19:50:52Z</published>
    <updated>2008-04-25T19:57:52Z</updated>
    <category term="adv2"/>
    <category term="thegame"/>
    <content type="html">Yeah, I've got most of the stuff I was talking about yesterday in place, except fixing that one minor bug in the Journal.&amp;nbsp; Sound is in, thanks to &lt;a href="http://www.soundsnap.com"&gt;Soundsnap&lt;/a&gt; and &lt;a href="http://www.pdsounds.org"&gt;pdsounds&lt;/a&gt;, offering free sound samples to use, and &lt;a href="http://www.openal.org"&gt;OpenAL&lt;/a&gt; providing the library!&lt;br /&gt;&lt;br /&gt;Anyway, about the sound system:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;I scrapped the part with the list of samples- now it just registers by filename in the various places it's called&lt;/li&gt;&lt;li&gt;It keeps any buffer it creates, unless it is cleared (which it does upon entering a new area, and such).&amp;nbsp; it basically acts as a caching system.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;It uses the first sound source (of which there is a limited number.. 20) it can find that's useful.&amp;nbsp; If it can't find anything it fails&lt;/li&gt;&lt;li&gt;BG is a special source, although it counts towards the 20.&amp;nbsp; If you try to play a new background music it'll stop the old one first.&lt;/li&gt;&lt;li&gt;I still need to add a timing feature for sound so that they can be properly timed (like special effects)&lt;/li&gt;&lt;li&gt;monsters and items can have their own 'hit' sounds.&lt;/li&gt;&lt;li&gt;Skills can have sounds, played at any part as part of the command list&lt;/li&gt;&lt;li&gt;Area scripting also allows the music to change and for sounds to play (and looping sound samples is also supported here, as well as stopping all sound)&lt;/li&gt;&lt;li&gt;I don't have the code to play sounds in the subscreen done yet (such as when using healing items)&lt;/li&gt;&lt;li&gt;the title screen music, miss sound effect, and victory theme are all coded in defines for now, since they're system-wide and not dependant on anything in the content.&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;And, regarding Journal:&lt;ul&gt;&lt;li&gt;It loads a big string, splits it by line, figures out wrapping and allows scrolling using the keyboard (although that's not all properly done yet)&lt;/li&gt;&lt;li&gt;There's a file to define which ones are available, and it uses it's position in the file to determine the order&lt;/li&gt;&lt;li&gt;The code to 'award' things such as when talking to someone or getting journal pages is not yet in place&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;Here's the build: &lt;a href="http://www.emperorwebrunner.com/adv2/builds/adv2_20080425_1.zip"&gt;adv2_20080425_1.zip&lt;br /&gt;&lt;/a&gt;&lt;br /&gt;Here's the required Sound Pack, which I'm not going to update as often since it's big: &lt;a href="http://www.emperorwebrunner.com/adv2/builds/sound_20080425_1.zip"&gt;sound_20080425_1.zip&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Here's the OpenAL Driver pack if you don't already have a game that installed it for you already: &lt;a href="http://www.emperorwebrunner.com/adv2/builds/oalinst.exe"&gt;oalinst.ex&lt;/a&gt;</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:webrunner:48435</id>
    <link rel="alternate" type="text/html" href="http://webrunner.livejournal.com/48435.html"/>
    <link rel="self" type="text/xml" href="http://webrunner.livejournal.com/data/atom/?itemid=48435"/>
    <title>Update, sorta</title>
    <published>2008-04-24T14:45:28Z</published>
    <updated>2008-04-24T14:45:28Z</updated>
    <category term="adv2"/>
    <category term="thegame"/>
    <content type="html">I haven't posted a new build in a while, but unlike the other times that doesn't mean i haven't been working on it.&amp;nbsp; I've been working on a few sub-systems which aren't yet ready to show:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;The Journal screen.&lt;br /&gt;I had to find a wrap-supporting code snippet that I could modify into a "scrolling text" thing, which I've largely done.&amp;nbsp; It still has some problems with eating the character immediately after a carriage return, but that should be relatively easy to fix.&lt;/li&gt;&lt;li&gt;Sound support using OpenAL&lt;br /&gt;This is a big thing, since it ties into everything.. I'm still getting my head around the way the "buffers" and "sources" work.&amp;nbsp; I've got it playing some test sounds, but I haven't finished building the Manager which will:&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Load a text file containing all the relevant samples&lt;/li&gt;&lt;li&gt;Load them into a buffer when they're called, using the loading code I already have (which supports pack files)&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Put them into one of X sources when they need to be played&lt;/li&gt;&lt;li&gt;Remove them from the source when playing is complete, so I can 'juggle' the limited number of sources I have.&lt;/li&gt;&lt;/ol&gt;&lt;/li&gt;&lt;/ul&gt;</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:webrunner:48311</id>
    <link rel="alternate" type="text/html" href="http://webrunner.livejournal.com/48311.html"/>
    <link rel="self" type="text/xml" href="http://webrunner.livejournal.com/data/atom/?itemid=48311"/>
    <title>ADV2: OH MY GOD AN UPDATE!?</title>
    <published>2008-03-18T22:50:48Z</published>
    <updated>2008-03-18T22:53:03Z</updated>
    <category term="adv2"/>
    <category term="programming"/>
    <category term="thegame"/>
    <content type="html">What?&amp;nbsp; It's been months upon months, but I've actually gotten some progress done on the game.&amp;nbsp; Isn't that ridiculous? &lt;a name="cutid1"&gt;&lt;/a&gt;&lt;div class="ljcut" text="Yes, it is.."&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;It's odd, coming back to a project after so long.&amp;nbsp; You forget the layout of the files so you end up having to read your own code.&amp;nbsp; I actually discovered a bug really quickly that I didn't even know was there, I just saw it since I wasn't tunnel-visioned from coding before.&lt;br /&gt;&lt;br /&gt;Anyway, today's update is.. EQUIPMENT.&amp;nbsp; Yes!&amp;nbsp; Go into the menu, and the equip screen, and you can now equip some items to the various characters:&lt;br /&gt;&lt;br /&gt;&lt;img src="http://www.emperorwebrunner.com/adv2/screenshots/footbag.jpg" alt="" /&gt;&lt;br /&gt;&lt;br /&gt;Seems.. familiar somehow&lt;br /&gt;&lt;br /&gt;Later, I finished the system which previews stat changes:&lt;br /&gt;&lt;br /&gt;&lt;img src="http://www.emperorwebrunner.com/adv2/screenshots/statboosts.jpg" alt="" /&gt;&lt;br /&gt;A rusty plate in the hand is worth 4 burlap robes in the bush.&amp;nbsp; Or something?&lt;br /&gt;&lt;br /&gt;There's some armor that works on everyone, and some that only work on Protagonist and Justica (as it's heavy armor).&amp;nbsp; There's also one exra staff that has a +1000 hp bonus.&lt;br /&gt;&lt;br /&gt;You'll also notice the item descriptions on the bottom there.&lt;br /&gt;&lt;br /&gt;As another aside, I've moved all the text in the Menu screen to the strings file.&lt;br /&gt;&lt;br /&gt;And &lt;a href="http://www.emperorwebrunner.com/adv2/builds/20080318_1800.zip"&gt;here's&lt;/a&gt; the download link.&lt;/div&gt;</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:webrunner:48114</id>
    <link rel="alternate" type="text/html" href="http://webrunner.livejournal.com/48114.html"/>
    <link rel="self" type="text/xml" href="http://webrunner.livejournal.com/data/atom/?itemid=48114"/>
    <title>Capcom Store - Stay Away</title>
    <published>2007-12-18T13:49:19Z</published>
    <updated>2007-12-18T13:49:50Z</updated>
    <category term="capcom"/>
    <category term="consumer"/>
    <category term="ripoff"/>
    <content type="html">At Capcom's Online Store (&lt;a href="http://shop.capcom.com/store/capcomus/DisplayStoreHomePage"&gt;http://shop.capcom.com/store/capcomus/DisplayStoreHomePage&lt;/a&gt;) they had a deal - pre-order the new Phoenix Wright game and get a free plush Phoenix.&amp;nbsp; I ordered two, one for me and one for my friend. &lt;br /&gt;  &lt;br /&gt;  The game's release date came and went, nothing.&amp;nbsp; Unable to find a phone number for support, I contacted their support page.&lt;br /&gt;  &lt;br /&gt;  After sending a couple of emails without a response, I received a message (sent to everyone who had pre-ordered I assume) saying they were sorry, and here was some compensation. &lt;br /&gt;  &lt;br /&gt;  Unfortunately the compensation was useless - it was a 5% coupon code, only usable in November.&amp;nbsp; Why would I order something from them when I still had no way of knowing I would receive the first thing?&lt;br /&gt;  &lt;br /&gt;  Anyway, they promised it would ship "early november".&amp;nbsp; Mid november hit, and I sent another email, with no response.&amp;nbsp; I sent another one, and they just told me, sorry it's backordered.&amp;nbsp; I sent another email asking if there was a reason it was backordered and when I could expect it.&amp;nbsp; Then, insultingly, I received THE SAME form letter telling me it was backordered.&amp;nbsp; The original email&amp;nbsp; they sent was still visible in the reply quote text, but they sent it to me again.&lt;br /&gt;  &lt;br /&gt;  I then sent another email complaining about my email not being read.&amp;nbsp; And got no response.&amp;nbsp; I sent another, and four days later received an email saying that the game shipped.&lt;br /&gt;  &lt;br /&gt;  I said, okay, finally.&lt;br /&gt;  &lt;br /&gt;  I received it last week, but there were no plush toys.&amp;nbsp; Furious, I sent another email outlining how I've been wronged every step in the process and I demand compensation.&amp;nbsp; I sent another, and another.&amp;nbsp; I finally got a response- and it just said, be patient, the game shipped.&amp;nbsp; WELL YES.&amp;nbsp; It shipped.&amp;nbsp; I have it, but the order was NOT COMPLETE.&lt;br /&gt;  &lt;br /&gt;  I caution everyone never to shop at the Capcom Online Store, or any Digital River run store again - and I caution Capcom to find a provider that can actually provide the service they promise.</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:webrunner:47569</id>
    <link rel="alternate" type="text/html" href="http://webrunner.livejournal.com/47569.html"/>
    <link rel="self" type="text/xml" href="http://webrunner.livejournal.com/data/atom/?itemid=47569"/>
    <title>ECUADOR!</title>
    <published>2007-09-20T00:15:34Z</published>
    <updated>2007-09-20T14:13:04Z</updated>
    <content type="html">There are things you don't expect are going to happen when you get up in the morning.&lt;br /&gt;&lt;br /&gt;For instance, receiving an email from &lt;a href="http://www.radiocity.com.ec"&gt;a radio station in Ecuador &lt;/a&gt;about being interviewed on the show about superheroes.&lt;br /&gt;&lt;br /&gt;If you want to hear the interview, we made a &lt;a href="http://www.emperorwebrunner.com/junk/Runner_in%20Ecuador.mp3"&gt;recording&lt;/a&gt;...&amp;nbsp; it might not be the best quality though, I'm going to ask if they can send me a disk or something.&lt;br /&gt;&lt;br /&gt;But yeah... probably the most surreal thing to happen to me this year.&lt;br /&gt;&lt;br /&gt;Edit: Fixed spelling of Ecuador.</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:webrunner:47316</id>
    <link rel="alternate" type="text/html" href="http://webrunner.livejournal.com/47316.html"/>
    <link rel="self" type="text/xml" href="http://webrunner.livejournal.com/data/atom/?itemid=47316"/>
    <title>The Game: The Name</title>
    <published>2007-08-31T14:43:18Z</published>
    <updated>2007-08-31T14:43:18Z</updated>
    <category term="adv2"/>
    <category term="thegame"/>
    <content type="html">To lead off right now I'd like to make an announcement.  The game is, and always has been ADVENTURERS 2.  The full name of the game is- ADVENTURERS!! II: The Cursed Mask and the Sword of Reality&lt;br /&gt;&lt;br /&gt;What, you want to see the logo?  As a wallpaper?  Well, if &lt;a href="http://www.emperorwebrunner.com/adv2/graphics/logo_wall_1440_4.jpg"&gt;You insist..&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Some facts: The three characters currently in game are products of the canonical couples from ADV! - Protagonist is Karn and Lumi's son, Dashijiru is Drecker and Karashi's son, and Justica is the offspring of Tesla and Ardam.&lt;br /&gt;&lt;br /&gt;The build this time, I built a few days ago but never got around to posting it.&amp;nbsp; New features are listed below.&lt;br /&gt;&lt;a href="http://www.emperorwebrunner.com/adv2/builds/20070825_1800.zip"&gt;DOWNLOAD BUILD&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Title screen (with menu)&lt;/li&gt;&lt;li&gt;You can now use potions at all from the menu screens&lt;/li&gt;&lt;li&gt;Ditto spells&lt;/li&gt;&lt;li&gt;Learning spells is implemented (try levelling protagonist up and seeing the spells in the menu)&lt;/li&gt;&lt;li&gt;There's a few random bug fixes&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;I've got a report that the game can crash when you click an item in the item menu, neither they nor me were able to reproduce this bug, but if you see it, let me know.</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:webrunner:46958</id>
    <link rel="alternate" type="text/html" href="http://webrunner.livejournal.com/46958.html"/>
    <link rel="self" type="text/xml" href="http://webrunner.livejournal.com/data/atom/?itemid=46958"/>
    <title>More Toronto facts!</title>
    <published>2007-08-29T01:16:00Z</published>
    <updated>2007-08-29T01:16:00Z</updated>
    <category term="toronto"/>
    <category term="life"/>
    <content type="html">- The Taste of the Danforth is severely overcrowded.&amp;nbsp; I think they need to expand it a bit somehow.&lt;br /&gt;- Someone really, really loves one way streets.&lt;br /&gt;- Try all the doors HARD before you assume you're stuck in the stairway of a parking garage.&lt;br /&gt;- Spaghetti Factory = very good.</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:webrunner:46642</id>
    <link rel="alternate" type="text/html" href="http://webrunner.livejournal.com/46642.html"/>
    <link rel="self" type="text/xml" href="http://webrunner.livejournal.com/data/atom/?itemid=46642"/>
    <title>Things Learned in Toronto</title>
    <published>2007-08-09T23:45:40Z</published>
    <updated>2007-08-09T23:45:40Z</updated>
    <content type="html">I spent the last part of the weekend in Toronto with Nicole.  We went shopping, and went to Ribfest.  &lt;br /&gt;&lt;br /&gt;I learned these things:&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;At Ribfest: Just because a rib place won last year doesn't mean this year they have ribs that are even halfway decent.&lt;/li&gt;&lt;li&gt;At Computer Stores: Most computer store owners have no clue if laptop DDR downclocks.&lt;/li&gt;&lt;li&gt;There are parts of Toronto where there are one way streets as far as the eye can see, and they change direction mid way through.  It's like living Chu Chu Rocket.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;There are some sketchy dealings at parking lots.  The sign can say "$2.65 per half hour" but what that actually means is "$10 all day screw the rest of the sign".&lt;/li&gt;&lt;li&gt;Silver Snail closes at 6 on tuesdays.  I found this fact out at 6:30 after finding parking.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;There's capsule toy mario DS styluses.  I got a bullet bill.&lt;/li&gt;&lt;li&gt;Carnival games are still as sketchy as they always were.  There's no actual relationship depending on what you win and how many times you actually win, it seems.&lt;/li&gt;&lt;li&gt;a lot of games = a lot of customs&lt;/li&gt;&lt;li&gt;I know where to go if I want to buy a model of R-2 Powered now.  Too bad I don't care about R-2 Powered.  if it was R-1, maybe...&lt;/li&gt;&lt;li&gt;Venus versus Virus is a pretty good manga&lt;/li&gt;&lt;li&gt;It's hard to find a place to buy floppies now a days&lt;/li&gt;&lt;li&gt;Compusmart shut down all it's toronto stores.  I found this out after searching for one for an hour&lt;/li&gt;&lt;li&gt;&lt;span style="text-decoration: underline;"&gt;&lt;/span&gt;Hernando's Hideaway is a really good restaurant - best mexican I've ever had&lt;/li&gt;&lt;li&gt;Speghetti Factory + Closed due to power problem = Annoying&lt;/li&gt;&lt;li&gt;Parking is HELL&lt;/li&gt;&lt;li&gt;Rickard's Honey Brown isn't bad.&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;br /&gt;And one thing learned by another person, at Factory Direct:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Defective ram is still defective even if you tell the customer "It's your computer" before letting them finish telling you what's wrong with it.&lt;/li&gt;&lt;/ul&gt;</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:webrunner:46567</id>
    <link rel="alternate" type="text/html" href="http://webrunner.livejournal.com/46567.html"/>
    <link rel="self" type="text/xml" href="http://webrunner.livejournal.com/data/atom/?itemid=46567"/>
    <title>Menu, please.</title>
    <published>2007-08-04T22:46:12Z</published>
    <updated>2007-08-04T22:47:34Z</updated>
    <category term="thegame"/>
    <content type="html">&lt;div style="text-align: left;"&gt;Today's a great day, if yo like menus&lt;br /&gt;&lt;/div&gt;&lt;a href="http://www.emperorwebrunner.com/~mshallow/builds/20070804_1700.zip"&gt;DIAL M FOR MENU!&lt;/a&gt; &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;FEETURES:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Fixed a combat bug with status effects after a character dies&lt;/li&gt;&lt;li&gt;Added the menus!&amp;nbsp; Press M when walking around&lt;/li&gt;&lt;li&gt;The item menu shows you the list of items, you can't use them yet&lt;/li&gt;&lt;li&gt;Quit quits the game (removed the ability to do so from the menu)&lt;/li&gt;&lt;li&gt;Party lets you switch party members.. double click or hit enter/space on one, and then on another.&amp;nbsp; Use the "nobodies" to create a smaller party.&lt;/li&gt;&lt;li&gt;Back to return to the game&lt;/li&gt;&lt;li&gt;The party lists show up for equip and skills but you cant do anything here yet&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;Upcoming: &lt;br /&gt;&lt;ul&gt;&lt;li&gt;Make more of the menus actually do things&lt;/li&gt;&lt;li&gt;Replace the menus in the combat with these ones (since they work with both mouse and keyboard)&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;br /&gt;Known bugs:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Base 1 won't stay in the party.&amp;nbsp; This is because he's not technically "in" the party but it wasn't checking it.&amp;nbsp; Fixed in my local copy &lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:webrunner:46178</id>
    <link rel="alternate" type="text/html" href="http://webrunner.livejournal.com/46178.html"/>
    <link rel="self" type="text/xml" href="http://webrunner.livejournal.com/data/atom/?itemid=46178"/>
    <title>GAME UPDATE!</title>
    <published>2007-07-22T03:47:44Z</published>
    <updated>2007-07-22T03:48:07Z</updated>
    <category term="thegame"/>
    <content type="html">&lt;a href="http://www.emperorwebrunner.com/~mshallow/builds/20070721_2330.zip"&gt;Here's the new build.&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;There's actually TWO builds since the last one (apparently livejournal failed to post the last one), so you might as well just read the list:&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;New features (20070718)&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;br /&gt;    &lt;li&gt;Equipment can now have triggered skills, such as on-attack or on-damage or some such.  I've added one to Dashijiru's weapon, a 50% chance of gaining some mp back after his turn.&lt;br /&gt;&lt;/li&gt;&lt;br /&gt;    &lt;li&gt;Skills can be set to resist (Poison has a small chance of it) based on arbitrary stats&lt;br /&gt;&lt;/li&gt;&lt;br /&gt;    &lt;li&gt;Skills can have a chance to not fire (see the above 'mp regen" ability.)&lt;/li&gt;&lt;br /&gt;    &lt;li&gt;Status Effects, are handled pretty much identically to weapons (and for now are defined in the weapon file)&lt;br /&gt;&lt;/li&gt;&lt;br /&gt;    &lt;li&gt;I added a walking up animation for Protagonist on the map&lt;br /&gt;&lt;/li&gt;&lt;br /&gt;    &lt;li&gt;Skills can now be set to either target dead or not target dead- I added a life spell to Dashijiru if you want to test it by killing off a party member&lt;/li&gt;&lt;br /&gt;    &lt;li&gt;Added particle effect support (the actual particle engine is built into HGE) - see the healing skill and poison for examples&lt;/li&gt;&lt;br /&gt;    &lt;li&gt;Skills can now modify stats, since I handle dead as a stat (instead of a status effect)  that's how the revive skill works&lt;/li&gt;&lt;br /&gt;    &lt;li&gt;in-combat-only stat modifiers can be done using statname_temp, and until nex turn can be statname_turn&lt;/li&gt;&lt;br /&gt;    &lt;li&gt;Changed the directory structure to be easier to manage&lt;/li&gt;&lt;br /&gt;    &lt;li&gt;Changed the fonts a bit to actually fit all the skills that need to be fit&lt;/li&gt;&lt;br /&gt;    &lt;li&gt;Apparently the latest version of HGE had this all along: press alt-enter to play in full screen&lt;br /&gt;&lt;/li&gt;&lt;br /&gt;&lt;/ul&gt;&lt;br /&gt;New Features: (20070721)&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Added the title screen handler, and removed the HGE logo in debug mode (when compiling in Release mode, it still shows up)&lt;/li&gt;&lt;li&gt;Added the beginnings of the camp screen: hit M when walking around&lt;/li&gt;&lt;li&gt;Added per-hit effects per weapons.&amp;nbsp; Supports both particles and sprites.&amp;nbsp; For the character that throws their weapons, it'll be used for that animation effect too.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Cleaned up losing code (try it out)&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Added the ability to have a skill cast a second skill as an all target, for targeting all monsters.&amp;nbsp; Try Rays of Lights for an example (it's also a good way to test losing)&lt;/li&gt;&lt;li&gt;Started making my own Gui controls (using the hgeGUIObject base class) - the first one is the menu items in the menu (notice the pointing finger)&lt;/li&gt;&lt;li&gt;Cleaned up some of the drawing-special-effect-location-code to use sprite centers instead of the hotspots which are used for sprite positioning&lt;/li&gt;&lt;li&gt;Put in support for absorbing (cast fire on SlimeLeader) or resistance (he has a high holy resistance, too) and Weakness to elements, properly.&amp;nbsp; A defense stat over 255 starts to absorb.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Some stuff I dont have tests in for yet.&lt;/li&gt;&lt;li&gt;Preliminary Unfinished saving code that's currently inaccessable.&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;br /&gt;Known bugs:&lt;ul&gt;&lt;li&gt;Status effect.. effectiveness (say poison damage) currently cant be based on the caster's skill, so poison always does 15 damage.&lt;/li&gt;&lt;li&gt;Sometimes the menu highlights too many items.&lt;/li&gt;&lt;/ul&gt;</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:webrunner:45948</id>
    <link rel="alternate" type="text/html" href="http://webrunner.livejournal.com/45948.html"/>
    <link rel="self" type="text/xml" href="http://webrunner.livejournal.com/data/atom/?itemid=45948"/>
    <title>That was easy</title>
    <published>2007-07-14T22:24:04Z</published>
    <updated>2007-07-14T22:25:10Z</updated>
    <category term="thegame"/>
    <content type="html">I added running and defending.&amp;nbsp; Both of them were very easy to add.&amp;nbsp; Other stuff too, it's really shaping up.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.emperorwebrunner.com/~mshallow/builds/20070714_1715.zip"&gt;Download build&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Feature adds:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Fixed the bug with SlimeA&lt;/li&gt;&lt;li&gt;Added sprite/weapon for third main character - Dashijiru, the emo white mage&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Shuffled the skills around to more match the character data sheet I wrote&lt;/li&gt;&lt;li&gt;Added a few skills, including one with a new effect&lt;/li&gt;&lt;li&gt;Changed the fonts&lt;/li&gt;&lt;li&gt;Added critical hits - it uses a random number compared with the agility of you and the target to determine if it hits.&amp;nbsp;&amp;nbsp; Basically it compares a random based on your agi, with the opponent agi to the power of two.&amp;nbsp; Crits do double damage, and show up bigger.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Added misses, with a similar calculation as above.&amp;nbsp; But it doesn't have a power two, so a miss will happen about 50% of the time given equal agility.&lt;/li&gt;&lt;li&gt;Added a heal spell.&amp;nbsp; Compare Protagonist (mag=2) with Dashijiru (mag=10 +3 for weapon)&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Added the ability to run away.&amp;nbsp; It's based on your entire party's agility, and the agility of the entire monster party.&amp;nbsp; It's rand * agi vs rand * agi * 10&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Added the ability to defend.&amp;nbsp; Any reducable-damage hit is reduced by half until next turn.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Actually I should talk about damage reduction, since I coded that without really putting any in a few versions ago. &amp;nbsp; Damage has an element.&amp;nbsp; it can be "phys" for physical, "magic" for generic magic, "[phys]fire" and such for fire physical, "fire" for fire magical, "other" for irreducable.&amp;nbsp; Phys is reduced by DEF, magic by MDEF, physical fire by def and fire resistance, fire magic by mdef and fire resistance, and other is never reduced.&amp;nbsp; Healing is not subject to these rules, but MP Damage is.&amp;nbsp; It's vaugely a percentage based system- as your def goes up to 255, you reduce up to 99.9% or so.&amp;nbsp; Damage cannot be reduced to zero.&amp;nbsp; I haven't put in absorbing yet.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;known bug: the fire sword attack is fire magic instead of fire physical, and the animation isn't timed properly for Ray of Light.&lt;/li&gt;&lt;/ul&gt;</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:webrunner:45752</id>
    <link rel="alternate" type="text/html" href="http://webrunner.livejournal.com/45752.html"/>
    <link rel="self" type="text/xml" href="http://webrunner.livejournal.com/data/atom/?itemid=45752"/>
    <title>Item Build</title>
    <published>2007-07-14T00:48:04Z</published>
    <updated>2007-07-14T00:48:04Z</updated>
    <category term="thegame"/>
    <content type="html">First off, &lt;a href="http://www.emperorwebrunner.com/~mshallow/builds/20070713_2030.zip"&gt;here's the file&lt;/a&gt; so you can follow along.&lt;br /&gt;&lt;br /&gt;I put in the inventory code.  At least some of it.  Max item stuff isn't coded, but otherwise it works.  Basically, an item is attached to a skill, and it runs the skill as if it were casted when you use the item&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Added inventory&lt;/li&gt;&lt;li&gt;Added ability to heal hp/mp&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Added targeting-ally abilities.&lt;/li&gt;&lt;li&gt;I'm going to change the way target-all abilities work so I've removed the menu option for it.&lt;/li&gt;&lt;li&gt;Added item use code&lt;/li&gt;&lt;li&gt;Added menu items for run and defend, but they don't do anything yet&lt;/li&gt;&lt;/ul&gt;I think next I might focus on getting defend/run working, or getting the camp screen working.  And I do have to get status effects, and trigger skills working sometime soon..</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:webrunner:45418</id>
    <link rel="alternate" type="text/html" href="http://webrunner.livejournal.com/45418.html"/>
    <link rel="self" type="text/xml" href="http://webrunner.livejournal.com/data/atom/?itemid=45418"/>
    <title>If you build it...</title>
    <published>2007-07-10T23:39:56Z</published>
    <updated>2007-07-10T23:39:56Z</updated>
    <category term="thegame"/>
    <content type="html">&lt;a href="http://www.emperorwebrunner.com/~mshallow/builds/20070710_1730.zip"&gt;Download new build&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;I've added a bunch of stuff, here's the rundown:&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Added a sprite/definition for the 2nd main character: Justica&lt;/li&gt;&lt;li&gt;Added the Weapon sprite attachment code.&amp;nbsp; Basically, every frame has a point with a rotation where to draw the weapon, which is drawn seperately allowing a huge number of weapon sprites!&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Added the ItemManager and InventoryItem classes, and the beginnings of the equipment system.&amp;nbsp;&amp;nbsp; The default.sav gives each character a weapon, and items.itm defines the actual items.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;There's no inventory yet, but when you gain items it uses the full name from the string file instead of the ID.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;The victory screens are now in place.&amp;nbsp; Try fighting a few times to gain a level to see how that shows up.&amp;nbsp; I lowered the EXP for the fight, btw.&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;I think next.. either the Inventory system, or begin work n the Camp screen.</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:webrunner:45154</id>
    <link rel="alternate" type="text/html" href="http://webrunner.livejournal.com/45154.html"/>
    <link rel="self" type="text/xml" href="http://webrunner.livejournal.com/data/atom/?itemid=45154"/>
    <title>Some more quick additions</title>
    <published>2007-07-07T19:08:52Z</published>
    <updated>2007-07-07T20:40:05Z</updated>
    <category term="thegame"/>
    <content type="html">&lt;a href="http://www.emperorwebrunner.com/~mshallow/builds/20070707_1500.zip"&gt;New build&lt;/a&gt;.  I'll let the bullets do the talking..&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Replaced the textbox graphic&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Added stats staying outside of battle, and levelling.&amp;nbsp; The level stat gain is defined in the party file at the bottom.&amp;nbsp;  I also made the 2nd NPC heal you if you talk to him.&lt;/li&gt;&lt;li&gt;Added interface graphics in combat&lt;/li&gt;&lt;li&gt;Added a real headshot of Protagonist.&lt;/li&gt;&lt;li&gt;Fixed the intermittant second battle crashing issue, I hope.&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;next up, should be weapon sprites.    &lt;a name="cutid1"&gt;&lt;/a&gt;  


&lt;lj-embed id="1" /&gt;   &lt;lj-embed id="2" /&gt;      </content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:webrunner:45040</id>
    <link rel="alternate" type="text/html" href="http://webrunner.livejournal.com/45040.html"/>
    <link rel="self" type="text/xml" href="http://webrunner.livejournal.com/data/atom/?itemid=45040"/>
    <title>Buildy Buildy Build</title>
    <published>2007-07-06T23:21:02Z</published>
    <updated>2007-07-06T23:26:52Z</updated>
    <category term="thegame"/>
    <content type="html">Some major things, this time.&amp;nbsp; I've finally got most of the "test" values out to files, so now the characters, skills, skill lists, abilities, and everything are loaded from files.&amp;nbsp; Even the party is!&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.emperorwebrunner.com/~mshallow/builds/20070706_1900.zip"&gt;Download Build&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;party.pty loads teh default for each character's stats and stuff.&lt;/li&gt;&lt;li&gt;Skills are listed as the level they have to be to use it, and negative if they dont 'know it' yet but can learn it.&lt;/li&gt;&lt;li&gt;default.sav is a save file- this updates what's been lodaed from party.pty, as well as other information.&amp;nbsp; Essentially, starting a new game is the same as loading a 'default save', so that's how i'm going to handle it.&lt;/li&gt;&lt;li&gt;the main character, Protagonist, now has a preliminary combat sprite.&lt;/li&gt;&lt;li&gt;Bugs involving going into combat a 2nd time are now fixed.&lt;/li&gt;&lt;li&gt;The new Party Manager (party.pty) keeps track of all the characters, so you can add another character to it, and it'll be loaded, but not in the party (since that's chosen from the save file)&lt;/li&gt;&lt;li&gt;Next i'm going to make sure to have the stats go back to the party manager after combat, as well as having levels.&amp;nbsp; There's placeholder code in there for these things already&lt;/li&gt;&lt;li&gt;I also added some extra friendly things: A line at top which says things like the skills being used, as well as using string tables instead of showing iDs all over the place.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;I made the combat text area at the bottom smaller&lt;/li&gt;&lt;/ul&gt;</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:webrunner:44689</id>
    <link rel="alternate" type="text/html" href="http://webrunner.livejournal.com/44689.html"/>
    <link rel="self" type="text/xml" href="http://webrunner.livejournal.com/data/atom/?itemid=44689"/>
    <title>New Build</title>
    <published>2007-07-01T03:21:32Z</published>
    <updated>2007-07-01T03:21:32Z</updated>
    <category term="thegame"/>
    <content type="html">Some more skill/skill effect features today.   &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;I need to eventually get the drawing weapons code in, but that's going to be totally murder....&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;moving the sprite is now possible in a skill.  I've given the slimes an ability that does this&lt;/li&gt;&lt;li&gt;Monsters can now be given skill lists which let them randomly pick the skill they use&lt;/li&gt;&lt;li&gt;effect sprites and moves have two new locations to work from: target_above (or self_above) which is the top of the screen above the target, and target/self_default which is where they are supposed to stand.&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.emperorwebrunner.com/~mshallow/builds/20070630_2300.zip"&gt;Download now&lt;/a&gt;</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:webrunner:44435</id>
    <link rel="alternate" type="text/html" href="http://webrunner.livejournal.com/44435.html"/>
    <link rel="self" type="text/xml" href="http://webrunner.livejournal.com/data/atom/?itemid=44435"/>
    <title>WHAT?  A GAME UPDATE?</title>
    <published>2007-06-11T00:22:08Z</published>
    <updated>2007-06-11T00:22:08Z</updated>
    <category term="thegame"/>
    <content type="html">I recently bought a Server ($150 for a 4-drive p3 xeon box) and finally can start posting these again.&lt;br /&gt;&lt;a href="http://rincewind.hexsci.com/~mshallow/builds/20070610_1945.zip"&gt;Click here to download build 20070610_1945&lt;/a&gt;&lt;br /&gt;This version, the main features added are 1) one thing I forget that I added months ago but never actually uploaded&lt;br /&gt;2) Spell effects.&lt;br /&gt;&lt;br /&gt;Basically, a skill can now have effects added to it.  &lt;br /&gt;&lt;ul&gt;&lt;li&gt;Only sprite animations are supported now.  Eventually particle, and 'beam' sprites will be available as well.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;You can animate based on time, and positions.  EG: Fireball from caster to target, or a series of flames in different locations on the target&lt;br /&gt;&lt;/li&gt;&lt;li&gt;A sprite is given the amount of time it'll animate, AND another time number- this is how long it will take to start.  It accomplishes this by adding the numbers together, and then not doing any drawing/animating until the value is in the 'regular' time.  Eg: 1000 250, counts down from 1250, and starts animating at 1000.&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;Try the Doublefire, Firesword, and Fire1 abilities to see three examples of using the same animated sprite.</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:webrunner:44210</id>
    <link rel="alternate" type="text/html" href="http://webrunner.livejournal.com/44210.html"/>
    <link rel="self" type="text/xml" href="http://webrunner.livejournal.com/data/atom/?itemid=44210"/>
    <title>Anime North and stuff</title>
    <published>2007-06-02T18:04:48Z</published>
    <updated>2007-06-02T18:04:48Z</updated>
    <content type="html">So, I went to Anime North last week.&amp;nbsp; Here's some, as it were, "reporting" of it.&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;I lost my sheet.&amp;nbsp; Fortunately, I was a panelist so...&lt;/li&gt;&lt;li&gt;When I got there after work on Friday, I went to the panelist reg desk instead of the normal reg desk (where I would have to stand in line)&lt;/li&gt;&lt;li&gt;After getting my badge (and a little name sign) I ate, and relaxed a bit before going to the VGCats panel&lt;/li&gt;&lt;li&gt;After the VG Cats panel, Scott got mobbed, and never showed up at the panel right after which was..&lt;/li&gt;&lt;li&gt;Webcomics, with me, and a webcomic fan, and someone who does a print comic that also posts on the web, and a not-present Scott.&lt;/li&gt;&lt;li&gt;I answered some questions about making comics, and then met up with the CMC crew right after.&lt;/li&gt;&lt;li&gt;I made a few sketches for them, and then left to sleep&lt;/li&gt;&lt;li&gt;Nicole was gracious enough to let me stay at her place during the weekend.&amp;nbsp; We went to Golden Griddle, and I had half a sandwich (I didn't know it was going to be so big &amp;gt;_&amp;gt;)&lt;/li&gt;&lt;li&gt;I slept in a bit, and got to the Con in the afternoon by bus/sbway.&amp;nbsp; Basically just hung out with the guys, and shopped a bit.&lt;/li&gt;&lt;li&gt;At like, midnight, I left, and decided once and for all to avoid Kennedy Station in toronto&lt;/li&gt;&lt;li&gt;On sunday, I got some stuff for my friends at the Con (including some plushies for Nicole) and then after the Con me and Nicole went downtown. &lt;br /&gt;&lt;/li&gt;&lt;li&gt;I got some manga books, and found a candy store that sold my favorite semi-nerdy candy: candy lego blocks.&amp;nbsp; They even fit together and everything.&amp;nbsp; I also got some Nintendo mints&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Then we went to an all you can eat Sushi place, and I ate slightlky more than I could eat.&amp;nbsp; &lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;It was a really fun weekend, I got to meet some fans, and hang out with Nicole^^&lt;br /&gt;Anyway, I'm sure I forgot some stuff, so next post, I guess, i'll probably add stuff.</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:webrunner:43786</id>
    <link rel="alternate" type="text/html" href="http://webrunner.livejournal.com/43786.html"/>
    <link rel="self" type="text/xml" href="http://webrunner.livejournal.com/data/atom/?itemid=43786"/>
    <title>A week of stuff</title>
    <published>2007-05-21T04:04:01Z</published>
    <updated>2007-05-21T04:04:01Z</updated>
    <content type="html">I visited Nicole in Toronto last weekend, we played games and I stayed over (and broke the bed I was sleeping on &amp;gt;_&amp;gt;) and she took me around some places downtown.&amp;nbsp; (Actually, she navigated and I drove.&amp;nbsp; Driving in downtown Toronto is fun!&amp;nbsp; for a given value of fun..)&amp;nbsp; I got an import DS game (Jump Ultimate Stars) and she showed me a Korean BBQ place- if you've never been to one, they have a grill built into the table, and they give you raw meat to cook on it.&amp;nbsp; (don't remember the name, Korean Grill maybe?)&amp;nbsp; It's awesome.&amp;nbsp; We went to Korea town afterwards, and I got some snacks (including more emoticon chocolates) and then we went to pacific mall.&amp;nbsp; I almost bought some stuffed mario Mushrooms but didn't.&amp;nbsp; I did get an 8-bit-mario keychain out of a bubble vending machine.&amp;nbsp; It was a fun weekend=)&lt;br /&gt;&lt;br /&gt;The rest of the week has been pretty normal.&amp;nbsp; I cleaned up the apartment and put up a new bookshelf to separate my books and games.&amp;nbsp; With the games all on their own shelf, with so much extra space, it feels like I don't have enough games.&amp;nbsp; It's a weird feeling.&lt;br /&gt;&lt;br /&gt;I went to Tom and Stephie's barbeque tonight, that was fun.&lt;br /&gt;&lt;br /&gt;I can't find the coupons I had for the movie theatre =/&lt;br /&gt;&lt;br /&gt;The RC helicopter that was missing a couple of parts that I bought cheap off a 'returns' table is going well.&amp;nbsp; I actually hit it off the ceiling once.&amp;nbsp; I just need to figure out how to stabilize it better... presumably that's one of the things the missing peice of hard plastic tube did.&lt;br /&gt;&lt;br /&gt;Next week is Anime North.&amp;nbsp; I'm on the Webcomics panel!&amp;nbsp; Whee!&lt;br /&gt;&lt;br /&gt;Heroes season finale is tomorrow, too...&lt;br /&gt;&lt;br /&gt;Also: OMG WTF STARCRAFT 2!</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:webrunner:43652</id>
    <link rel="alternate" type="text/html" href="http://webrunner.livejournal.com/43652.html"/>
    <link rel="self" type="text/xml" href="http://webrunner.livejournal.com/data/atom/?itemid=43652"/>
    <title>What's up</title>
    <published>2007-05-07T02:52:31Z</published>
    <updated>2007-05-07T02:52:31Z</updated>
    <content type="html">Yeah, I haven't really posted here in a while.&amp;nbsp; I was going to keep posting on the game, but then redleaf went down and I haven't decided what I was going to do with that, so uh, woops.&lt;br /&gt;&lt;br /&gt;Anyway, 10xStuff Up With Mes: &lt;br /&gt;&lt;br /&gt;1- I was in a car accident, banged up my bumper, but it was entirely not my fault so I didn't pay anything to get anything fixed&lt;br /&gt;2- Book #1 got published&lt;br /&gt;3- I got a HDTV&lt;br /&gt;4- I got a 360 (gamertag is emperorwebrunnr )&lt;br /&gt;5- Nicole showed me this great sushi place in Toronto.&amp;nbsp; Some of the best Sushi I've ever had, actually.&amp;nbsp;&amp;nbsp; It was a fun night, but I ate too much.&lt;br /&gt;6- Phoenix Wright is awesome&lt;br /&gt;7- I've bought like, one game at full price in the last 4 months, but i've been getting a lot of games.&amp;nbsp; Thanks, Cheap Ass Gamer!&lt;br /&gt;8- 52 ended with a moth eating time.&amp;nbsp; Couldn't have asked for a better series, except maybe wishing that Vic didn't die. &amp;nbsp; Countdown starts this week.&lt;br /&gt;9- I finally got a Question heroclix&lt;br /&gt;10- The new building at work is pretty neat&lt;br /&gt;&lt;br /&gt;I'll be posting on this more often.&amp;nbsp; I hope.</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:webrunner:43437</id>
    <link rel="alternate" type="text/html" href="http://webrunner.livejournal.com/43437.html"/>
    <link rel="self" type="text/xml" href="http://webrunner.livejournal.com/data/atom/?itemid=43437"/>
    <title>webrunner @ 2007-01-27T23:26:00</title>
    <published>2007-01-28T04:30:00Z</published>
    <updated>2007-01-28T04:30:25Z</updated>
    <category term="thegame"/>
    <content type="html">Just a few minor things, changelog is later, I just want to explain one of the changes now:&lt;br /&gt;&lt;br /&gt;I've implemented the begining of the runtime menu system (before, the menus were completely hard-coded).  Granted, the actual menus are still hard coded, but they are hard coded outside of the thing that actually manages the menus- all I have to do is make the skill manager and party managers to be fully in there.&lt;br /&gt;&lt;br /&gt; I haven't quite decided how I want to do in-battle menus, but right now they aren't going to actually support scrolling.  I'd want scrolling later, but right now, using what I have, I can have an as many submenus as I want- so I can have "Magic" and then "Level 1"/"Level 2"/"Level 3" and then "Fire" "Water" etc.  If one list needs more, I can just put a "More" link at the bottom of the list. &lt;br /&gt;&lt;br /&gt;Changes:&lt;br /&gt; &lt;ul&gt;     &lt;li&gt;Fixed that bug from yesterday&lt;br /&gt;&lt;/li&gt;     &lt;li&gt;Protagonist animations for left, right, and standing.  THis means the character transforms when moving up and down, but that's just because I dont have animations done yet.&lt;/li&gt;     &lt;li&gt;Increased size of drawing sprites by 25% as a test&lt;br /&gt;&lt;/li&gt;     &lt;li&gt;Runtime menu system (test it out by selecting 'skills')&lt;/li&gt;      &lt;/ul&gt;&lt;br /&gt;&lt;a href="http://cmc.redleaf.de/projects/27012007_2300.zip"&gt;BUILD&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Next build should be skill system preliminaries</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:webrunner:43061</id>
    <link rel="alternate" type="text/html" href="http://webrunner.livejournal.com/43061.html"/>
    <link rel="self" type="text/xml" href="http://webrunner.livejournal.com/data/atom/?itemid=43061"/>
    <title>Fancy Combat Build!</title>
    <published>2007-01-27T01:32:55Z</published>
    <updated>2007-01-27T01:32:55Z</updated>
    <category term="combat"/>
    <category term="thegame"/>
    <content type="html">New battle systemmy build.&lt;br /&gt;&lt;br /&gt;Next features should be the menu manager and skill managers.&amp;nbsp; After that a party/inventory management system, and equipment maybe?&amp;nbsp; Equipment in battle is going to be hard, but I think I have some ideas for it.&lt;br /&gt;&lt;br /&gt;Anyway, here's the build info:&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Damage calculation using stats (including defence)&lt;/li&gt;&lt;li&gt;Two player characters&lt;/li&gt;&lt;li&gt;Damage counters&lt;/li&gt;&lt;li&gt;Rudamentary menus&lt;/li&gt;&lt;li&gt;EffectManager (used just for damage counters right now)  -will be used for graphical effects and stuff&lt;/li&gt;&lt;li&gt;Pick targets by clicking Fight and then the monster name.&lt;/li&gt;&lt;li&gt;Your turn is up when the player name goes white.&lt;br /&gt; &lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://cmc.redleaf.de/projects/26012007_2020.zip"&gt;BUILD DOWNLOAD&lt;/a&gt;</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:webrunner:42967</id>
    <link rel="alternate" type="text/html" href="http://webrunner.livejournal.com/42967.html"/>
    <link rel="self" type="text/xml" href="http://webrunner.livejournal.com/data/atom/?itemid=42967"/>
    <title>OMG NEW BUILD?!?!?</title>
    <published>2007-01-24T04:43:30Z</published>
    <updated>2007-01-24T05:07:59Z</updated>
    <category term="thegame"/>
    <content type="html">Today's build is very special.&lt;br /&gt;&lt;br /&gt;You see, the first bits of the combat system are in and playable!&lt;br /&gt;A lot is missing, but here's what you need to know&lt;br /&gt;&lt;ul&gt;&lt;li&gt;talk to the lower guy&lt;/li&gt;&lt;li&gt;(btw use ctrl to run on main screen)&lt;/li&gt;&lt;li&gt;press 1, 2, and 3 on keyboard to hit the three slimes (slimea, slimeb, and slimeleader)&lt;/li&gt;&lt;li&gt;the only attack that anyone has is 10 damage.&lt;/li&gt;&lt;li&gt;it's just stick figures.&lt;/li&gt;&lt;/ul&gt;&lt;a href="http://cmc.redleaf.de/projects/23012007_2333.zip"&gt;TODAY'S BUILD!&lt;/a&gt;</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:webrunner:42699</id>
    <link rel="alternate" type="text/html" href="http://webrunner.livejournal.com/42699.html"/>
    <link rel="self" type="text/xml" href="http://webrunner.livejournal.com/data/atom/?itemid=42699"/>
    <title>Workin on Combat</title>
    <published>2007-01-21T02:35:22Z</published>
    <updated>2007-01-21T02:35:22Z</updated>
    <category term="thegame"/>
    <content type="html">Still nothing to show, but I've got SOME combat stuff done.&amp;nbsp; Right now, it loads the combat data files, and can display monster and player sprites on screen, as well as I have the ATB count system in place.&amp;nbsp; There's, as of yet, no skills or abilities or attacking, or AI, but soon I'll be able to start putting that part of the code in.</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:webrunner:42410</id>
    <link rel="alternate" type="text/html" href="http://webrunner.livejournal.com/42410.html"/>
    <link rel="self" type="text/xml" href="http://webrunner.livejournal.com/data/atom/?itemid=42410"/>
    <title>Question and Answers #1</title>
    <published>2007-01-18T17:12:26Z</published>
    <updated>2007-01-18T17:15:15Z</updated>
    <category term="thegame"/>
    <content type="html">I was asked some questions (woo) so I'm going to answer them here for everybody to see:&lt;br /&gt;&lt;br /&gt;&lt;i&gt;1. How exactly do you structure the elements you implement in games? Of course you first go with basic elements such as a sprite walking on a map, and eventually doing stuff, but how do you organize your priority on, say, mechanical and storyline elements? Do you flesh out a combat system first, or develop a spellcasting system that also includes out-of-combat effects?&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;Answer: You really have to prioritize mechanical elements, but having an idea of what the storyline requires helps figure out what your requirements are.&amp;nbsp; I try to make my engines as generic as possible for the genre, though.&amp;nbsp; There's no atomic "plot twist" class, plot and storyline just come from text and animation, and the engine as I'm developing it could be used to make a completely different RPG in terms of tone and story.&lt;br /&gt;&lt;br /&gt;&amp;nbsp; As for combat, the best thing to do is design your combat system first, then design a SKILL system that works into it, but is also flexible enough to work outside of combat (for healing and such).&amp;nbsp; &lt;br /&gt;&lt;br /&gt;But yeah, the important thing is that 99% of the time, there's no such thing as a 'storyline element' on the coding side of a video game, just ways to -display it-.&lt;br /&gt;&lt;br /&gt;&lt;i&gt;2.Speaking about combat...in general, what do you work on more: The capabilities of the heroes or the monsters?&lt;br /&gt;Is it easier to implement monster abilities once you've coded hero abilities, or vice versa?&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;The trick is to make them mostly the same.&amp;nbsp; Fire1 on a party member and Fire1 on a monster should pull from the same data tables and use the same stuff.&lt;br /&gt;&lt;br /&gt;&lt;i&gt;3.When will the next version of your game come out?&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;When there's a playable combat system.&lt;br /&gt;&lt;br /&gt;&lt;i&gt;4.What should we be able to expect of it?&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;A playable combat system.&amp;nbsp; It might just be stick figures but it'll work.&lt;br /&gt;&lt;i&gt;&lt;br /&gt;5. Do you have a generic story/plot already done for that game, and/or are you open to suggestions or other ideas?&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;I have stuff in mind but I may completely change it.&lt;br /&gt;&lt;br /&gt;&lt;i&gt;6.Can/will you implement certain mechanical elements such as...&lt;br /&gt;&lt;br /&gt;-a stealing system?&lt;br /&gt;&lt;br /&gt;&lt;/i&gt;Stealing isn't so hard, a monster just needs a steal table and you add whatever is in the table to your party's inventory&lt;br /&gt;&lt;i&gt;&lt;br /&gt;-a way to summon (temporary) allies?&lt;br /&gt;&lt;br /&gt;&lt;/i&gt;There will be summons, I dont know if there's going to be 'ally' summons a la FFX/FF12, but summon spells for sure will exist.&lt;br /&gt;&lt;i&gt;&lt;br /&gt;-a way to access nifty secret features or neat tricks such as ardam's reverse summon-&amp;gt;"Summon Pantheon"?&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;Secrets will be done, but I don't know if there will be specific battle tricks like that or not.</content>
  </entry>
</feed>
