<?xml version="1.0" encoding="ISO-8859-1"?>
<rss version="2.0">
    <channel>
        <title>Goten84's site</title>
        <link>http://www.byond.com/members/Goten84</link>
        <description></description>
        <lastBuildDate>Fri, 10 Feb 2012 22:31:08 +0000</lastBuildDate>
        <language>en-us</language>
    
                <item>
            <title>New Anime Website For Fans</title>
            <link>http://www.byond.com/members/Goten84?command=view_post&amp;post=89685</link>
            <guid>http://www.byond.com/members/Goten84?command=view_post&amp;post=89685</guid>
            <pubDate>Thu, 14 Jan 2010 19:54:17 +0000</pubDate>
            
            <comments>http://www.byond.com/members/Goten84?command=view_comments&amp;post=89685#comments</comments>
            
            <description>Website: &lt;a href=&quot;http://www.otakuconnect.com&quot;&gt;http://www.otakuconnect.com&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
Well, for the last 6 months 2Shea and I have been working on a website (OtakuConnect) that we just recently released into beta. The site still has a lot of work to be done on it but we're at a point where it's pretty stable. I'm not sure if some people here remember our first &quot;Test&quot; website, animeREVO, although we've learned a lot and improved on our design for our new website.&lt;br&gt;
&lt;br&gt;
So if you're an anime/manga fan we'd love to have you help us build our community. We're not MAL (MyAnimeList) as we have more of a focus on the community, and we're not Facebook as our focus is strictly on anime and manga.&lt;br&gt;
&lt;br&gt;
Any contributions you make are appreciated and please bring your friends as it makes the experience even better!&lt;br&gt;
&lt;br&gt;
Enjoy!&lt;br&gt;
&lt;br&gt;
Website: &lt;a href=&quot;http://www.otakuconnect.com&quot;&gt;http://www.otakuconnect.com&lt;/a&gt;</description>
        </item>
                <item>
            <title>SoulReaper Update *screenshot*</title>
            <link>http://www.byond.com/members/Goten84?command=view_post&amp;post=55193</link>
            <guid>http://www.byond.com/members/Goten84?command=view_post&amp;post=55193</guid>
            <pubDate>Wed, 11 Mar 2009 14:34:05 +0000</pubDate>
            
            <comments>http://www.byond.com/members/Goten84?command=view_comments&amp;post=55193#comments</comments>
            
            <description>Well, man it's been a long time since I've made a post about my SoulReaper Engine, although I'm still working on it constantly. For those that aren't aware of what SoulReaper is, it's a game engine I'm building using the BYOND DM language. Currently SoulReaper is being used to power the DBOII (Dragonball Online II) game, although in the future I wish to be able to use it for other games as well, (a good RPG would be nice). Recently I've been working hard on the GUI code and I've completed most of it. Here is a screenshot:&lt;br&gt;
&lt;br&gt;
GUI In Action&lt;br&gt;
&lt;img src=&quot;http://www.byond.com/members/Goten84/files/guiexample3.png&quot; border=&quot;0&quot;&gt;&lt;br&gt;
&lt;br&gt;
The reason for all the radio buttons is because the GUI supports two types, vertical and horizontal layouts. I should note that the gui isn't a browser window or anything, it's using the map to render it's graphics. Also, it's using pixel coordinates and can be of any dimension. The GUI isn't completed yet, there's still more I wish to add, but it's getting close to a final version. My inspiration this entire time too has been Acheron's Awakening gui system, it looks amazing and for those who haven't seen it you should really check it out here: &lt;a href=&quot;http://www.byond.com/members/AcheronsAwakening&quot;&gt;Acheron's Awakening&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
I also thought I'd provide some code to show you how simple it is to make GUI windows using the SoulReaper engine. (&lt;strong&gt;Sorry if my code looks weird...&lt;/strong&gt;)&lt;br&gt;
&lt;br&gt;
&lt;pre&gt;
/**
 *      This class is a Test window with GUI elements.
 *
 *      @author:        Victor Holt
 *      @date:          3/05/2009
*/

