<?xml version="1.0" encoding="ISO-8859-1"?>
<rss version="2.0">
    <channel>
        <title>Wizkidd0123's site</title>
        <link>http://www.byond.com/members/Wizkidd0123</link>
        <description></description>
        <lastBuildDate>Sat, 25 May 2013 04:42:15 +0000</lastBuildDate>
        <language>en-us</language>
    
                <item>
            <title>Tea</title>
            <link>http://www.byond.com/members/Wizkidd0123?command=view_post&amp;post=29350</link>
            <guid>http://www.byond.com/members/Wizkidd0123?command=view_post&amp;post=29350</guid>
            <pubDate>Mon, 09 Apr 2007 16:28:30 +0000</pubDate>
            
            <comments>http://www.byond.com/members/Wizkidd0123?command=view_comments&amp;post=29350#comments</comments>
            
            <description>&quot;It would seem that I've brought a slight addiction back with me from China,&quot; I thought to myself when I woke up at 4:30* this morning with a weird craving for tea.&lt;br&gt;
&lt;br&gt;
Before I went to China, I used to occasionally like to drink fruit-flavored teas like &quot;Ginger Peach&quot; and &quot;Red Raspberry,&quot; but not in a regular addiction sort of way. Coming back from a week of being served various kinds of tea at every meal, I'm now regularly experiencing cravings for much stronger kinds of tea like &quot;Irish Breakfast.&quot;&lt;br&gt;
&lt;br&gt;
*Hopefully more for jet-lag reasons than for addiction reasons</description>
        </item>
                <item>
            <title>Back from China!</title>
            <link>http://www.byond.com/members/Wizkidd0123?command=view_post&amp;post=29251</link>
            <guid>http://www.byond.com/members/Wizkidd0123?command=view_post&amp;post=29251</guid>
            <pubDate>Sat, 07 Apr 2007 01:33:40 +0000</pubDate>
            
            <comments>http://www.byond.com/members/Wizkidd0123?command=view_comments&amp;post=29251#comments</comments>
            
            <description>I've been in Beijing and Shanghai for the last 9 days, but am too tired to write about stuff just now.</description>
        </item>
                <item>
            <title>A Set of More-Concrete Rules for wiz_chat</title>
            <link>http://www.byond.com/members/Wizkidd0123?command=view_post&amp;post=25235</link>
            <guid>http://www.byond.com/members/Wizkidd0123?command=view_post&amp;post=25235</guid>
            <pubDate>Wed, 03 Jan 2007 04:41:34 +0000</pubDate>
            
            <comments>http://www.byond.com/members/Wizkidd0123?command=view_comments&amp;post=25235#comments</comments>
            
            <description>As proved by experience, &quot;no evilness&quot; is just too vague. Therefore, I'm making better rules. So far, I've come up with this:&lt;br&gt;
&lt;br&gt;
&lt;a href=&quot;http://members.byond.com/Wizkidd0123/files/wiz_chat%20rules.txt&quot;&gt;http://members.byond.com/Wizkidd0123/files/ wiz_chat%20rules.txt&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
What do you think should be added/removed/changed/improved? Please comment.</description>
        </item>
                <item>
            <title>Viewing Webpages in the Dream Seeker Browser tab</title>
            <link>http://www.byond.com/members/Wizkidd0123?command=view_post&amp;post=195095</link>
            <guid>http://www.byond.com/members/Wizkidd0123?command=view_post&amp;post=195095</guid>
            <pubDate>Wed, 22 Nov 2006 02:10:40 +0000</pubDate>
            
            <comments>http://www.byond.com/members/Wizkidd0123?command=view_comments&amp;post=195095#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;
