<?xml version="1.0" encoding="ISO-8859-1"?>
<rss version="2.0">
    <channel>
        <title>Spunky_Girl's site</title>
        <link>http://www.byond.com/members/SpunkyGirl</link>
        <description></description>
        <lastBuildDate>Sun, 26 May 2013 05:46:08 +0000</lastBuildDate>
        <language>en-us</language>
    
                <item>
            <title>winset() and is-checked not working?</title>
            <link>http://www.byond.com/members/SpunkyGirl?command=view_post&amp;post=890248</link>
            <guid>http://www.byond.com/members/SpunkyGirl?command=view_post&amp;post=890248</guid>
            <pubDate>Thu, 26 Jul 2012 04:49:08 +0000</pubDate>
            
            <comments>http://www.byond.com/members/SpunkyGirl?command=view_comments&amp;post=890248#comments</comments>
            
            <description>&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;
winset(src,&lt;span class=&quot;dmstring&quot;&gt;&amp;quot;window.btnControl&amp;quot;&lt;/span&gt;,&lt;span class=&quot;dmstring&quot;&gt;&amp;quot;is-checked=false&amp;quot;&lt;/span&gt;)&lt;br&gt;world&amp;lt;&amp;lt;winget(src,&lt;span class=&quot;dmstring&quot;&gt;&amp;quot;window.btnControl&amp;quot;&lt;/span&gt;,&lt;span class=&quot;dmstring&quot;&gt;&amp;quot;is-checked&amp;quot;&lt;/span&gt;)
&lt;/pre&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;/div&gt;
&lt;br&gt;
&lt;br&gt;
Make a pushbox button with the name set to &quot;btnControl&quot;, run the environment and push the button that will run the above code. It still returns true, when winset is obviously setting it to false. Bug?</description>
        </item>
                <item>
            <title>Nexon buys into NCSoft :\</title>
            <link>http://www.byond.com/members/SpunkyGirl?command=view_post&amp;post=815686</link>
            <guid>http://www.byond.com/members/SpunkyGirl?command=view_post&amp;post=815686</guid>
            <pubDate>Thu, 14 Jun 2012 22:53:41 +0000</pubDate>
            
            <comments>http://www.byond.com/members/SpunkyGirl?command=view_comments&amp;post=815686#comments</comments>
            
            <description>&lt;a href=&quot;http://www.bizjournals.com/prnewswire/press_releases/2012/06/08/NY21443&quot;&gt;http://www.bizjournals.com/prnewswire/press_releases/2012/ 06/08/NY21443&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
