<?xml version="1.0" encoding="ISO-8859-1"?>
<rss version="2.0">
    <channel>
        <title>Oondivinezin's site</title>
        <link>http://www.byond.com/members/Oondivinezin</link>
        <description></description>
        <lastBuildDate>Sat, 11 Feb 2012 05:00:06 +0000</lastBuildDate>
        <language>en-us</language>
    
                <item>
            <title>Pixel movement gravity issue</title>
            <link>http://www.byond.com/members/Oondivinezin?command=view_post&amp;post=138719</link>
            <guid>http://www.byond.com/members/Oondivinezin?command=view_post&amp;post=138719</guid>
            <pubDate>Sat, 07 Jan 2012 04:17:32 +0000</pubDate>
            
            <comments>http://www.byond.com/members/Oondivinezin?command=view_comments&amp;post=138719#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;br&gt;    &lt;span class=&quot;dmkeyword&quot;&gt;proc&lt;/span&gt;&lt;br&gt;        Fall()&lt;br&gt;            &lt;span class=&quot;dmkeyword&quot;&gt;if&lt;/span&gt;(src.doublefall == 1)&lt;br&gt;                &lt;span class=&quot;dmkeyword&quot;&gt;return&lt;/span&gt;&lt;br&gt;            flick(&lt;span class=&quot;dmstring&quot;&gt;&amp;quot;fallstart&amp;quot;&lt;/span&gt;,src)&lt;br&gt;            bound_x = 15&lt;br&gt;            bound_width = 19&lt;br&gt;            bound_height = 42&lt;br&gt;            fall&lt;br&gt;            &lt;span class=&quot;dmkeyword&quot;&gt;if&lt;/span&gt;(src.fallstopper == 1||src.newgravity == 1)&lt;br&gt;                src.doublefall = 0&lt;br&gt;                &lt;span class=&quot;dmkeyword&quot;&gt;return&lt;/span&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;            &lt;span class=&quot;dmkeyword&quot;&gt;var&lt;/span&gt;/mobdense = 0&lt;br&gt;            &lt;span class=&quot;dmkeyword&quot;&gt;var&lt;/span&gt;/objdense = 0&lt;br&gt;            &lt;span class=&quot;dmkeyword&quot;&gt;if&lt;/span&gt;(src.InAir == 1)&lt;br&gt;                src.doublefall = 1&lt;br&gt;                &lt;span class=&quot;dmkeyword&quot;&gt;if&lt;/span&gt;(src.y&amp;lt;2||src.y == null)&lt;br&gt;                    &lt;span class=&quot;dmkeyword&quot;&gt;return&lt;/span&gt;&lt;br&gt;                &lt;span class=&quot;dmkeyword&quot;&gt;for&lt;/span&gt;(&lt;span class=&quot;dmkeyword&quot;&gt;var&lt;/span&gt;/obj/P &lt;span class=&quot;dmkeyword&quot;&gt;in&lt;/span&gt; get_step(src,2))&lt;br&gt;                    &lt;span class=&quot;dmkeyword&quot;&gt;if&lt;/span&gt;(P.density == 1)&lt;br&gt;                        objdense = 1&lt;br&gt;                &lt;span class=&quot;dmkeyword&quot;&gt;for&lt;/span&gt;(&lt;span class=&quot;dmkeyword&quot;&gt;var&lt;/span&gt;/mob/M &lt;span class=&quot;dmkeyword&quot;&gt;in&lt;/span&gt; get_step(src,2))&lt;br&gt;                    &lt;span class=&quot;dmkeyword&quot;&gt;if&lt;/span&gt;(M.density == 1)&lt;br&gt;                        mobdense = 1&lt;br&gt;                &lt;span class=&quot;dmkeyword&quot;&gt;var&lt;/span&gt;/turf/check = locate(src.x,src.y-1,src.z)&lt;br&gt;                icon_state=&lt;span class=&quot;dmstring&quot;&gt;&amp;quot;fall&amp;quot;&lt;/span&gt;&lt;br&gt;                &lt;span class=&quot;dmkeyword&quot;&gt;if&lt;/span&gt;(check.density == 1||mobdense == 1||objdense==1)&lt;br&gt;                    src.InAir = 0&lt;br&gt;                    dir = odir&lt;br&gt;                    step_y = 0&lt;br&gt;                    bound_x = 13&lt;br&gt;                    bound_width = 23&lt;br&gt;                    bound_height = 28&lt;br&gt;                    spawn(3)&lt;br&gt;                        src.JumpDelay = 0&lt;br&gt;                    &lt;span class=&quot;dmkeyword&quot;&gt;if&lt;/span&gt;(src.icon_state == &lt;span class=&quot;dmstring&quot;&gt;&amp;quot;fall&amp;quot;&lt;/span&gt;)&lt;br&gt;                        src.icon_state = &lt;span class=&quot;dmstring&quot;&gt;&amp;quot;stand&amp;quot;&lt;/span&gt;&lt;br&gt;                        flick(&lt;span class=&quot;dmstring&quot;&gt;&amp;quot;land&amp;quot;&lt;/span&gt;,src)&lt;br&gt;                    src.doublefall = 0&lt;br&gt;                    &lt;span class=&quot;dmkeyword&quot;&gt;if&lt;/span&gt;(mobdense==1)&lt;br&gt;                        src.y-=1&lt;br&gt;                &lt;span class=&quot;dmkeyword&quot;&gt;else&lt;/span&gt;&lt;br&gt;                    &lt;span class=&quot;dmkeyword&quot;&gt;if&lt;/span&gt;(check.density == 0&amp;amp;&amp;amp;mobdense == 0&amp;amp;&amp;amp;objdense==0)&lt;br&gt;                        step(src,2,6)&lt;br&gt;                        dir = odir&lt;br&gt;                        spawn(0.5)&lt;br&gt;                            &lt;span class=&quot;dmkeyword&quot;&gt;goto&lt;/span&gt; fall