SoulReaper/Object/GUI/Template/TestWindow
        var/SoulReaper/Object/GUI/Element/Window/wnd = null
        var/SoulReaper/Object/GUI/Element/Window/Button/closeBtn = null
        var/SoulReaper/Object/GUI/Element/Window/Edit/strEditBox = null
        var/SoulReaper/Object/GUI/Element/Static/strText = null
        var/SoulReaper/Object/GUI/Element/Static/spinnerText = null
        var/SoulReaper/Object/GUI/Element/Static/imageText = null
        var/SoulReaper/Object/GUI/Element/Image/testImage = null
        var/SoulReaper/Object/GUI/Element/Window/CheckBox/testCb = null
        var/SoulReaper/Object/GUI/Element/Window/CheckBox/testCb2 = null
        var/SoulReaper/Object/GUI/Element/RadioGroup/rG = null
        var/SoulReaper/Object/GUI/Element/RadioGroup/rG2 = null
        var/SoulReaper/Object/GUI/Element/Spinner/spinner = null

        /**
        * The constructor.
        */
        New()
                wnd = new()
                closeBtn = new()
                strText = new()
                spinnerText = new()
                imageText = new()
                strEditBox = new()
                
                ...
                
                wnd.create( CHARACTER_VIEW, &quot;GUI Test&quot;, 250, 300 )
                closeBtn.create( 2, &quot;Close&quot;, 80, 30, null, wnd )                
                strText.create( 3, &quot;Strength:&quot;, 5, 260, null, wnd )     
                
                ...

                rG.create( 6, GUI_VERT_STYLE, wnd )
                rG2.create( 7, GUI_HORIZONTAL_STYLE, wnd )
                spinner.create( 8, 20, 30, wnd )
                
                rG.addOption( &quot;Male&quot; )
                rG.addOption( &quot;Female&quot; )
                
                rG2.addOption( &quot;One&quot; )
                rG2.addOption( &quot;Two&quot; )
                rG2.addOption( &quot;Three&quot; )
                
                ...
                
                GUIServices.register( wnd )
                ..()
        /**
        * The destructor
        */
        Del()
                GUIServices.unregister( CHARACTER_VIEW )
                ...

                ..()
        /**
        * This method renders the gui template.
        */
        render()
                GUIServices.render( CHARACTER_VIEW )
        /**
        * This method does a listen event.
        */
        onListen( var/userGuid )

                ...             

                ..()
&lt;/pre&gt;
&lt;br&gt;
&lt;br&gt;</description>
        </item>
                <item>
            <title>Been a long time</title>
            <link>http://www.byond.com/members/Goten84?command=view_post&amp;post=55085</link>
            <guid>http://www.byond.com/members/Goten84?command=view_post&amp;post=55085</guid>
            <pubDate>Sun, 08 Mar 2009 02:18:46 +0000</pubDate>
            
            <comments>http://www.byond.com/members/Goten84?command=view_comments&amp;post=55085#comments</comments>
            
            <description>Well, it's been a long time since I've posted anything as Chris-g1 noted to me today. I'm not very good at posting things..., as seen with DBOII's forum. Anyways, lately I've been trying to overcome my allergies, and these drugs I've taken have gotten me extremely drowsy... I think I'm going to skip taking Sudafed PE tomorrow and just deal with the allergies.</description>
        </item>
                <item>
            <title>Russia at war... Edwards in an affair</title>
            <link>http://www.byond.com/members/Goten84?command=view_post&amp;post=46391</link>
            <guid>http://www.byond.com/members/Goten84?command=view_post&amp;post=46391</guid>
            <pubDate>Fri, 08 Aug 2008 20:34:36 +0000</pubDate>
            
            <comments>http://www.byond.com/members/Goten84?command=view_comments&amp;post=46391#comments</comments>
            
            <description>So, Russia is saying they're at war with Georgia (a country once part of the Soviet Union I believe)... and John Edwards is now admitting to having an affair during his presidential bid. Man, what's up with our world?&lt;br&gt;