I really hope this does not affect Guild Wars 2's production in any sort of way. I've personally played Combat Arms (made by Nexon) and the hacking problem has always been a problem, and Nexon seems to do nothing or very little about it. I don't know what any of their other games are like though, so I can't really say much. I really like NCSoft. I hope this &quot;partnership&quot; doesn't go downhill.</description>
        </item>
                <item>
            <title>argument in Move() proc being set permanently?</title>
            <link>http://www.byond.com/members/SpunkyGirl?command=view_post&amp;post=575013</link>
            <guid>http://www.byond.com/members/SpunkyGirl?command=view_post&amp;post=575013</guid>
            <pubDate>Sun, 25 Mar 2012 16:47:13 +0000</pubDate>
            
            <comments>http://www.byond.com/members/SpunkyGirl?command=view_comments&amp;post=575013#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;    Move(atom/newLoc,Dir=0,override=0)&lt;br&gt;        &lt;span class=&quot;dmkeyword&quot;&gt;if&lt;/span&gt;(override)&lt;br&gt;            &lt;span class=&quot;dmkeyword&quot;&gt;return&lt;/span&gt; ..()&lt;br&gt;        &lt;span class=&quot;dmkeyword&quot;&gt;if&lt;/span&gt;(!src.isCrafting)&lt;br&gt;            &lt;span class=&quot;dmcomment&quot;&gt;//------------------------------&lt;/span&gt;&lt;br&gt;            &lt;span class=&quot;dmcomment&quot;&gt;//cardinal directional movement only&lt;/span&gt;&lt;br&gt;            &lt;span class=&quot;dmkeyword&quot;&gt;var&lt;/span&gt;/d = get_dir(src,newLoc)&lt;br&gt;            &lt;span class=&quot;dmkeyword&quot;&gt;var&lt;/span&gt;/is_diagonal = dir &amp;amp; (dir-1)&lt;br&gt;            &lt;span class=&quot;dmkeyword&quot;&gt;if&lt;/span&gt;(is_diagonal)&lt;br&gt;                &lt;span class=&quot;dmkeyword&quot;&gt;var&lt;/span&gt;/d1 = d &amp;amp; (NORTH|SOUTH)&lt;br&gt;                &lt;span class=&quot;dmkeyword&quot;&gt;var&lt;/span&gt;/d2 = d &amp;amp; (EAST|WEST)&lt;br&gt;                &lt;span class=&quot;dmkeyword&quot;&gt;if&lt;/span&gt;(prob(50))&lt;br&gt;                    &lt;span class=&quot;dmkeyword&quot;&gt;var&lt;/span&gt;/t = d1&lt;br&gt;                    d1 = d2&lt;br&gt;                    d2 = t&lt;br&gt;                dir = d1&lt;br&gt;                &lt;span class=&quot;dmkeyword&quot;&gt;if&lt;/span&gt;(step(src,d1))&lt;br&gt;                    &lt;span class=&quot;dmkeyword&quot;&gt;return&lt;/span&gt; 1&lt;br&gt;                dir = d2&lt;br&gt;                &lt;span class=&quot;dmkeyword&quot;&gt;if&lt;/span&gt;(step(src,d2))&lt;br&gt;                    &lt;span class=&quot;dmkeyword&quot;&gt;return&lt;/span&gt; 1&lt;br&gt;                &lt;span class=&quot;dmkeyword&quot;&gt;return&lt;/span&gt; 0&lt;br&gt;            &lt;span class=&quot;dmkeyword&quot;&gt;else&lt;/span&gt; &lt;span class=&quot;dmkeyword&quot;&gt;return&lt;/span&gt; ..()&lt;br&gt;            &lt;span class=&quot;dmcomment&quot;&gt;//-----------------------------&lt;/span&gt;&lt;br&gt;        &lt;span class=&quot;dmkeyword&quot;&gt;return&lt;/span&gt; FALSE
&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;
Above is the Move() override I use. If you pay attention to the &quot;override&quot; argument I have, I will tell you it is for when I want movement to succeed regardless of anything. My problem is this override argument after using it once. For some reason, the argument is then permanently set to 1, thereby making it look like the player is jumping around instead of smoothly sliding around like normal.&lt;br&gt;
&lt;br&gt;
I noticed this after loading from a savefile, and in my mob/Read() proc I use the override argument to set the player's location to wherever they were when saved. I used the override like this in case they load when there is already another dense object where they would load into.&lt;br&gt;
&lt;br&gt;
To me, this sounds like a bug, but I do not want to jump to conclusions since there might be something I am missing. I never used to have this problem I don't think.</description>
        </item>
                <item>
            <title>Windows 7 not able to edit audio files?</title>
            <link>http://www.byond.com/members/SpunkyGirl?command=view_post&amp;post=257725</link>
            <guid>http://www.byond.com/members/SpunkyGirl?command=view_post&amp;post=257725</guid>
            <pubDate>Tue, 07 Feb 2012 04:35:46 +0000</pubDate>
            
            <comments>http://www.byond.com/members/SpunkyGirl?command=view_comments&amp;post=257725#comments</comments>
            
            <description>So I was organizing some new music I had &quot;acquired&quot; and got to some audio files that Windows 7 refused to modify the properties of. It kept giving me the following error code.&lt;br&gt;