&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;
This is my proc for falling with my gravity code. However, this occurs.&lt;br&gt;
&lt;br&gt;
&lt;img src=&quot;http://files.byondhome.com/Oondivinezin/Mega%20Man%20X%202012-01-06%20231252.png&quot;&gt;&lt;br&gt;
&lt;br&gt;
At this exact position, on any left-side of a platform, it activates the falling proc, but it doesn't allow the user to fall. I have a feeling it's likely due to the fact that the player's x position is that of the empty space next to the platform, however they're still colliding with the platform due to the bounding box. As you see in the code, it changes the bounding box when falling, and resets it when the player lands. If anyone can give me a hand to remedy this, I would much appreciate it. If you need more information to provide a fix, don't hesitate to ask.</description>
        </item>
                <item>
            <title>Extreme Combat Siblings</title>
            <link>http://www.byond.com/members/Oondivinezin?command=view_post&amp;post=121818</link>
            <guid>http://www.byond.com/members/Oondivinezin?command=view_post&amp;post=121818</guid>
            <pubDate>Sun, 11 Dec 2011 13:47:29 +0000</pubDate>
            
            <comments>http://www.byond.com/members/Oondivinezin?command=view_comments&amp;post=121818#comments</comments>
            
            <description>Heya folks. I'm just putting the word out there. &lt;a href=&quot;http://www.byond.com/games/Oondivinezin/ECS&quot;&gt;Extreme Combat Siblings&lt;/a&gt; (ECS in short) has been around for over a year, and has seen little-to-no publicity in that time. I've been working on it and adding updates every so often, yet it's not getting any sort of attraction. ZeroVirus provided a 24/7 shell server for it mid-November, and it's been up since. I'm going to be in progress of adding more updates, finish off the character roster, and see how it does over time. I'd like to see the increase in player numbers rise eventually and have it played consistently. Only time will tell.&lt;br&gt;
&lt;br&gt;
In short: go check it out, give it a try, leave a comment, and let me know your opinion.</description>
        </item>
                <item>
            <title>Extreme Combat Siblings</title>
            <link>http://www.byond.com/members/Oondivinezin?command=view_post&amp;post=110532</link>
            <guid>http://www.byond.com/members/Oondivinezin?command=view_post&amp;post=110532</guid>
            <pubDate>Tue, 08 Mar 2011 15:14:00 +0000</pubDate>
            
            <comments>http://www.byond.com/members/Oondivinezin?command=view_comments&amp;post=110532#comments</comments>
            
            <description>Hello, everyone! I'm bringing an announcement up about my most recent project, Extreme Combat Siblings (I will be calling it ECS for short, the hub can be found &lt;a href=&quot;http://www.byond.com/games/Oondivinezin/ECS&quot;&gt;here&lt;/a&gt;.&lt;br&gt;