&lt;br&gt;
I personally think this is a foolish move by Russia, especially since Georgia is one of our allies helping us in Iraq. This was coming though, ever since Russia stopped the oil flow to Georgia tensions were just getting really high. Let's just hope this doesn't spill over into other EU countries that we all know have bad blood with Russia.</description>
        </item>
                <item>
            <title>Final Fantasy Date</title>
            <link>http://www.byond.com/members/Goten84?command=view_post&amp;post=45473</link>
            <guid>http://www.byond.com/members/Goten84?command=view_post&amp;post=45473</guid>
            <pubDate>Fri, 18 Jul 2008 15:32:41 +0000</pubDate>
            
            <comments>http://www.byond.com/members/Goten84?command=view_comments&amp;post=45473#comments</comments>
            
            <description>If you like Final Fantasy and you're on a date, keep it to yourself, and for god's sake don't play the game on your date! ^_^&lt;br&gt;
&lt;br&gt;
Link: &lt;a href=&quot;http://www.g4tv.com/e32008/videos/27086/Final_Fantasy_Date.html&quot; target=&quot;_blank&quot;&gt;http://www.g4tv.com/e32008/videos/27086/ Final_Fantasy_Date.html&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
G4 did a great job explaining that one!</description>
        </item>
                <item>
            <title>DBOII... Work... Busy...</title>
            <link>http://www.byond.com/members/Goten84?command=view_post&amp;post=45128</link>
            <guid>http://www.byond.com/members/Goten84?command=view_post&amp;post=45128</guid>
            <pubDate>Thu, 10 Jul 2008 00:09:38 +0000</pubDate>
            
            <comments>http://www.byond.com/members/Goten84?command=view_comments&amp;post=45128#comments</comments>
            
            <description>This summer has been pretty busy for me, with tons of work to do at home and at my job it seems like the summer is going by too fast.&lt;br&gt;
&lt;br&gt;
DBO II Updates&lt;br&gt;
----------------&lt;br&gt;
Well, at this point the game has been up for a while and the team has been doing a lot of testing. We have some really good people on the team I think, and it's been fun working with everyone. Most of all, we've been doing good on the team meetings lately and making sure everyone is caught up on what's next to come. We've also completed the outline for the Earth map, which is a good thing. It's been bugging me that we've been using test maps up until now, so finally we're working with official maps in the game. This month will be a busy fix/testing month for DBO II.&lt;br&gt;
&lt;br&gt;
Work Updates&lt;br&gt;
----------------&lt;br&gt;
My boss loves my work so much that he decided to give me a raise, which can only make me more productive right? Heh, work is fun as always, and being in charge makes work worth it even more. I have been working over 40+ hours though, but there's so much that I need to get done before the end of the summer. In October I'll be heading to Chicago for a conference my job offered to pay for, and if I'm lucky I'll be going to Tokyo for a conference! I wouldn't mind going there.&lt;br&gt;
&lt;br&gt;
My mess of a work desk (Click to enlarge)&lt;br&gt;
&lt;a href=&quot;http://dboteam.com/resources/goten84/work.jpg&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://dboteam.com/resources/goten84/work_small.jpg&quot; border=&quot;0&quot;&gt;&lt;/a&gt;</description>
        </item>
                <item>
            <title>The Byond and Ubuntu Brawl</title>
            <link>http://www.byond.com/members/Goten84?command=view_post&amp;post=40824</link>
            <guid>http://www.byond.com/members/Goten84?command=view_post&amp;post=40824</guid>
            <pubDate>Wed, 26 Mar 2008 20:21:18 +0000</pubDate>
            
            <comments>http://www.byond.com/members/Goten84?command=view_comments&amp;post=40824#comments</comments>
            
            <description>So I installed Wine on Ubuntu because I really want to use BYOND in Linux instead of loading up VirtualBox and running XP. The newest version of Wine, wine 0.9.58 allows for a smooth installation of BYOND and everything seems to work until you try to load up the DreamSeeker, then you run into problems. Instead you have to revert back to Wine 0.9.51 if you want to get BYOND working in Linux. Also, you'll need a list of dlls to be overwritten:&lt;br&gt;
