<?xml version="1.0" encoding="ISO-8859-1"?>
<rss version="2.0">
    <channel>
        <title>Kozuma3's site</title>
        <link>http://www.byond.com/members/Kozuma3</link>
        <description></description>
        <lastBuildDate>Fri, 24 May 2013 13:42:28 +0000</lastBuildDate>
        <language>en-us</language>
    
                <item>
            <title>Steins Gate</title>
            <link>http://www.byond.com/members/Kozuma3?command=view_post&amp;post=1264316</link>
            <guid>http://www.byond.com/members/Kozuma3?command=view_post&amp;post=1264316</guid>
            <pubDate>Tue, 14 May 2013 09:23:53 +0000</pubDate>
            
            <comments>http://www.byond.com/members/Kozuma3?command=view_comments&amp;post=1264316#comments</comments>
            
            <description>I've recently started watching the anime Steins Gate. So far, I'm in love :3.&lt;br&gt;
&lt;br&gt;
My favorite character is &lt;a href=&quot;http://steins-gate.wikia.com/wiki/Ruka_Urushibara&quot;&gt;Ruka Urushibara&lt;/a&gt;. I'm currently on the 6th episode and plan on finishing this anime by tomorrow.&lt;br&gt;
&lt;br&gt;
What are your thoughts on the story and/or characters? (If you've started/have watched this anime)&lt;br&gt;
&lt;br&gt;
&lt;img width=&quot;75%&quot; height=&quot;50%&quot; src=&quot;https://secure.byond.com/member_icons/k/o/kozuma3/images/large_icon.JPG&quot;&gt;&lt;br&gt;
~Koz</description>
        </item>
                <item>
            <title>DM built Scripting Language</title>
            <link>http://www.byond.com/members/Kozuma3?command=view_post&amp;post=1259971</link>
            <guid>http://www.byond.com/members/Kozuma3?command=view_post&amp;post=1259971</guid>
            <pubDate>Thu, 09 May 2013 05:18:18 +0000</pubDate>
            
            <comments>http://www.byond.com/members/Kozuma3?command=view_comments&amp;post=1259971#comments</comments>
            
            <description>I've had no internet for the past week and decided to make my own scripting language.&lt;br&gt;
&lt;br&gt;
&lt;b&gt;Remember this was done for fun. ^_^&lt;/b&gt;&lt;br&gt;
&lt;br&gt;
&lt;a target=&quot;_blank&quot; href=&quot;http://www.byond.com/members/Kozuma3/files/2013-05/Kozuma3-0002/HOST.rar&quot;&gt;2013-05/Kozuma3-0002/HOST.rar&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
There &lt;b&gt;is&lt;/b&gt; run-time error reporting, telling you the line and cause of the problem.&lt;br&gt;
&lt;br&gt;
There is no documentation as of now :c&lt;br&gt;
&lt;br&gt;
EVAL() is used but I have it disabled for the fact it crashs the client upon logging out and that seems to be annoying for most :P , so I've replaced it temporarily with simple math functions.&lt;br&gt;
&lt;br&gt;
For example:&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;
username ckey&lt;br&gt;&lt;br&gt;&lt;span class=&quot;dmkeyword&quot;&gt;if&lt;/span&gt; username == &lt;span class=&quot;dmstring&quot;&gt;&amp;quot;kozuma3&amp;quot;&lt;/span&gt;&lt;br&gt;    print &lt;span class=&quot;dmstring&quot;&gt;&amp;quot;This is true!&amp;quot;&lt;/span&gt;&lt;br&gt;&lt;span class=&quot;dmkeyword&quot;&gt;else&lt;/span&gt; then&lt;br&gt;    print &lt;span class=&quot;dmstring&quot;&gt;&amp;quot;This is false!&amp;quot;&lt;/span&gt;&lt;br&gt;end &lt;span class=&quot;dmkeyword&quot;&gt;if&lt;/span&gt;&lt;br&gt;&lt;br&gt;print &lt;span class=&quot;dmstring&quot;&gt;&amp;quot;Done!&amp;quot;&lt;/span&gt;
&lt;/pre&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;/div&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;
Meep 1&lt;br&gt;Boop 5&lt;br&gt;Lolz 1&lt;br&gt;&lt;span class=&quot;dmcomment&quot;&gt;//Step &amp;amp; Lolz isn't needed, the default step-size is 1&lt;/span&gt;&lt;br&gt;&lt;span class=&quot;dmcomment&quot;&gt;//Printing Meep will always say 1 as FOR isn't increasing the actual values.&lt;/span&gt;&lt;br&gt;&lt;span class=&quot;dmkeyword&quot;&gt;for&lt;/span&gt; Meep &lt;span class=&quot;dmkeyword&quot;&gt;to&lt;/span&gt; Boop step Lolz&lt;br&gt;    print &lt;span class=&quot;dmstring&quot;&gt;&amp;quot;Hello! Meep will be 1 ; &lt;/span&gt;&lt;span class=&quot;dmbrace&quot;&gt;[Meep]&lt;/span&gt;&lt;span class=&quot;dmstring&quot;&gt;!&amp;quot;&lt;/span&gt;&lt;br&gt;end &lt;span class=&quot;dmkeyword&quot;&gt;for&lt;/span&gt;
&lt;/pre&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;/div&gt;
&lt;br&gt;
&lt;br&gt;
This is the same as:&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;
&lt;span class=&quot;dmkeyword&quot;&gt;for&lt;/span&gt; 1 &lt;span class=&quot;dmkeyword&quot;&gt;to&lt;/span&gt; 5&lt;br&gt;    print &lt;span class=&quot;dmstring&quot;&gt;&amp;quot;Hello!&amp;quot;&lt;/span&gt;&lt;br&gt;end &lt;span class=&quot;dmkeyword&quot;&gt;for&lt;/span&gt;
&lt;/pre&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;/div&gt;
&lt;br&gt;
&lt;br&gt;
Another:&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;
A 5&lt;br&gt;&lt;span class=&quot;dmkeyword&quot;&gt;while&lt;/span&gt; A&lt;br&gt;    printl &lt;span class=&quot;dmstring&quot;&gt;&amp;quot;A = &lt;/span&gt;&lt;span class=&quot;dmbrace&quot;&gt;[A]&lt;/span&gt;&lt;span class=&quot;dmstring&quot;&gt; , &amp;quot;&lt;/span&gt;&lt;br&gt;    min A 1&lt;br&gt;    &lt;span class=&quot;dmcomment&quot;&gt;//sub A 1 --&amp;gt; in the next one.&lt;/span&gt;&lt;br&gt;    &lt;span class=&quot;dmkeyword&quot;&gt;if&lt;/span&gt; !A&lt;br&gt;        print &lt;span class=&quot;dmstring&quot;&gt;&amp;quot;Done!&amp;quot;&lt;/span&gt;&lt;br&gt;    &lt;span class=&quot;dmkeyword&quot;&gt;else&lt;/span&gt; then&lt;br&gt;        print &lt;span class=&quot;dmstring&quot;&gt;&amp;quot;Keep going!&amp;quot;&lt;/span&gt;&lt;br&gt;    end &lt;span class=&quot;dmkeyword&quot;&gt;if&lt;/span&gt;&lt;br&gt;end &lt;span class=&quot;dmkeyword&quot;&gt;while&lt;/span&gt;
&lt;/pre&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;/div&gt;</description>
        </item>
                <item>
            <title>Offline Friends &amp; Fans</title>
            <link>http://www.byond.com/members/Kozuma3?command=view_post&amp;post=1241256</link>
            <guid>http://www.byond.com/members/Kozuma3?command=view_post&amp;post=1241256</guid>
            <pubDate>Fri, 19 Apr 2013 22:05:55 +0000</pubDate>
            
            <comments>http://www.byond.com/members/Kozuma3?command=view_comments&amp;post=1241256#comments</comments>
            
            <description>Is there a way to disable the viewing of friends offline and/or make it shows all the users in games on the top?</description>
        </item>
                <item>
            <title>BYOND Pager</title>
            <link>http://www.byond.com/members/Kozuma3?command=view_post&amp;post=1209877</link>
            <guid>http://www.byond.com/members/Kozuma3?command=view_post&amp;post=1209877</guid>
            <pubDate>Sun, 24 Mar 2013 10:59:34 +0000</pubDate>
            
            <comments>http://www.byond.com/members/Kozuma3?command=view_comments&amp;post=1209877#comments</comments>
            
            <description>I've recently started to get &quot;Not enough memory&quot; popups when opening up BYOND after it has been open - It seems the new Pager is using extreme amounts of Physical Memory after being open for long periods of time.&lt;br&gt;
&lt;br&gt;
Is this normal, or something on my part?&lt;br&gt;</description>
        </item>
                <item>
            <title>First-Icon-EVER.</title>
            <link>http://www.byond.com/members/Kozuma3?command=view_post&amp;post=1080758</link>
            <guid>http://www.byond.com/members/Kozuma3?command=view_post&amp;post=1080758</guid>
            <pubDate>Sun, 09 Dec 2012 22:01:19 +0000</pubDate>
            
            <comments>http://www.byond.com/members/Kozuma3?command=view_comments&amp;post=1080758#comments</comments>
            
            <description>This is litterely the first icon I've EVER in my four and so years of being on BYOND having tried. Tell me what you think. I'm still having trouble with some of the features so I just wanted to post what I have done atm. :(&lt;br&gt;
&lt;br&gt;
&lt;table&gt;
&lt;tr&gt;
&lt;td&gt;Avatar&lt;br&gt;
&lt;img src=&quot;http://www.byond.com/members/Kozuma3/files/2012-12/Kozuma3-0001/AVATAR.png&quot;&gt;&lt;img src=&quot;http://www.byond.com/members/Kozuma3/files/2012-12/Kozuma3-0001/RAwrr.png&quot;&gt;&lt;br&gt;&lt;/td&gt;
&lt;td&gt;&lt;br&gt;
&lt;img width=&quot;96&quot; height=&quot;96&quot; src=&quot;http://www.byond.com/members/Kozuma3/files/2012-12/Kozuma3-0001/TEST.png&quot;&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;br&gt;</description>
        </item>
                <item>
            <title>DAG / Amtgard.</title>
            <link>http://www.byond.com/members/Kozuma3?command=view_post&amp;post=1080250</link>
            <guid>http://www.byond.com/members/Kozuma3?command=view_post&amp;post=1080250</guid>
            <pubDate>Sun, 09 Dec 2012 15:12:05 +0000</pubDate>
            
            <comments>http://www.byond.com/members/Kozuma3?command=view_comments&amp;post=1080250#comments</comments>
            
            <description>Yesterday for the first time I went with and participated with my friends at their &quot;training grounds&quot; for DAG/Amtgard practice. I did a pretty good job counting it was my first time. I was only hit a few times in the face and ended up with a busted lip but completely worth it C: has anyone else ever participated in DAG/Amtgard practice and/or went to an event? :D</description>
        </item>
                <item>
            <title>Gaia Online</title>
            <link>http://www.byond.com/members/Kozuma3?command=view_post&amp;post=1067159</link>
            <guid>http://www.byond.com/members/Kozuma3?command=view_post&amp;post=1067159</guid>
            <pubDate>Tue, 27 Nov 2012 08:08:40 +0000</pubDate>
            
            <comments>http://www.byond.com/members/Kozuma3?command=view_comments&amp;post=1067159#comments</comments>
            
            <description>Anyone here play or are actively on Gaia-Online? I've been playing it on-going 8 months. I have now decided to create a BYOND guild within it noticing the last one died out around 2008.&lt;br&gt;
&lt;br&gt;
My old account was banned in 2004 when I was very young so earlier this year I decided to start again.&lt;br&gt;
&lt;br&gt;
Username: Wicked_Wolve</description>
        </item>
                <item>
            <title>Happy Thanksgiving</title>
            <link>http://www.byond.com/members/Kozuma3?command=view_post&amp;post=1059450</link>
            <guid>http://www.byond.com/members/Kozuma3?command=view_post&amp;post=1059450</guid>
            <pubDate>Thu, 22 Nov 2012 15:39:46 +0000</pubDate>
            
            <comments>http://www.byond.com/members/Kozuma3?command=view_comments&amp;post=1059450#comments</comments>
            
            <description>Happy Thanksgiving everyone :)</description>
        </item>
                <item>
            <title>Black Ops 2</title>
            <link>http://www.byond.com/members/Kozuma3?command=view_post&amp;post=1051040</link>
            <guid>http://www.byond.com/members/Kozuma3?command=view_post&amp;post=1051040</guid>
            <pubDate>Tue, 13 Nov 2012 12:13:27 +0000</pubDate>
            
            <comments>http://www.byond.com/members/Kozuma3?command=view_comments&amp;post=1051040#comments</comments>
            
            <description>Anyone else here have it for a console? I've been busy playing Zombies C:</description>
        </item>
                <item>
            <title>Blarg</title>
            <link>http://www.byond.com/members/Kozuma3?command=view_post&amp;post=1013277</link>
            <guid>http://www.byond.com/members/Kozuma3?command=view_post&amp;post=1013277</guid>
            <pubDate>Thu, 11 Oct 2012 13:57:20 +0000</pubDate>
            
            <comments>http://www.byond.com/members/Kozuma3?command=view_comments&amp;post=1013277#comments</comments>
            
            <description>Currently playing &lt;b&gt;Bloons Tower Defense 5&lt;/b&gt; &amp; almost at the top of the scoreboard on a current level &amp; difficulty.&lt;br&gt;
&lt;br&gt;
I make approx $20,000(+$9000 from the farms) a turn.&lt;br&gt;
&lt;br&gt;
&lt;b&gt;As of now.&lt;/b&gt;&lt;br&gt;
&lt;img src=&quot;http://files.byondhome.com/Kozuma3/BTD51.png&quot;&gt;</description>
        </item>
            
    </channel>
</rss>

