<?xml version="1.0" encoding="iso-8859-1"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title>Guides</title>
		<link>http://odindeveloping.forumotion.net/guides-f3/-t1.htm</link>
		<description></description>
		<lastBuildDate>Mon, 26 Jan 2009 21:42:16 GMT</lastBuildDate>
		<ttl>10</ttl>
		<image>
			<title>Guides</title>
			<url>http://img148.imageshack.us/img148/7351/odindevelopinglo7.png</url>
			<link>http://odindeveloping.forumotion.net/guides-f3/-t1.htm</link>
		</image>
		<item>
			<title>Check for current map(s)</title>
			<link>http://odindeveloping.forumotion.net/guides-f3/check-for-current-maps-t14.htm</link>
			<dc:creator>Flav</dc:creator>
			<description>This can be useful if you add a teleport player command and want it to make not working from jail map.



Code:if &#40;c.getPlayer&#40;&#41;.getMapId&#40;&#41; != MapId&#41; &#123; ... &#125; else &#123; mc.dropMessage&#40;&quot;You can't use this command from this map.&quot;&#41;; &#125;

If you want to make it for two mapes, you sperate the &quot;map checks&quot; with &quot;&amp;&amp;&quot;.

This example blocks the command from the jail maps 200090300 and 980000404.

Code:if &#40;c.getPlayer&#40;&#41;.getMapId&#40;&#41;  ...</description>
			<category>Guides</category>
			<pubDate>Mon, 26 Jan 2009 21:42:16 GMT</pubDate>
			<comments>http://odindeveloping.forumotion.net/guides-f3/check-for-current-maps-t14.htm#36</comments>
			<guid>http://odindeveloping.forumotion.net/guides-f3/check-for-current-maps-t14.htm</guid>
		</item>
		<item>
			<title>Disable 2x EXP Cards</title>
			<link>http://odindeveloping.forumotion.net/guides-f3/disable-2x-exp-cards-t5.htm</link>
			<dc:creator>Flav</dc:creator>
			<description>Somebody asked me on MSN how to disable 2x EXP Cards. Either you make every 2x EXP Card not buy able in the Cash Shop or you can easily do this :



Open MapleCharacter.java and change

Code:      for &#40; int i=5210999; i&lt;5211048; i++ &#41; &#123;

         if &#40;haveItem&#40;i, 1, false, true&#41;&#41; &#123;

            return 2;

         &#125;

      ...</description>
			<category>Guides</category>
			<pubDate>Sat, 16 Aug 2008 19:46:45 GMT</pubDate>
			<comments>http://odindeveloping.forumotion.net/guides-f3/disable-2x-exp-cards-t5.htm#5</comments>
			<guid>http://odindeveloping.forumotion.net/guides-f3/disable-2x-exp-cards-t5.htm</guid>
		</item>
		<item>
			<title>Use a skill when logging in</title>
			<link>http://odindeveloping.forumotion.net/guides-f3/use-a-skill-when-logging-in-t9.htm</link>
			<dc:creator>Flav</dc:creator>
			<description>Open PlayerLoggedinHandler.java and replace

Code:      if &#40;player.isGM&#40;&#41;&#41; &#123;

         // GM gets super haste when logging in

         SkillFactory.getSkill&#40;5101004&#41;.getEffect&#40;1&#41;.applyTo&#40;player&#41;;

      &#125;

with

Code:      if &#40;player.isGM&#40;&#41;&#41; &#123; //SKILLS WHEN LOGGING IN AS GM

         ...</description>
			<category>Guides</category>
			<pubDate>Sat, 16 Aug 2008 20:06:28 GMT</pubDate>
			<comments>http://odindeveloping.forumotion.net/guides-f3/use-a-skill-when-logging-in-t9.htm#9</comments>
			<guid>http://odindeveloping.forumotion.net/guides-f3/use-a-skill-when-logging-in-t9.htm</guid>
		</item>
		<item>
			<title>Make Cash items not buy able</title>
			<link>http://odindeveloping.forumotion.net/guides-f3/make-cash-items-not-buy-able-t4.htm</link>
			<dc:creator>Flav</dc:creator>
			<description>I made this for Magic Scales, as most of you know it bugs your character if you use it.



Open BuyCSItemHandler.java and change

Code:      &#125; else &#123;

                    MapleInventoryManipulator.addById&#40;c, item.getId&#40;&#41;, &#40;short&#41; item.getCount&#40;&#41;, &quot;Cash Item was purchased.&quot;&#41;;

      &#125;

to

Code:      &#125; else if &#40;item.getId&#40;&#41;  ...</description>
			<category>Guides</category>
			<pubDate>Sat, 16 Aug 2008 19:42:59 GMT</pubDate>
			<comments>http://odindeveloping.forumotion.net/guides-f3/make-cash-items-not-buy-able-t4.htm#4</comments>
			<guid>http://odindeveloping.forumotion.net/guides-f3/make-cash-items-not-buy-able-t4.htm</guid>
		</item>
		<item>
			<title>Fix disapearing NX Cash, Maple Points and Gift Tokens</title>
			<link>http://odindeveloping.forumotion.net/guides-f3/fix-disapearing-nx-cash-maple-points-and-gift-tokens-t7.htm</link>
			<dc:creator>Flav</dc:creator>
			<description>In this little guide I show you how to fix disapearing NX Cash, Maple Points and Gift Tokens after creating a new character. The reason why they disapear is that creating a new character sets their values to 0. What we need to do is to read out the old values and set them like they were before.



Open MapleCharacter.java and change

Code:      ret.nxcash = 0;

      ret.maplepoints = 0;

      ret.gifttokens = 0;

to

Code:   ...</description>
			<category>Guides</category>
			<pubDate>Sat, 16 Aug 2008 19:53:50 GMT</pubDate>
			<comments>http://odindeveloping.forumotion.net/guides-f3/fix-disapearing-nx-cash-maple-points-and-gift-tokens-t7.htm#7</comments>
			<guid>http://odindeveloping.forumotion.net/guides-f3/fix-disapearing-nx-cash-maple-points-and-gift-tokens-t7.htm</guid>
		</item>
	</channel>
</rss>