&lt;br&gt;
&lt;img src=&quot;http://files.byondhome.com/Oondivinezin/Extreme%20Combat%20Siblings%202010-08-30%20135456.png&quot;&gt;&lt;br&gt;
&lt;br&gt;
It's something a few of my friends and myself have been putting together, and I'm interested in having the BYOND community contribute some content.&lt;br&gt;
&lt;br&gt;
Mostly, I'm looking for any sprite artist interested in doing some work, also looking for anybody who knows their way around midi software and those who can create backgrounds for stages.&lt;br&gt;
&lt;br&gt;
All content submitted is to be 100% original, and if you're interested, be sure to contact me via pager or e-mail and I'll give you details on what you can do to help create content.&lt;br&gt;
&lt;br&gt;
I figured I'd just put that out there, and thanks again everyone!</description>
        </item>
                <item>
            <title>What...</title>
            <link>http://www.byond.com/members/Oondivinezin?command=view_post&amp;post=106438</link>
            <guid>http://www.byond.com/members/Oondivinezin?command=view_post&amp;post=106438</guid>
            <pubDate>Thu, 30 Dec 2010 22:52:56 +0000</pubDate>
            
            <comments>http://www.byond.com/members/Oondivinezin?command=view_comments&amp;post=106438#comments</comments>
            
            <description>So I'm pretty SOL on connecting to BYOND until I find some way to get the web site working on my internet connection without having to use a proxy. I'm not sure how long it's going to take for it to be back up and running. Here's a rundown of a problem, I've already posted an error report about it on the forums.&lt;br&gt;
&lt;br&gt;
I can't get the BYOND pager to go live, no matter which computer or router I use within my household. I can't connect to the BYOND web site regardless of which browser I use. I've checked to see that my internet connection is not running on a proxy itself, I've checked to see if BYOND was a blocked web site on all internet settings, I've tried two different routers and two different computers. The only thing I haven't tried is using a different connection, and I don't know if that will solve it or not.</description>
        </item>
                <item>
            <title>BYOND connection issue</title>
            <link>http://www.byond.com/members/Oondivinezin?command=view_post&amp;post=294439</link>
            <guid>http://www.byond.com/members/Oondivinezin?command=view_post&amp;post=294439</guid>
            <pubDate>Thu, 30 Dec 2010 22:12:38 +0000</pubDate>
            
            <comments>http://www.byond.com/members/Oondivinezin?command=view_comments&amp;post=294439#comments</comments>
            
            <description>&lt;b&gt;BYOND Build Number&lt;/b&gt;: 479.1086&lt;br&gt;
&lt;b&gt;Operating System&lt;/b&gt;: Windows 7 Home&lt;br&gt;
&lt;b&gt;Video/Graphics Card&lt;/b&gt;: Is this applicable?&lt;br&gt;
&lt;b&gt;Game Hub/Link&lt;/b&gt;: Any&lt;br&gt;
&lt;b&gt;Internet Connection Type&lt;/b&gt;: AT&amp;T Broadband Internet&lt;br&gt;
&lt;b&gt;Firewalls/Routers&lt;/b&gt;: 2701HG-B Gateway&lt;br&gt;
&lt;br&gt;
&lt;b&gt;Problem Description&lt;/b&gt;:&lt;br&gt;
Unable to access BYOND website via web browsers, unless using a proxy, pager does not authenticate any BYOND keys.&lt;br&gt;
&lt;br&gt;
&lt;b&gt;Steps to Reproduce Problem&lt;/b&gt;:&lt;br&gt;
Happens every time. Checked to see if my internet connection was running on a proxy, checked to see if the web site was blocked. None of these were the case. I even tried opening up the BYOND web site on another computer in the household on the same internet connection and received the same results. I'm thinking that it may be a router issue, if anyone knows how I would go about getting rid of restrictions my router magically set out of nowhere for anything BYOND based, I'd be very appreciative.</description>
        </item>
                <item>
            <title>Interests: Girls</title>
            <link>http://www.byond.com/members/Oondivinezin?command=view_post&amp;post=103522</link>
            <guid>http://www.byond.com/members/Oondivinezin?command=view_post&amp;post=103522</guid>
            <pubDate>Thu, 21 Oct 2010 14:12:39 +0000</pubDate>
            
            <comments>http://www.byond.com/members/Oondivinezin?command=view_comments&amp;post=103522#comments</comments>
            
            <description>Why do people even have to put this on their interests? Is your one interest seriously just girls, like that's all you ever care about in the world EVER, or are you trying to mask your self-loathing by putting up a ruse?&lt;br&gt;
