<?xml version="1.0" encoding="ISO-8859-1"?>
<rss version="2.0">
    <channel>
        <title>Theo-death's site</title>
        <link>http://www.byond.com/members/Theodeath</link>
        <description></description>
        <lastBuildDate>Sat, 11 Feb 2012 00:38:28 +0000</lastBuildDate>
        <language>en-us</language>
    
                <item>
            <title>Location help!</title>
            <link>http://www.byond.com/members/Theodeath?command=view_post&amp;post=264675</link>
            <guid>http://www.byond.com/members/Theodeath?command=view_post&amp;post=264675</guid>
            <pubDate>Tue, 02 Mar 2010 23:28:09 +0000</pubDate>
            
            <comments>http://www.byond.com/members/Theodeath?command=view_comments&amp;post=264675#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;        Deathcheck(mob/M) &lt;span class=&quot;dmcomment&quot;&gt;// DEATH&lt;/span&gt;&lt;br&gt;            &lt;span class=&quot;dmkeyword&quot;&gt;if&lt;/span&gt;(M.Health&amp;lt;=0).&lt;br&gt;                usr.loc = locate(3,3,3) &lt;span class=&quot;dmcomment&quot;&gt;//respawn point&lt;/span&gt;&lt;br&gt;                M &amp;lt;&amp;lt; &lt;span class=&quot;dmstring&quot;&gt;&amp;quot;&amp;lt;b&amp;gt;&amp;lt;font color = red&amp;gt;You died!&amp;lt;/b&amp;gt;&amp;lt;/color&amp;gt;&amp;quot;&lt;/span&gt; &lt;span class=&quot;dmcomment&quot;&gt;// Tell them theyre dead&lt;/span&gt;&lt;br&gt;                world&amp;lt;&amp;lt;&lt;span class=&quot;dmstring&quot;&gt;&amp;quot;&amp;lt;b&amp;gt;&amp;lt;font color = red&amp;gt;BattleAI: &lt;/span&gt;&lt;span class=&quot;dmbrace&quot;&gt;[M]&lt;/span&gt;&lt;span class=&quot;dmstring&quot;&gt; has been killed by &lt;/span&gt;&lt;span class=&quot;dmbrace&quot;&gt;[src]&lt;/span&gt;&lt;span class=&quot;dmstring&quot;&gt;&amp;lt;/b&amp;gt;&amp;lt;/color&amp;gt;&amp;quot;&lt;/span&gt; &lt;span class=&quot;dmcomment&quot;&gt;//tell the world you attacked them.&lt;/span&gt;&lt;br&gt;                sleep(30) &lt;span class=&quot;dmcomment&quot;&gt;// wait 3 secs&lt;/span&gt;&lt;br&gt;                M.Health = src.MaxHealth &lt;span class=&quot;dmcomment&quot;&gt;// heal&lt;/span&gt;&lt;br&gt;                M.Chi = usr.MaxChi&lt;br&gt;                M.Bending = 0
&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:When I do this it sends me to a random location like (122,3,8) Help me please!&lt;/b&gt;&lt;br&gt;
&lt;br&gt;</description>
        </item>
                <item>
            <title>Cannot read null problem! Help please!</title>
            <link>http://www.byond.com/members/Theodeath?command=view_post&amp;post=264674</link>
            <guid>http://www.byond.com/members/Theodeath?command=view_post&amp;post=264674</guid>
            <pubDate>Tue, 02 Mar 2010 00:06:59 +0000</pubDate>
            
            <comments>http://www.byond.com/members/Theodeath?command=view_comments&amp;post=264674#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;
mob&lt;br&gt;    &lt;span class=&quot;dmkeyword&quot;&gt;proc&lt;/span&gt;&lt;br&gt;        Deathcheck(mob/M) &lt;span class=&quot;dmcomment&quot;&gt;// DEATH&lt;/span&gt;&lt;br&gt;            &lt;span class=&quot;dmkeyword&quot;&gt;if&lt;/span&gt;(M.Health&amp;lt;=0)&lt;br&gt;                &lt;span class=&quot;dmkeyword&quot;&gt;if&lt;/span&gt;(M.NPC)&lt;br&gt;                    &lt;span class=&quot;dmkeyword&quot;&gt;del&lt;/span&gt;(M)&lt;br&gt;                &lt;span class=&quot;dmkeyword&quot;&gt;else&lt;/span&gt; &lt;span class=&quot;dmcomment&quot;&gt;//is there health less than or equal to 0&lt;/span&gt;&lt;br&gt;                    M.loc = locate(0,0,0) &lt;span class=&quot;dmcomment&quot;&gt;// yep. toss em out.&lt;/span&gt;&lt;br&gt;                    M &amp;lt;&amp;lt; &lt;span class=&quot;dmstring&quot;&gt;&amp;quot;You died!&amp;quot;&lt;/span&gt; &lt;span class=&quot;dmcomment&quot;&gt;// Tell them theyre dead&lt;/span&gt;&lt;br&gt;                    world&amp;lt;&amp;lt;&lt;span class=&quot;dmstring&quot;&gt;&amp;quot;&amp;lt;b&amp;gt;&amp;lt;font color = red&amp;gt;BattleAI: &lt;/span&gt;&lt;span class=&quot;dmbrace&quot;&gt;[M]&lt;/span&gt;&lt;span class=&quot;dmstring&quot;&gt; has been killed by &lt;/span&gt;&lt;span class=&quot;dmbrace&quot;&gt;[src]&lt;/span&gt;&lt;span class=&quot;dmstring&quot;&gt;&amp;quot;&lt;/span&gt; &lt;span class=&quot;dmcomment&quot;&gt;//tell the world you attacked them.&lt;/span&gt;&lt;br&gt;                    sleep(30) &lt;span class=&quot;dmcomment&quot;&gt;// wait 3 secs&lt;/span&gt;&lt;br&gt;                    M.loc = locate(6,6,1) &lt;span class=&quot;dmcomment&quot;&gt;//respawn point&lt;/span&gt;&lt;br&gt;                    M.Health = src.MaxHealth &lt;span class=&quot;dmcomment&quot;&gt;// heal&lt;/span&gt;&lt;br&gt;                    M.Chi = usr.MaxChi&lt;br&gt;                    M.Bending = 0
&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:Yuuretsu Hirako (/mob): Earth Bend(EarthBender (/mob/EarthBender/EarthBender))&lt;br&gt;
runtime error: Cannot read null.Health&lt;br&gt;&lt;/b&gt;&lt;br&gt;
&lt;br&gt;</description>
        </item>
            
    </channel>
</rss>


