<?xml version="1.0" encoding="ISO-8859-1"?>
<rss version="2.0">
    <channel>
        <title>Jotdaniel's site</title>
        <link>http://www.byond.com/members/Jotdaniel</link>
        <description></description>
        <lastBuildDate>Sat, 11 Feb 2012 03:27:31 +0000</lastBuildDate>
        <language>en-us</language>
    
                <item>
            <title>Duke Nukem Forever</title>
            <link>http://www.byond.com/members/Jotdaniel?command=view_post&amp;post=181166</link>
            <guid>http://www.byond.com/members/Jotdaniel?command=view_post&amp;post=181166</guid>
            <pubDate>Sat, 04 Jun 2011 06:19:47 +0000</pubDate>
            
            <comments>http://www.byond.com/members/Jotdaniel?command=view_comments&amp;post=181166#comments</comments>
            
            <description>I played the demo tonight(yes, that means I pre-ordered it, which I normally don't do, I just couldn't help myself)and it's actually better than I expected.&lt;br&gt;
&lt;br&gt;
Sounds seem to be all updated versions of what you'll remember from Duke Nukem 3D, obviously better quality, but it really helps out with that nostalgic feel.&lt;br&gt;
&lt;br&gt;
Graphics are nothing ground breaking, splash screen shows it using Unreal(3 probably?) engine(this is probably available online somewhere, but I never looked). They definitely get the job done though.&lt;br&gt;
&lt;br&gt;
As far as game-play is concerned, you can only hold 2 weapons, like most shooters nowadays, so picking your weapons wisely is a must. The difficulty seems to be about as hard as it used to be, I played the demo on normal and died quite a few times, you definitely need a plan before you run around a corner, they let you use 6 different guns in the demo, and they all seem to work pretty well, no glaring issues insofar as everything works like you would expect it.&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
Overall, I'm probably more excited for the release than I was before playing the demo.&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
[EDIT] This probably doesn't need to be said, but for the love of god don't buy this for your children, or let them in the room while its being played. As far as explicit content goes, this puts even Bulletstorm to shame.</description>
        </item>
                <item>
            <title>Background music.</title>
            <link>http://www.byond.com/members/Jotdaniel?command=view_post&amp;post=181184</link>
            <guid>http://www.byond.com/members/Jotdaniel?command=view_post&amp;post=181184</guid>
            <pubDate>Wed, 11 May 2011 12:42:18 +0000</pubDate>
            
            <comments>http://www.byond.com/members/Jotdaniel?command=view_comments&amp;post=181184#comments</comments>
            
            <description>&lt;a href=&quot;http://files.byondhome.com/Jotdaniel/song01.mid&quot;&gt;http://files.byondhome.com/Jotdaniel/song01.mid&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