&lt;br&gt;
Error 8x8007000D: The data is invalid&lt;br&gt;
&lt;br&gt;
So I google'd this and found nothing but one page regarding the error where someone was using Linux and Windows 7 on one system and had modified the properties of some audio files through Linux and then tried to do so using Windows 7 and received the same error.&lt;br&gt;
&lt;br&gt;
I assume this is basically what happened to my audio files, only I don't have Linux. So the files must've been tampered with on a Linux system before I &quot;acquired&quot; them.&lt;br&gt;
&lt;br&gt;
Now for my question. Is there any way to fix it? :)</description>
        </item>
                <item>
            <title>My desktop computer</title>
            <link>http://www.byond.com/members/SpunkyGirl?command=view_post&amp;post=217676</link>
            <guid>http://www.byond.com/members/SpunkyGirl?command=view_post&amp;post=217676</guid>
            <pubDate>Sun, 29 Jan 2012 01:00:11 +0000</pubDate>
            
            <comments>http://www.byond.com/members/SpunkyGirl?command=view_comments&amp;post=217676#comments</comments>
            
            <description>It's been a while since I posted anything regarding my computer. It's almost totally different than what it was in my last post. I just thought I would post an update. I'm too lazy to do any linking. You can just look it all up on Newegg or wherever.&lt;br&gt;
&lt;br&gt;
Case: HAF 932 Advanced Blue Edition&lt;br&gt;
Motherboard: Asus Sabertooth 990FX&lt;br&gt;
CPU: AMD FX-8150&lt;br&gt;
CPU Cooler: Corsair H50&lt;br&gt;
RAM: 8GB Corsair Dominator (4 x 2GB) DDR3 1333&lt;br&gt;
Video Card 1: Sapphire Vapor-X 6870 1GB/256bit&lt;br&gt;
Video Card 2: Sapphire 6870 1GB/256bit&lt;br&gt;
PSU: Kingwin Lazer LZ-1000 Modular&lt;br&gt;
NIC: D-Link DWA-556&lt;br&gt;
Optical: Plextor PX-880SA-26&lt;br&gt;
Sound Card: Creative Sound Blaster X-FI Titanium&lt;br&gt;
Main Drive: Patriot PS-100 64GB SSD&lt;br&gt;
Secondary Drive 1: WD Caviar Black 640GB SATA II 7200RPM&lt;br&gt;
Secondary Drive 2: (an old laptop HDD) 320GB 5400RPM&lt;br&gt;
External Storage: WD MyBook 3.0 1TB&lt;br&gt;
&lt;br&gt;
I benchmarked this on 3DMark '11 and got just over a 7100. The second 6870 bumped this score up from about 5300 if I remember right.&lt;br&gt;
&lt;br&gt;
The FX-8150 only excels at multitasking and games which use more than one core. My next update to the system will most likely be a bunch of 120mm fans to replace the side and top 230mm fans (4 120s on the side and 2 on the top) for better air flow (gonna replace with multiples of the SilenX 74cfm/15dBA fan :D). Right now the sound card blocks half of the cooling fan on the second video card and my network adapter blocks a quarter of the fan on the primary video card. Bad :\ Asus didn't do a very good layout with the PCI/PCIe slots on the Sabertooth.</description>
        </item>
                <item>
            <title>Cheap $400 server? I could use some help/advice</title>
            <link>http://www.byond.com/members/SpunkyGirl?command=view_post&amp;post=278523</link>
            <guid>http://www.byond.com/members/SpunkyGirl?command=view_post&amp;post=278523</guid>
            <pubDate>Sat, 17 Dec 2011 06:30:46 +0000</pubDate>
            
            <comments>http://www.byond.com/members/SpunkyGirl?command=view_comments&amp;post=278523#comments</comments>
            
            <description>I was looking into building a &quot;server&quot; that is extremely light on the power bill (adding no more than like $5 a month), where my beast adds around $20 a month if I leave it on 24/7. I just plan on using it to host a game or two on BYOND, and maybe something else like a Minecraft server, and most likely a bunch of other data.&lt;br&gt;