&lt;br&gt;
(Not sure if this list is accurate, but it worked for me)&lt;br&gt;
&lt;br&gt;
msvcirt.dll&lt;br&gt;
ole32.dll&lt;br&gt;
oleaut32.dll&lt;br&gt;
riched20.dll&lt;br&gt;
riched32.dll&lt;br&gt;
rpcrt4.dll&lt;br&gt;
shlwapi.dll&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
Like I said, this gets BYOND working in Wine 0.9.51, not the newest version of Wine (0.9.58). If anyone has any information on how to get BYOND working in the newest version of Wine please let me know, I'm all ears. ^_^&lt;br&gt;
&lt;br&gt;
Good luck to you Linux users!</description>
        </item>
                <item>
            <title>New Layout... at last</title>
            <link>http://www.byond.com/members/Goten84?command=view_post&amp;post=39941</link>
            <guid>http://www.byond.com/members/Goten84?command=view_post&amp;post=39941</guid>
            <pubDate>Wed, 05 Mar 2008 01:30:12 +0000</pubDate>
            
            <comments>http://www.byond.com/members/Goten84?command=view_comments&amp;post=39941#comments</comments>
            
            <description>Well, I had made this layout a while ago, but I finally got around to putting it up on BYOND. It's honestly not that fun and exciting editing the css for BYOND, but I guess I have to deal with it. I hope this layout works for everyone as I haven't don't huge tests with it yet.&lt;br&gt;
&lt;br&gt;
Oh... yes I know, the &quot;Add&quot; comment box is grey. I left it like that because I kinda like it heh.&lt;br&gt;
&lt;br&gt;
I'll try later on to test the members_info stuff, but for now I want to take a break.</description>
        </item>
                <item>
            <title>Linux + XP = Great</title>
            <link>http://www.byond.com/members/Goten84?command=view_post&amp;post=39459</link>
            <guid>http://www.byond.com/members/Goten84?command=view_post&amp;post=39459</guid>
            <pubDate>Fri, 22 Feb 2008 00:07:55 +0000</pubDate>
            
            <comments>http://www.byond.com/members/Goten84?command=view_comments&amp;post=39459#comments</comments>
            
            <description>So lately I've been doing a lot of web development, and being pretty much the Senior Programmer at my job, I've been having a lot of fun. What's even more fun is that I've finally taken off Vista from my pc and installed Ubuntu instead. Not only that, but I was able to get VirtualBox working and can now run XP and Linux together. The only bad part about installing XP on my laptop is that I have SATA drives... yea... Here's a screenshot:&lt;br&gt;
&lt;br&gt;
&lt;a href=&quot;http://www.everfluence.com/night/sitetest/preview/screens/SeamlessVB.png&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://www.everfluence.com/night/sitetest/preview/screens/SeamlessVB_small.gif&quot; width=&quot;610&quot; height=&quot;500&quot;&gt;&lt;/a&gt;</description>
        </item>
                <item>
            <title>A Tale of Funny Kids and Code Stealers</title>
            <link>http://www.byond.com/members/Goten84?command=view_post&amp;post=36442</link>
            <guid>http://www.byond.com/members/Goten84?command=view_post&amp;post=36442</guid>
            <pubDate>Wed, 07 Nov 2007 07:02:47 +0000</pubDate>
            
            <description>*Censored* (By will...)