Something I made, fairly simple, let me know what you think.</description>
        </item>
                <item>
            <title>expected }, top-most unmatche {, but no { or } used</title>
            <link>http://www.byond.com/members/Jotdaniel?command=view_post&amp;post=139240</link>
            <guid>http://www.byond.com/members/Jotdaniel?command=view_post&amp;post=139240</guid>
            <pubDate>Wed, 20 Apr 2011 05:17:53 +0000</pubDate>
            
            <comments>http://www.byond.com/members/Jotdaniel?command=view_comments&amp;post=139240#comments</comments>
            
            <description>&lt;b&gt;Code:&lt;/b&gt;&lt;br&gt;
&lt;div class=&quot;dmcode&quot;&gt;
&lt;table width=&quot;100%&quot; border=&quot;0&quot;&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;pre class=&quot;dmcode&quot;&gt;
mob/&lt;span class=&quot;dmkeyword&quot;&gt;proc&lt;/span&gt;/text_box(&lt;span class=&quot;dmkeyword&quot;&gt;var&lt;/span&gt;/text,&lt;span class=&quot;dmkeyword&quot;&gt;var&lt;/span&gt;/x1,&lt;span class=&quot;dmkeyword&quot;&gt;var&lt;/span&gt;/x2,&lt;span class=&quot;dmkeyword&quot;&gt;var&lt;/span&gt;/y1,&lt;span class=&quot;dmkeyword&quot;&gt;var&lt;/span&gt;/y2)&lt;br&gt;    &lt;span class=&quot;dmcomment&quot;&gt;// Width and Height spacing for displaying text.&lt;/span&gt;&lt;br&gt;    &lt;span class=&quot;dmkeyword&quot;&gt;var&lt;/span&gt;/WIDTH = 10&lt;br&gt;    &lt;span class=&quot;dmkeyword&quot;&gt;var&lt;/span&gt;/HEIGHT = 14&lt;br&gt;&lt;br&gt;    &lt;span class=&quot;dmcomment&quot;&gt;// Distance to offset characters inside of Text Box from edges&lt;/span&gt;&lt;br&gt;    &lt;span class=&quot;dmkeyword&quot;&gt;var&lt;/span&gt;/edge_offset_x = 16&lt;br&gt;    &lt;span class=&quot;dmkeyword&quot;&gt;var&lt;/span&gt;/edge_offset_y = -25&lt;br&gt;&lt;br&gt;    &lt;span class=&quot;dmcomment&quot;&gt;// CHAR_X is maximum characters left to right&lt;/span&gt;&lt;br&gt;    &lt;span class=&quot;dmcomment&quot;&gt;// CHAR_Y is maximum lines of characters top to bottom&lt;/span&gt;&lt;br&gt;    &lt;span class=&quot;dmkeyword&quot;&gt;var&lt;/span&gt;/CHAR_X = ( ( (x2 - x1) * 32) - (edge_offset_x * 2) ) / WIDTH )&lt;br&gt;    &lt;span class=&quot;dmkeyword&quot;&gt;var&lt;/span&gt;/CHAR_Y = ( ( (y2 - y1) * 32) - (edge_offset_y * 2) ) / HEIGHT )&lt;br&gt;    &lt;span class=&quot;dmkeyword&quot;&gt;var&lt;/span&gt;/CURRENT_CHAR = 1&lt;br&gt;    &lt;span class=&quot;dmkeyword&quot;&gt;var&lt;/span&gt;/CURRENT_Y = 1
&lt;/pre&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;/div&gt;
&lt;br&gt;
&lt;br&gt;
&lt;b&gt;Problem description:&lt;/b&gt;&lt;br&gt;
&lt;br&gt;
Text.dm:14:error: ): expected }&lt;br&gt;
Text.dm:5:error: location of top-most unmatched {&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
Line 5 is var/WIDTH&lt;br&gt;
Line 14 is var/CHAR_X&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
I have no idea why its giving me this error, I'm not using a { or } anywhere, and I believe all my parenthesis are correct.&lt;br&gt;
&lt;br&gt;</description>
        </item>
                <item>
            <title>Jetpack Updates 1.0 - 1.2a</title>
            <link>http://www.byond.com/members/Jotdaniel?command=view_post&amp;post=111873</link>
            <guid>http://www.byond.com/members/Jotdaniel?command=view_post&amp;post=111873</guid>
            <pubDate>Mon, 11 Apr 2011 08:31:08 +0000</pubDate>
            
            <comments>http://www.byond.com/members/Jotdaniel?command=view_comments&amp;post=111873#comments</comments>
            
            <description>In the first couple of days I've made several changes to the game overall, addressing several requests/complaints from both blog and hub comments. A complete list follows:&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
1.2a: - Improved interface, removed alert messages.&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
1.2: - Removed File menu, no point in having it.&lt;br&gt;
- Fixed some turf density oversight, if edge is only one turf thick you wont be able to go through it anymore.&lt;br&gt;
- Some general code optimization, should not effect gameplay.&lt;br&gt;
- Added music and sound effects, including a countdown to start each new round.&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
1.1: - Removed angled walls due to bounding boxes, you can go through the white lines.&lt;br&gt;
- Added pixel collision.&lt;br&gt;
- Increased jetpack response, you can fall faster and lift faster now, movement is a little smoother as well.&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
1.0a and 1.0b: Fixed login, Thanks Teka123. Fixed Scores uploading to hub, thanks OrangeWeapons</description>
        </item>
                <item>
            <title>Jetpack Adventure</title>
            <link>http://www.byond.com/members/Jotdaniel?command=view_post&amp;post=111770</link>
            <guid>http://www.byond.com/members/Jotdaniel?command=view_post&amp;post=111770</guid>
            <pubDate>Sat, 09 Apr 2011 16:00:20 +0000</pubDate>
            
            <comments>http://www.byond.com/members/Jotdaniel?command=view_comments&amp;post=111770#comments</comments>
            
            <description>Well, I published my second arcade-ish style game today. It's called Jetpack Adventure. I haven't seriously programmed anything with BYOND for a couple of years now, and a small project to get started was just what I needed I think.&lt;br&gt;
&lt;br&gt;
The game took about 5 hours to complete(well, 4 hours, and I spent an hour trying to remember how to upload standings). I just hope someone out there will enjoy it.&lt;br&gt;
&lt;br&gt;
In Jetpack Adv. you are a very tiny man with a jetpack, and the object is to fly to the end of the game without hitting anything. There are 10 rounds to get through, and I honestly wasn't sure how hard to make it, personally I've only made it through level 5(though I have been up all night).&lt;br&gt;
&lt;br&gt;
Anyway, yay, first blog post ever, I hope this will give me the motivation to make something great(not that this one's not great, its just a really tiny game).</description>
        </item>
                <item>
            <title>Unprecedented earthquake in Indiana today.</title>
            <link>http://www.byond.com/members/Jotdaniel?command=view_post&amp;post=181297</link>
            <guid>http://www.byond.com/members/Jotdaniel?command=view_post&amp;post=181297</guid>
            <pubDate>Thu, 30 Dec 2010 14:58:55 +0000</pubDate>
            
            <comments>http://www.byond.com/members/Jotdaniel?command=view_comments&amp;post=181297#comments</comments>
            
            <description>Just before 8 A.M. today there was a 4.2 earthquake in Indiana south of Kokomo. What's so unusual is that, in 150 years of being monitored, the fault that it centered on has never produced an earthquake.&lt;br&gt;
&lt;br&gt;
I felt it about 75 or 80 miles away in Fort Wayne, it seriously felt like a large vehicle crashed into my apartment building. Anyone else in the area feel this?</description>
        </item>
                <item>
            <title>my puppy</title>
            <link>http://www.byond.com/members/Jotdaniel?command=view_post&amp;post=181393</link>
            <guid>http://www.byond.com/members/Jotdaniel?command=view_post&amp;post=181393</guid>
            <pubDate>Tue, 17 Aug 2010 03:28:19 +0000</pubDate>
            
            <comments>http://www.byond.com/members/Jotdaniel?command=view_comments&amp;post=181393#comments</comments>
            
            <description>&lt;a href=&quot;http://www.youtube.com/watch?v=yCIfQ1mNosU&quot;&gt;http://www.youtube.com/watch?v=yCIfQ1mNosU&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
My 5mo old newfoundland ignoring me in favor of a bone. :(</description>
        </item>
                <item>
            <title>My new puppy.</title>
            <link>http://www.byond.com/members/Jotdaniel?command=view_post&amp;post=181493</link>
            <guid>http://www.byond.com/members/Jotdaniel?command=view_post&amp;post=181493</guid>
            <pubDate>Tue, 18 May 2010 02:40:47 +0000</pubDate>
            
            <comments>http://www.byond.com/members/Jotdaniel?command=view_comments&amp;post=181493#comments</comments>
            
            <description>&lt;a href=&quot;http://www.byond.com/members/Jotdaniel/files/Eleanor.3GP&quot;&gt;http://www.byond.com/members/Jotdaniel/files/Eleanor.3GP&lt;/a&gt;&lt;br&gt;
(Poor quality cell phone video, but hey; its what I've got.)&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
My new puppy Eleanor. She's a Newfoundland.</description>
        </item>
                <item>
            <title>Portal is Free.</title>
            <link>http://www.byond.com/members/Jotdaniel?command=view_post&amp;post=181495</link>
            <guid>http://www.byond.com/members/Jotdaniel?command=view_post&amp;post=181495</guid>
            <pubDate>Sat, 15 May 2010 23:42:33 +0000</pubDate>
            
            <comments>http://www.byond.com/members/Jotdaniel?command=view_comments&amp;post=181495#comments</comments>
            
            <description>Portal is free on steam until may 24th. All you need to do is click install from the page for Portal in the steam store, I believe this is a promo for releasing Steam on Mac but its free for PC too.</description>
        </item>
                <item>
            <title>Rogue Warrior video game.</title>
            <link>http://www.byond.com/members/Jotdaniel?command=view_post&amp;post=181497</link>
            <guid>http://www.byond.com/members/Jotdaniel?command=view_post&amp;post=181497</guid>
            <pubDate>Thu, 13 May 2010 05:06:04 +0000</pubDate>
            
            <comments>http://www.byond.com/members/Jotdaniel?command=view_comments&amp;post=181497#comments</comments>
            
            <description>Worst. Game. Ever.&lt;br&gt;
&lt;br&gt;
&lt;a href=&quot;http://www.youtube.com/watch?v=NsusJVaAWf8&amp;NR=1&amp;feature=fvwp&quot;&gt;http://www.youtube.com/watch?v=NsusJVaAWf8&amp;NR=1&amp;feature=fvwp&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
Best. Credits. Ever. (warning: vulgar language in link)</description>
        </item>
            
    </channel>
</rss>