&lt;br&gt;
I want to put Linux on it, of course, except I will need some help getting that done from the ground up, as well as getting BYOND set up on it.&lt;br&gt;
&lt;br&gt;
It needs to be very-low-energy-cost and energy-efficient&lt;br&gt;
&lt;br&gt;
As for the setup, I figured I would hardwire it to my router at home so I could access any data on it through my desktop and laptop wirelessly. Is there a way to run commands on it using my desktop/laptop so I can tell it to shut down a game, bring a game up, etc?&lt;br&gt;
&lt;br&gt;
And as for the actual hardware, I compiled a list of the parts I would order. I already have a case I can put them in, along with a keyboard, mouse, and monitor.&lt;br&gt;
CPU - &lt;a href=&quot;http://www.newegg.com/Product/Product.aspx?Item=N82E16819116399&quot;&gt;http://www.newegg.com/Product/ Product.aspx?Item=N82E16819116399&lt;/a&gt;&lt;br&gt;
Motherboard - &lt;a href=&quot;http://www.newegg.com/Product/Product.aspx?Item=N82E16813138332&quot;&gt;http://www.newegg.com/Product/ Product.aspx?Item=N82E16813138332&lt;/a&gt;&lt;br&gt;
RAM - &lt;a href=&quot;http://www.newegg.com/Product/Product.aspx?Item=N82E16820226095&quot;&gt;http://www.newegg.com/Product/ Product.aspx?Item=N82E16820226095&lt;/a&gt;&lt;br&gt;
HDD - &lt;a href=&quot;http://www.newegg.com/Product/Product.aspx?Item=N82E16822145299&quot;&gt;http://www.newegg.com/Product/ Product.aspx?Item=N82E16822145299&lt;/a&gt; (x2 for RAID-1)&lt;br&gt;
Video Card - &lt;a href=&quot;http://www.newegg.com/Product/Product.aspx?Item=N82E16814127591&quot;&gt;http://www.newegg.com/Product/ Product.aspx?Item=N82E16814127591&lt;/a&gt; (to free up CPU usage)&lt;br&gt;
PSU - &lt;a href=&quot;http://www.newegg.com/Product/Product.aspx?Item=N82E16817182066&quot;&gt;http://www.newegg.com/Product/ Product.aspx?Item=N82E16817182066&lt;/a&gt; (low wattage, high efficiency)&lt;br&gt;
It all comes to $407.93 (not including shipping). Any suggestions for better/cheaper parts? Anyone else notice how Hard Drive prices are completely ridiculous right now? I originally was just gonna buy a couple cheap 80GB HDDs for, I was hoping, around $30 or less, but even those are ~$80! Holy crap!&lt;br&gt;
&lt;br&gt;
I'm new to Linux and the whole server thing, and I probably shouldn't be doing this without someone who does know what they are doing, but I figured I'd give it a try if it all looks promising.&lt;br&gt;
&lt;br&gt;
If you have any questions to help you to help me, please ask. Obviously it would probably be cheaper to buy an old used server from somewhere like TigerDirect, Craig's List, or even EBay, but I'd like to build it from scratch myself. I want the whole experience. I'm using this build as sort of an &quot;entry level&quot; step I guess. Hey, I might even offer to host other peoples' games for them here on BYOND :D</description>
        </item>
                <item>
            <title>SSD vs HDD write/read speeds</title>
            <link>http://www.byond.com/members/SpunkyGirl?command=view_post&amp;post=278516</link>
            <guid>http://www.byond.com/members/SpunkyGirl?command=view_post&amp;post=278516</guid>
            <pubDate>Sun, 27 Nov 2011 20:06:28 +0000</pubDate>
            
            <comments>http://www.byond.com/members/SpunkyGirl?command=view_comments&amp;post=278516#comments</comments>
            
            <description>With the HDD technology continuously pushing the capacity of hard drives (I saw a 3TB HDD on Newegg for almost $500 x.x), have they even improved their write/read speeds? And what ARE their write/read speeds specifically anyways? Latency doesn't tell me much, unless you can do some math with it to figure out the actual write/read speeds of the drive. Could someone give me the write/read speeds of 5400RPM, 7200RPM, and 10000RPM HDDs on the market right now?&lt;br&gt;