&lt;div style=&quot;display:none&quot;&gt;So, lately I've been looking for people to help with my game, in particular, Mappers! Well, the funniest stuff happens when you look for help, you get the people that want to help your game and then say, &quot;By the way, I'm working on my own game as well.&quot; Now, I can care less whether or not I give out my map code to people, because if they run off with the code they don't really have much to work with in terms of making their own game.&lt;br&gt;
&lt;br&gt;
Anyways, recently, a guy named &lt;b&gt;Kenshi Ryoko&lt;/b&gt;, whose MSN name is &quot;&lt;b&gt;Minato Namikaze&lt;/b&gt;&quot; has been the latest person to volunteer. Now, he's working on his own &quot;Naruto&quot; game but I said, &quot;sure, you can help me if you want.&quot; He also told me that he is from and lives in Japan, although when was the last time you saw a HUGE Japanese Chicago Bulls? Anyways, a conversation I had with him turned out very funny.&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;div class=&quot;post_bg_text_odd&quot;&gt;&lt;br&gt;
&lt;div class=&quot;post_victor_text&quot;&gt;Goten84: Hey I have a question. How would you design the Chunnin exam forest?&lt;/div&gt;
&lt;br&gt;
&lt;br&gt;
&lt;div class=&quot;post_other_text&quot;&gt;Minato Namikaze: hmmm&lt;/div&gt;
&lt;br&gt;
&lt;div class=&quot;post_other_text&quot;&gt;Minato Namikaze: well my chuunin forest is 4 maps big&lt;/div&gt;
&lt;br&gt;
&lt;br&gt;
&lt;div class=&quot;post_victor_text&quot;&gt;Goten84: I see. Btw, how far are you with your game?&lt;/div&gt;
&lt;br&gt;
&lt;br&gt;
&lt;div class=&quot;post_other_text&quot;&gt;Minato Namikaze: 10% done&lt;/div&gt;
&lt;br&gt;
&lt;br&gt;
&lt;div class=&quot;post_victor_text&quot;&gt;Goten84: oh, so you just started? How much of the coding have you done already?&lt;/div&gt;
&lt;br&gt;
&lt;br&gt;
&lt;div class=&quot;post_other_text&quot;&gt;Minato Namikaze: I coded Ino clan&lt;/div&gt;
&lt;br&gt;
&lt;div class=&quot;post_other_text&quot;&gt;Minato Namikaze: it actuallly works&lt;/div&gt;
&lt;br&gt;
&lt;br&gt;
&lt;div class=&quot;post_victor_text&quot;&gt;Goten84: Ah, so you're doing it all from scratch as well&lt;/div&gt;
&lt;br&gt;
&lt;div class=&quot;post_victor_text&quot;&gt;Goten84: What features will make your game different from the others?&lt;/div&gt;
&lt;br&gt;
&lt;br&gt;
&lt;div class=&quot;post_other_text&quot;&gt;Minato Namikaze: well its a rip right now But Imma add so much coding it'll turn original&lt;/div&gt;
&lt;br&gt;&lt;/div&gt;
&lt;br&gt;
&lt;br&gt;
Lets take a break right here. I should inform you that yesterday Minato told me he was working on a game completely from scratch and didn't like the idea of rips. I'll continue this fascinating story:&lt;br&gt;
&lt;br&gt;
&lt;div class=&quot;post_bg_text_even&quot;&gt;&lt;br&gt;
&lt;div class=&quot;post_other_text&quot;&gt;Minato Namikaze: Didn&lt;/div&gt;
&lt;br&gt;
&lt;br&gt;
&lt;div class=&quot;post_victor_text&quot;&gt;Goten84: oh&lt;/div&gt;
&lt;br&gt;
&lt;div class=&quot;post_victor_text&quot;&gt;Goten84: The WOTS source?&lt;/div&gt;
&lt;br&gt;
&lt;br&gt;
&lt;div class=&quot;post_other_text&quot;&gt;Minato Namikaze: no I didnt use wots&lt;/div&gt;
&lt;br&gt;
&lt;br&gt;
&lt;div class=&quot;post_victor_text&quot;&gt;Goten84: Oh heh, which source?&lt;/div&gt;
&lt;br&gt;&lt;/div&gt;
&lt;br&gt;
&lt;br&gt;
&lt;i&gt;Minato Namikaze Signs Off for no reason&lt;/i&gt;&lt;br&gt;
&lt;br&gt;
&lt;b&gt;5 secs later a guy with the name Kenshi Ryoko adds me to their MSN contact list- Keep in mind that Minato Namikaze's Byond key is Kenshi Ryoko!!!&lt;/b&gt;&lt;br&gt;
&lt;br&gt;
&lt;div class=&quot;post_bg_text_odd&quot;&gt;&lt;br&gt;
&lt;div class=&quot;post_other_text&quot;&gt;Kenshi Ryoko: hello&lt;/div&gt;
&lt;br&gt;
&lt;div class=&quot;post_other_text&quot;&gt;Kenshi Ryoko: Hey bitch&lt;/div&gt;
&lt;br&gt;
&lt;br&gt;
&lt;div class=&quot;post_victor_text&quot;&gt;Goten84: hey, welcome back&lt;/div&gt;
&lt;br&gt;
&lt;br&gt;
&lt;div class=&quot;post_other_text&quot;&gt;Kenshi Ryoko: ?&lt;/div&gt;
&lt;br&gt;
&lt;div class=&quot;post_other_text&quot;&gt;Kenshi Ryoko: Welcome Back?&lt;/div&gt;
&lt;br&gt;
&lt;br&gt;
&lt;div class=&quot;post_victor_text&quot;&gt;Goten84: Oh, I thought you were Minato&lt;/div&gt;
&lt;br&gt;&lt;/div&gt;
&lt;br&gt;
&lt;br&gt;
&lt;i&gt;Kenshi Ryoko Signs Off for no reason&lt;/i&gt;&lt;br&gt;
&lt;br&gt;
&lt;b&gt;5 sec later a guy named Takura Kaora adds me to their contact list&lt;/b&gt;&lt;br&gt;
&lt;br&gt;
&lt;div class=&quot;post_bg_text_even&quot;&gt;&lt;br&gt;
&lt;div class=&quot;post_other_text&quot;&gt;Takura Kaora: uh hello&lt;/div&gt;
&lt;br&gt;
&lt;div class=&quot;post_other_text&quot;&gt;Takura Kaora: I heard you were making a game&lt;/div&gt;
&lt;br&gt;
&lt;br&gt;
&lt;div class=&quot;post_victor_text&quot;&gt;Goten84: Yea, a Naruto one&lt;/div&gt;
&lt;br&gt;
&lt;br&gt;
&lt;div class=&quot;post_other_text&quot;&gt;Takura Kaora: Are you a bitch&lt;/div&gt;
&lt;br&gt;
&lt;br&gt;
&lt;div class=&quot;post_victor_text&quot;&gt;Goten84: ?&lt;/div&gt;
&lt;br&gt;
&lt;div class=&quot;post_victor_text&quot;&gt;Goten84: what makes you think that?&lt;/div&gt;
&lt;br&gt;
&lt;br&gt;
&lt;div class=&quot;post_other_text&quot;&gt;Takura Kaora: Does your girlfriemd right there give deep throat&lt;/div&gt;
&lt;br&gt;
&lt;br&gt;
&lt;div class=&quot;post_victor_text&quot;&gt;Goten84: why wouldn't she?&lt;/div&gt;
&lt;br&gt;
&lt;br&gt;
&lt;div class=&quot;post_other_text&quot;&gt;Takura Kaora: she is?&lt;/div&gt;
&lt;br&gt;
&lt;div class=&quot;post_other_text&quot;&gt;Takura Kaora: Maybe I come over and she can have a blow pop&lt;/div&gt;
&lt;br&gt;
&lt;br&gt;
&lt;div class=&quot;post_victor_text&quot;&gt;Goten84: hmm..., what's this about?&lt;/div&gt;
&lt;br&gt;
&lt;br&gt;
&lt;div class=&quot;post_other_text&quot;&gt;Takura Kaora: Nah Its a test of courage&lt;/div&gt;
&lt;br&gt;&lt;/div&gt;
&lt;br&gt;
&lt;br&gt;
&lt;b&gt;Takura Kaora signs off..., then signs back on just to say this!&lt;/b&gt;&lt;br&gt;
&lt;br&gt;
&lt;div class=&quot;post_bg_text_odd&quot;&gt;&lt;br&gt;
&lt;div class=&quot;post_other_text&quot;&gt;Takura Kaora: BYE NIGGA!!!!&lt;/div&gt;
&lt;br&gt;&lt;/div&gt;
&lt;br&gt;
&lt;br&gt;
Ok, seriously, I'm laughing at the entire scenario because I'm pretty sure it's this Minato guy, and sure enough 10 seconds later he signs back on.&lt;br&gt;
&lt;br&gt;
&lt;div class=&quot;post_bg_text_even&quot;&gt;&lt;br&gt;
&lt;div class=&quot;post_victor_text&quot;&gt;Goten84: what was that whole thing about with the different user names?&lt;/div&gt;
&lt;br&gt;
&lt;br&gt;
&lt;div class=&quot;post_other_text&quot;&gt;Minato Namikaze: hmm?&lt;/div&gt;
&lt;br&gt;
&lt;br&gt;
&lt;div class=&quot;post_victor_text&quot;&gt;Goten84: lol nm, I'll just forget about it&lt;/div&gt;
&lt;br&gt;
&lt;br&gt;
&lt;div class=&quot;post_other_text&quot;&gt;Minato Namikaze: what happened?&lt;/div&gt;
&lt;br&gt;
&lt;br&gt;
&lt;div class=&quot;post_victor_text&quot;&gt;Goten84: Meh, nothing really; Some fans were really excited about the game and your maps :D&lt;/div&gt;
&lt;br&gt;
&lt;br&gt;
&lt;div class=&quot;post_other_text&quot;&gt;Minato Namikaze: lol really?&lt;/div&gt;
&lt;br&gt;
&lt;br&gt;
&lt;div class=&quot;post_victor_text&quot;&gt;Goten84: Well, you did say you're renown, so I guess they were just friends that liked your work&lt;/div&gt;
&lt;br&gt;
&lt;br&gt;
&lt;div class=&quot;post_other_text&quot;&gt;Minato Namikaze: Why did they contact you?&lt;/div&gt;
&lt;br&gt;
&lt;div class=&quot;post_other_text&quot;&gt;Minato Namikaze: Did they piss you off?&lt;/div&gt;
&lt;br&gt;&lt;/div&gt;
&lt;br&gt;
&lt;br&gt;
At this point I'm thinking, &quot;Why the heck would they piss me off?&quot; ....&lt;br&gt;
&lt;br&gt;
&lt;div class=&quot;post_bg_text_odd&quot;&gt;&lt;br&gt;
&lt;div class=&quot;post_victor_text&quot;&gt;Goten84: lol, why would they piss me off?&lt;/div&gt;
&lt;br&gt;
&lt;br&gt;
&lt;div class=&quot;post_other_text&quot;&gt;Minato Namikaze: You said you would forget about it....but w/e i guess&lt;/div&gt;
&lt;br&gt;
&lt;div class=&quot;post_other_text&quot;&gt;Minato Namikaze: lol&lt;/div&gt;
&lt;br&gt;
&lt;br&gt;
&lt;div class=&quot;post_victor_text&quot;&gt;Goten84: It was just something random that happened that was kinda funny. I figured you were a popular guy haha. I'm not that popular to have people message me.&lt;/div&gt;
&lt;br&gt;
&lt;br&gt;
&lt;div class=&quot;post_other_text&quot;&gt;Minato Namikaze: oh&lt;/div&gt;
&lt;br&gt;
&lt;div class=&quot;post_other_text&quot;&gt;Minato Namikaze: lol I have almost 400 ppl on friendlist&lt;/div&gt;
&lt;br&gt;
&lt;br&gt;
&lt;div class=&quot;post_victor_text&quot;&gt;Goten84: Ah, yea I have about 40-50&lt;/div&gt;
&lt;br&gt;
&lt;div class=&quot;post_victor_text&quot;&gt;Goten84: Only about 20 show up daily&lt;/div&gt;
&lt;br&gt;&lt;/div&gt;
&lt;br&gt;
&lt;br&gt;
The conversation went on, peacefully and I didn't bring up the different user names from that point on. I just thought it was a pretty funny conversation and in the end he was much nicer to me than before. Lesson of the day, &lt;b&gt;Flaming/arguing never really solves anything&lt;/b&gt;. Also, I'm a really nice person but I'm not stupid.&lt;/div&gt;</description>
        </item>
            
    </channel>
</rss>