&lt;span class=&quot;dmcomment&quot;&gt;//Title: Viewing Webpages in the Dream Seeker Browser tab&lt;/span&gt;&lt;br&gt;&lt;span class=&quot;dmcomment&quot;&gt;//Credit to: Wizkidd0123&lt;/span&gt;&lt;br&gt;&lt;span class=&quot;dmcomment&quot;&gt;//Contributed by: Wizkidd0123&lt;/span&gt;&lt;br&gt;&lt;br&gt;&lt;span class=&quot;dmcomment&quot;&gt;/*&lt;br&gt;The built-in link() function is one way to send the user to &lt;br&gt;a website; however, it isn't necessarily the best choice&lt;br&gt;interface-wise. Instead of utilizing Dream Seeker's built-in&lt;br&gt;Browser tab to that website, link() actually opens a new&lt;br&gt;browser window.&lt;br&gt;&lt;br&gt;In general, I find that when the website is part of a&lt;br&gt;game (e.g., game directions), it's better to keep it&lt;br&gt;in the same window as the game (in other words,&lt;br&gt;to open the website in the Dream Seeker browser tab).&lt;br&gt;Since BYOND has no built-in function to do this,&lt;br&gt;I wrote a snippet:&lt;br&gt;&lt;br&gt;&lt;br&gt;Arguments:&lt;br&gt;    url            (self-explanatory)&lt;br&gt;    recipient      (the object who will see [url] in its browser)&lt;br&gt;    browse_options (see the ref entry for browse())&lt;br&gt;*/&lt;/span&gt;&lt;br&gt;&lt;span class=&quot;dmkeyword&quot;&gt;proc&lt;/span&gt;/browse_link(url,recipient,browse_options)&lt;br&gt;    recipient &amp;lt;&amp;lt; browse(\&lt;br&gt;&lt;span class=&quot;dmstring&quot;&gt;&amp;quot;&amp;lt;html&amp;gt;&amp;lt;head&amp;gt;&amp;lt;/head&amp;gt;&amp;lt;body disabledLoad=\&quot;parent.location='&lt;/span&gt;&lt;span class=&quot;dmbrace&quot;&gt;[url]&lt;/span&gt;&lt;span class=&quot;dmstring&quot;&gt;'\&quot;&amp;gt;&amp;lt;/body&amp;gt;&amp;lt;/html&amp;gt;&amp;quot;&lt;/span&gt;\&lt;br&gt;,browse_options)&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;span class=&quot;dmcomment&quot;&gt;///*&lt;/span&gt;&lt;br&gt;&lt;span class=&quot;dmcomment&quot;&gt;//Testing Code/Sample Implementation:&lt;/span&gt;&lt;br&gt;&lt;br&gt;client/&lt;span class=&quot;dmkeyword&quot;&gt;verb&lt;/span&gt;/test_browse_link()&lt;br&gt;    &lt;span class=&quot;dmcomment&quot;&gt;//everybody will have google.com in their browser&lt;/span&gt;&lt;br&gt;    browse_link(&lt;span class=&quot;dmstring&quot;&gt;&amp;quot;http://google.com&amp;quot;&lt;/span&gt;,world)&lt;br&gt;&lt;span class=&quot;dmcomment&quot;&gt;//*/&lt;/span&gt;
&lt;/pre&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;/div&gt;</description>
        </item>
                <item>
            <title>&lt;_&lt;</title>
            <link>http://www.byond.com/members/Wizkidd0123?command=view_post&amp;post=20636</link>
            <guid>http://www.byond.com/members/Wizkidd0123?command=view_post&amp;post=20636</guid>
            <pubDate>Tue, 10 Oct 2006 02:46:25 +0000</pubDate>
            
            <comments>http://www.byond.com/members/Wizkidd0123?command=view_comments&amp;post=20636#comments</comments>
            
            <description>So splatty muted one Dark_Yondaine for homophobia today in wiz_chat. Soon, he spammed by joining/rejoining the Lounge repeatedly so I banned him. Then, tried to spam with other keys (and was thwarted by wiz_chat's spam protection). Finally:&lt;br&gt;
&lt;br&gt;
[Oct 10 04:36] * Dark_Yondaime tells you: Unbann me from Lounge please&lt;br&gt;
[Oct 10 04:36] * You tell Dark_Yondaime: No.&lt;br&gt;
[Oct 10 04:36] * Dark_Yondaime tells you: Yes&lt;br&gt;
[Oct 10 04:36] * Dark_Yondaime tells you: Do u know who i am&lt;br&gt;
[Oct 10 04:37] * Dark_Yondaime tells you: i am Dantom&lt;br&gt;
[Oct 10 04:37] * Dark_Yondaime tells you: so UNBANN ME&lt;br&gt;
[Oct 10 04:37] * Dark_Yondaime tells you: Or Face the consequences&lt;br&gt;
[Oct 10 04:38] * You tell Dark_Yondaime: Dantom = Dan + Tom (two people).&lt;br&gt;
[Oct 10 04:38] * Dark_Yondaime tells you: i know i am Dan&lt;br&gt;
[Oct 10 04:38] * Dark_Yondaime tells you: my bro is tom&lt;br&gt;
[Oct 10 04:38] * Dark_Yondaime tells you: thats why our key is Dantom</description>
        </item>
                <item>
            <title>Armies</title>
            <link>http://www.byond.com/members/Wizkidd0123?command=view_post&amp;post=20514</link>
            <guid>http://www.byond.com/members/Wizkidd0123?command=view_post&amp;post=20514</guid>
            <pubDate>Sun, 08 Oct 2006 02:23:46 +0000</pubDate>
            
            <comments>http://www.byond.com/members/Wizkidd0123?command=view_comments&amp;post=20514#comments</comments>
            
            <description>&lt;em&gt;After writing a comment in Developous' blog today, I realized that I had just explained how to play his Armies game. If anybody else wants to try, they may find the comment useful (copied from his blog):&lt;/em&gt;&lt;br&gt;
&lt;br&gt;
I played Armies today and liked it. It took me an hour and a half to figure out how to work it (I was bored enough at the time to make the attempt), but I like puzzles, so I enjoyed that. There are still portions of it that remain mysteries to me, but I can see that you put a lot of work into it, and that it could potentially be fun if multiple people who understand how it works played together.&lt;br&gt;
&lt;br&gt;
The real problem (as I see that you recognize) is incomprehensible documentation. The source of that problem is that your writing makes assumptions about what the reader knows when in reality, he probably doesn't know it. Pretend you're writing for a newborn infant who needs &lt;strong&gt;everything&lt;/strong&gt; spelled out. You might think that some of what you're writing will be obvious, but really, it won't.&lt;br&gt;
&lt;br&gt;
For example, you say things like &quot;have your villager build a burrow.&quot; Instead, explain it like this:&lt;br&gt;
&lt;br&gt;
---&lt;br&gt;
&lt;br&gt;
Every tile in the world of Armies has a property called &quot;energy.&quot; The energy of a tile can be found by standing on the tile and looking at your statistics verb panel.&lt;br&gt;
&lt;br&gt;
Every time you want to build something on the tile, it requires the use of a certain amount of energy from the tile depending on what's being built. Every time you the player spend a turn standing on a tile, that tile's energy increases by 5.&lt;br&gt;
&lt;br&gt;
As a player, you have something called &quot;spare energy.&quot; Spare energy increases on every new turn. Using the command &quot;give energy,&quot; the player can transfer a chosen amount of this spare energy to the energy of the tile on which he stands.&lt;br&gt;
&lt;br&gt;
The player has three different &quot;modes,&quot; which allow him to fulfil certain roles. Two of these are for attacking enemies, while the &quot;builder&quot; mode is for building up your base. At the beginning, you probably want builder mode. Select builder mode by right-clicking on your character, choosing the &quot;Change Mode&quot; option, selecting &quot;builder&quot; and pressing OK.&lt;br&gt;
&lt;br&gt;
The first time you do this, because it is the beginning of the game, you are given a free villager unit. This unit is created while you are standing.&lt;br&gt;
&lt;br&gt;
A move consistents of a movement one tile up, down, east, or west. Each unit has two moves per turn. Each unit has a &quot;specialty.&quot; Villagers have the specialty, for example, of building on tiles and upgrading pre-existing buildings. To use a unit's specialty, right click on the unit, and select the &quot;Specialty&quot; option. In the villager's case, a menu filled with element names (eg, &quot;fire,&quot; &quot;earth,&quot; &quot;water&quot;) will come up. These represent types of buildings [Developous, there should be a -detailed- explanation somewhere of what each building does].&lt;br&gt;
&lt;br&gt;
The &quot;earth&quot; building is called a &quot;burrow.&quot; With it, the player can create wolves. To build one, using the &quot;give&quot; command, transfer 15 units from spare energy to the energy of the tile on which you want to build the burrow, move the villager on top of that tile, right click on the villager unit, select &quot;Specialty,&quot; select &quot;Earth,&quot; and select OK. Now you've created a burrow!&lt;br&gt;
&lt;br&gt;
To create a wolf with this burrow (wolf creation, after all, is the function of burrows), stand on top of the burrow. In this position, a new verb panel entitled &quot;Hiring&quot; will appear. Transfer 25 spare energy to the tile's energy using the give command (25 energy is the amount needed to build a wolf), and press the MakeWolf command in the Hiring panel. Now you have a wolf!&lt;br&gt;
&lt;br&gt;
---&lt;br&gt;
&lt;br&gt;
When writing documentation, you need to be -at least- that detailed (probably more!). In fact, if you wrote that way even in writing blog posts, I think everyone would understand what you're trying to say much more. =)</description>
        </item>
                <item>
            <title>Silly Politics Test (that I took)</title>
            <link>http://www.byond.com/members/Wizkidd0123?command=view_post&amp;post=18549</link>
            <guid>http://www.byond.com/members/Wizkidd0123?command=view_post&amp;post=18549</guid>
            <pubDate>Tue, 05 Sep 2006 11:39:13 +0000</pubDate>
            
            <comments>http://www.byond.com/members/Wizkidd0123?command=view_comments&amp;post=18549#comments</comments>
            
            <description>&lt;center&gt;
&lt;table style='border:1px solid black'&gt;
&lt;tr&gt;
&lt;td align=&quot;center&quot;&gt;&lt;font size=&quot;3&quot;&gt;You are a&lt;/font&gt;
&lt;center&gt;&lt;font size=&quot;3&quot;&gt;&lt;br&gt;
&lt;font size=&quot;4&quot;&gt;&lt;b&gt;Social Liberal&lt;/b&gt;&lt;/font&gt;&lt;br&gt;
&lt;font shmolor=&quot;a8a8a8&quot; size=&quot;3&quot;&gt;(88% permissive)&lt;/font&gt;&lt;br&gt;&lt;/font&gt;&lt;/center&gt;
&lt;font size=&quot;3&quot;&gt;&lt;br&gt;
and an...&lt;/font&gt;
&lt;center&gt;&lt;font size=&quot;3&quot;&gt;&lt;br&gt;
&lt;font size=&quot;4&quot;&gt;&lt;b&gt;Economic Liberal&lt;/b&gt;&lt;/font&gt;&lt;br&gt;
&lt;font shmolor=&quot;#a8a8a8&quot; size=&quot;3&quot;&gt;(11% permissive)&lt;/font&gt;&lt;br&gt;&lt;/font&gt;&lt;/center&gt;
&lt;font size=&quot;3&quot;&gt;&lt;br&gt;
You are best described as a:&lt;br&gt;
&lt;br&gt;&lt;/font&gt;
&lt;center&gt;&lt;font size=&quot;3&quot;&gt;&lt;font size=&quot;+2&quot;&gt;&lt;u&gt;&lt;b&gt;Socialist&lt;/b&gt;&lt;/u&gt;&lt;/font&gt;&lt;/font&gt;&lt;/center&gt;
&lt;br&gt;
&lt;table id=&quot;thetable&quot; name=&quot;thetable&quot; background=&quot;http://is2.okcupid.com/graphics/politics/chart_political.gif&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; height=&quot;375&quot; width=&quot;375&quot;&gt;
&lt;tbody&gt;
&lt;tr height=&quot;312&quot;&gt;
&lt;td width=&quot;312&quot;&gt;&lt;!--this width sets social axis, center is 169--&gt;&lt;/td&gt;
&lt;td width=&quot;62&quot;&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr height=&quot;62&quot;&gt;&lt;!--this height number economic axis,        center is 206--&gt;
&lt;td width=&quot;312&quot;&gt;&lt;/td&gt;
&lt;td align=&quot;left&quot; valign=&quot;top&quot; width=&quot;62&quot;&gt;&lt;!--this cellholds the image--&gt;&lt;img src=&quot;http://is2.okcupid.com/graphics/politics_you.gif&quot; border=&quot;0&quot;&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;br&gt;
&lt;table id=&quot;thetable&quot; name=&quot;thetable&quot; background=&quot;http://is2.okcupid.com/graphics/politics/chart_basic.jpg&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; height=&quot;375&quot; width=&quot;375&quot;&gt;
&lt;tbody&gt;
&lt;tr height=&quot;312&quot;&gt;
&lt;td width=&quot;312&quot;&gt;&lt;!--this width sets social axis, center is 169--&gt;&lt;/td&gt;
&lt;td width=&quot;62&quot;&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr height=&quot;62&quot;&gt;&lt;!--this height number economic axis,        center is 206--&gt;
&lt;td width=&quot;312&quot;&gt;&lt;/td&gt;
&lt;td align=&quot;left&quot; valign=&quot;top&quot; width=&quot;62&quot;&gt;&lt;!--this cellholds the image--&gt;&lt;img src=&quot;http://is2.okcupid.com/graphics/politics_you.gif&quot; border=&quot;0&quot;&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;br&gt;
&lt;br&gt;
Link: &lt;a href='http://www.okcupid.com/politics'&gt;&lt;b&gt;The Politics Test&lt;/b&gt;&lt;/a&gt; on &lt;a href='http://www.okcupid.com'&gt;&lt;b&gt;Ok Cupid&lt;/b&gt;&lt;/a&gt;&lt;br&gt;
Also: &lt;a href='http://www.okcupid.com/oktest3'&gt;The OkCupid Dating Persona Test&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;/center&gt;</description>
        </item>
                <item>
            <title>wiz_chat OP Issues (cont.)</title>
            <link>http://www.byond.com/members/Wizkidd0123?command=view_post&amp;post=18052</link>
            <guid>http://www.byond.com/members/Wizkidd0123?command=view_post&amp;post=18052</guid>
            <pubDate>Mon, 28 Aug 2006 01:57:54 +0000</pubDate>
            
            <comments>http://www.byond.com/members/Wizkidd0123?command=view_comments&amp;post=18052#comments</comments>
            
            <description>&amp;lt;--(9:55 pm) Jon88: Wiz, please remove my OP. I've asked you nicely.&lt;br&gt;
&lt;br&gt;
So that's done too now, I guess.</description>
        </item>
                <item>
            <title>wiz_chat OP Issues</title>
            <link>http://www.byond.com/members/Wizkidd0123?command=view_post&amp;post=18051</link>
            <guid>http://www.byond.com/members/Wizkidd0123?command=view_post&amp;post=18051</guid>
            <pubDate>Mon, 28 Aug 2006 01:15:30 +0000</pubDate>
            
            <comments>http://www.byond.com/members/Wizkidd0123?command=view_comments&amp;post=18051#comments</comments>
            
            <description>Not having been on for a couple of days, I came back to find all of the abuse reports on the blogs.&lt;br&gt;
&lt;br&gt;
I've removed Elation from the OP list (I'm not angry, and I still like you as a person, but I can't have the abuse in the Lounge &amp;lt;_&amp;lt;).&lt;br&gt;
&lt;br&gt;
I've gotten reports of abuse about Jon, and the logs can occasionally look bad, but when I look at the notes, it fits together (eg, one of the guys he banned while looking like an abuser was actually an alt. of an already-banned key).</description>
        </item>
                <item>
            <title>Amazing.</title>
            <link>http://www.byond.com/members/Wizkidd0123?command=view_post&amp;post=17041</link>
            <guid>http://www.byond.com/members/Wizkidd0123?command=view_post&amp;post=17041</guid>
            <pubDate>Sun, 13 Aug 2006 02:51:46 +0000</pubDate>
            
            <comments>http://www.byond.com/members/Wizkidd0123?command=view_comments&amp;post=17041#comments</comments>
            
            <description>This is a really great performance, and would be amazing as well even if it were done by Richter or Gulda or Brendel. She did this at 10 years old: &lt;a href=&quot;http://www.youtube.com/watch?v=32gsiqbjbk8&quot;&gt;http://www.youtube.com/watch?v=32gsiqbjbk8&lt;/a&gt;.</description>
        </item>
            
    </channel>
</rss>