&lt;br&gt;
You don't have to put &quot;girls&quot; as your interest, you know. That's like putting &quot;video games&quot; as an interest here on BYOND. That's obvious. If you're on BYOND, you have to have some interest in video games, since it is, after all, a gaming network.&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
This post was made to see how many idiots respond so I can just laugh at it. There is no seriousness here at all.</description>
        </item>
                <item>
            <title>Super Smash Bros. BYOND</title>
            <link>http://www.byond.com/members/Oondivinezin?command=view_post&amp;post=85858</link>
            <guid>http://www.byond.com/members/Oondivinezin?command=view_post&amp;post=85858</guid>
            <pubDate>Wed, 18 Nov 2009 03:34:58 +0000</pubDate>
            
            <comments>http://www.byond.com/members/Oondivinezin?command=view_comments&amp;post=85858#comments</comments>
            
            <description>So... it's 3 years old now and it's had some down time, hopefully we can get it hosted within the next few days, as it's been down for the past month...</description>
        </item>
                <item>
            <title>Dear BYOND community</title>
            <link>http://www.byond.com/members/Oondivinezin?command=view_post&amp;post=76663</link>
            <guid>http://www.byond.com/members/Oondivinezin?command=view_post&amp;post=76663</guid>
            <pubDate>Fri, 17 Jul 2009 04:03:33 +0000</pubDate>
            
            <comments>http://www.byond.com/members/Oondivinezin?command=view_comments&amp;post=76663#comments</comments>
            
            <description>I love you guys. That is all.</description>
        </item>
                <item>
            <title>Super Smash Bros. BYOND hub</title>
            <link>http://www.byond.com/members/Oondivinezin?command=view_post&amp;post=72506</link>
            <guid>http://www.byond.com/members/Oondivinezin?command=view_post&amp;post=72506</guid>
            <pubDate>Sun, 14 Jun 2009 19:34:20 +0000</pubDate>
            
            <comments>http://www.byond.com/members/Oondivinezin?command=view_comments&amp;post=72506#comments</comments>
            
            <description>For some reason, the Super Smash Bros. BYOND hub had pornographic links in it, and I have no clue why. I removed the two video links, which likely caused it, although it's still weird since I haven't touched the game's hub in a few months.&lt;br&gt;
&lt;br&gt;
It should be fixed now, the only links remaining on the hub are the download links which are directly uploaded to my BYOND account.</description>
        </item>
                <item>
            <title>Help needed</title>
            <link>http://www.byond.com/members/Oondivinezin?command=view_post&amp;post=60730</link>
            <guid>http://www.byond.com/members/Oondivinezin?command=view_post&amp;post=60730</guid>
            <pubDate>Fri, 03 Apr 2009 15:58:20 +0000</pubDate>
            
            <comments>http://www.byond.com/members/Oondivinezin?command=view_comments&amp;post=60730#comments</comments>
            
            <description>Most people probably won't care, but I had a job this past week, and was terminated due to missing 2% on one of the training exams. I'm now without a job and I need money desperately for my living situation. I'm requesting for those who care, to make donations to oondivinezin@live.com on PayPal. In order to encourage people to do so, I'm allowing people to have custom characters on Super Smash Bros. BYOND. These custom characters will not have any restrictions whatsoever, apart from damage, speed, and range of attacks. This means someone can donate money and pick Goku as their custom character, as opposed to Goku being added in for everyone, since that is against the restrictions I made for fully playable characters. In order to get the information of what character you would like, just add me to MSN (same e-mail as my paypal account) and let me know what you want.&lt;br&gt;
&lt;br&gt;
Anybody who makes these donations, I really appreciate it.&lt;br&gt;
&lt;br&gt;
Thanks for taking your time to read this.</description>
        </item>
            
    </channel>
</rss>