&lt;br&gt;
With SSDs nowadays pushing past 500MB/s read speed (&lt;a href=&quot;http://www.newegg.com/Product/Product.aspx?Item=N82E16820227755&quot; target=&quot;_blank&quot;&gt;this&lt;/a&gt; drive in particular peaked my interest), is there anything better at a similar or cheaper price in the HDD or SSD market?</description>
        </item>
                <item>
            <title>Laptop tech VS Desktop tech</title>
            <link>http://www.byond.com/members/SpunkyGirl?command=view_post&amp;post=120765</link>
            <guid>http://www.byond.com/members/SpunkyGirl?command=view_post&amp;post=120765</guid>
            <pubDate>Fri, 04 Nov 2011 06:27:52 +0000</pubDate>
            
            <comments>http://www.byond.com/members/SpunkyGirl?command=view_comments&amp;post=120765#comments</comments>
            
            <description>This is building off of &lt;a href=&quot;http://www.byond.com/developer/forum/?id=795038#795038&quot; target=&quot;_blank&quot;&gt;here&lt;/a&gt;.&lt;br&gt;
&lt;br&gt;
Laptops have their circumstantial uses over desktops...&lt;br&gt;
- Portable&lt;br&gt;
- Battery-powered&lt;br&gt;
That's just about it...&lt;br&gt;
&lt;br&gt;
Desktops are better in every other way...&lt;br&gt;
&lt;br&gt;
This guy thinks an NVidia 525M is better than a 6970. This guy thinks that all desktop PSUs suck because he got a couple duds that crapped out on him and laptop batteries are superior. This guy's never heard of a UPS/Surge Protector before. This guy WISHES laptop batteries were $20. This guy thinks you need more than 2 plugs to power a standard rig (1 for the tower; 1 for the monitor). This guy thinks you need more than stock cooling for a standard rig. This guy thinks Crysis (a 3 year old game) is still a good benchmarking standard.&lt;br&gt;
&lt;br&gt;
This guy... lol... Shit happens, but this guys is just a lot of shit (and shitty info).</description>
        </item>
                <item>
            <title>So my laptop kicked the bucket...</title>
            <link>http://www.byond.com/members/SpunkyGirl?command=view_post&amp;post=278504</link>
            <guid>http://www.byond.com/members/SpunkyGirl?command=view_post&amp;post=278504</guid>
            <pubDate>Thu, 03 Nov 2011 02:22:55 +0000</pubDate>
            
            <comments>http://www.byond.com/members/SpunkyGirl?command=view_comments&amp;post=278504#comments</comments>
            
            <description>My HP Touchsmart tm2t laptop decided to kick the bucket - the graphics controller crapped out on me. Would there be any way to fix that other than sending it to HP for them to fix?&lt;br&gt;
&lt;br&gt;
If not, would anyone be able to recommend a cheap, reliable (as in it won't crap out on me in a year...), and decently powerful laptop? I wanna be able to at least run games like the soon to come Diablo 3 and Team Fortress 2 and Left 4 Dead 2 and such on it.</description>
        </item>
                <item>
            <title>Net Beans bug?</title>
            <link>http://www.byond.com/members/SpunkyGirl?command=view_post&amp;post=278494</link>
            <guid>http://www.byond.com/members/SpunkyGirl?command=view_post&amp;post=278494</guid>
            <pubDate>Sat, 08 Oct 2011 23:35:40 +0000</pubDate>
            
            <comments>http://www.byond.com/members/SpunkyGirl?command=view_comments&amp;post=278494#comments</comments>
            
            <description>Lately I have been messing with the Java language and Net Beans. However, I encountered a strange happening that makes no sense to me...&lt;br&gt;
&lt;br&gt;
If I am not mistaken, the following operation should yield 10.&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;
public class whatever&lt;br&gt;{&lt;br&gt;    int max = 1000;&lt;br&gt;    int current = 100;&lt;br&gt;    public &lt;span class=&quot;dmkeyword&quot;&gt;static&lt;/span&gt; void main(String args[])&lt;br&gt;    {&lt;br&gt;        int percentage = current/max*100;&lt;br&gt;        JOptionPane.showMessageDialog(rootPane,percentage);&lt;br&gt;    }&lt;br&gt;}
&lt;/pre&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;/div&gt;
&lt;br&gt;
&lt;br&gt;
Why does it yield 0? 100/1000 = 0.1 and then 0.1 * 100 = 10.</description>
        </item>
            
    </channel>
</rss>

