<?xml version="1.0" encoding="UTF-8"?>
<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/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>NexmuTK &#187; scripting</title>
	<atom:link href="http://www.nexmutk.com/tag/scripting/feed" rel="self" type="application/rss+xml" />
	<link>http://www.nexmutk.com</link>
	<description>Nexia NexusTK Baram Official Engine</description>
	<lastBuildDate>Sat, 04 Feb 2012 08:34:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>How to Created and Setting Your NPC&#8217;s In NexmuTK</title>
		<link>http://www.nexmutk.com/2010/01/how-to-created-and-setting-your-npcs-in-nexmutk.html</link>
		<comments>http://www.nexmutk.com/2010/01/how-to-created-and-setting-your-npcs-in-nexmutk.html#comments</comments>
		<pubDate>Thu, 21 Jan 2010 05:12:23 +0000</pubDate>
		<dc:creator>NexmuTK</dc:creator>
				<category><![CDATA[Documentation]]></category>
		<category><![CDATA[EXAMPLE]]></category>
		<category><![CDATA[graphic]]></category>
		<category><![CDATA[how to scripting in nexmutk]]></category>
		<category><![CDATA[nexmutk]]></category>
		<category><![CDATA[npc]]></category>
		<category><![CDATA[scripting]]></category>

		<guid isPermaLink="false">http://www.nexmutk.com/?p=239</guid>
		<description><![CDATA[This is another short tutorials on how to created and setting your own NPC&#8217;s in game. Please read tutorials carefully and follow all the step. Make sure to backup any important files before you doing this. If you have a question about scripting just leave comments on this article. 1. Get the NPC&#8217;s graphic information [...]]]></description>
			<content:encoded><![CDATA[<div class="fblike_button" style="margin: 10px 0;"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.nexmutk.com%2F2010%2F01%2Fhow-to-created-and-setting-your-npcs-in-nexmutk.html&amp;layout=button_count&amp;show_faces=false&amp;width=450&amp;action=like&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:25px"></iframe></div>
<p style="text-align: justify;">This is another short tutorials on how to created and setting your own NPC&#8217;s in game. Please read tutorials carefully and follow all the step. Make sure to backup any important files before you doing this. If you have a question about scripting just leave comments on this article.</p>
<p style="text-align: justify;">1. Get the NPC&#8217;s graphic information from BigDataBase files in documentation folders (Copyright to Adam)</p>
<p style="text-align: justify;"><a href="http://www.nexmutk.com/wp-content/uploads/2010/01/big-database-adam.jpg"><img class="aligncenter size-medium wp-image-241" title="big-database-adam" src="http://www.nexmutk.com/wp-content/uploads/2010/01/big-database-adam-300x216.jpg" alt="" width="300" height="216" /></a></p>
<p style="text-align: justify;">2. Run NexmuTK then click on NPC.</p>
<p style="text-align: justify;"><a href="http://www.nexmutk.com/wp-content/uploads/2010/01/nexmutk-npc.jpg"><img class="aligncenter size-medium wp-image-242" title="nexmutk-npc" src="http://www.nexmutk.com/wp-content/uploads/2010/01/nexmutk-npc-300x298.jpg" alt="" width="300" height="298" /></a></p>
<p style="text-align: justify;">3. Open &#8220;NexmuTK Scripting Configuration Files (*.conf)&#8221; find the files script_main.conf, This is an configuration master files. All files linked should be written on this script_main.conf first.</p>
<p style="text-align: justify;">4. Take a look on a sample configuration and scripting files to learn how to make your own NPC.</p>
<p style="text-align: justify;">5. Click on NPC Format to see the format how to created a new NPC. It&#8217;s should looks like this: <span style="text-decoration: underline;"><strong>npc:map number,graphic,color,mapx,mapy,description</strong></span><strong>. </strong>Your NPC should be save as *.scp files.<span style="text-decoration: underline;"><strong><br />
</strong></span></p>
<p style="text-align: justify;">6. After You linked between configuration files and scripting files you have to write a command for NPC. Click on scripting you will find some NPC function on there.</p>
<p style="text-align: justify;"><a href="http://www.nexmutk.com/wp-content/uploads/2010/01/scripting.jpg"><img class="aligncenter size-medium wp-image-246" title="scripting" src="http://www.nexmutk.com/wp-content/uploads/2010/01/scripting-300x298.jpg" alt="" width="300" height="298" /></a></p>
<p style="text-align: justify;"><span style="text-decoration: underline;"><strong>EXAMPLE</strong></span>:</p>
<blockquote>
<p style="text-align: justify;">// Karma NPC<br />
npc:2,213,0,26,20,Karma Reader</p>
<p>Declare money</p>
<p>Dialog &#8220;Apalah artinya kekuatan dan kekuasaanmu, semua itu diberikan oleh dewa. aku bisa membantu membacakan karmamu untuk melihat kekuatan jiwamu tetapi ada syaratnya kamu harus membayar aku sebesar 100 gold coin di muka.&#8221;, Next</p>
<p>Set money = getmoney()</p>
<p>if money&lt;100<br />
Dialog &#8220;maaf, untuk menggunakan jasaku kamu harus membayar 100 gold coin di muka, sepertinya uang kamu tidak mencukupi.&#8221;, None<br />
endif</p>
<p>if money==100<br />
readkarma<br />
endif</p>
<p>if money&gt;100<br />
readkarma<br />
endif</p></blockquote>
<p style="text-align: justify;">This sample has a little bug when your money more than 100 it will keep continue reading your karma until your money under 100, Don&#8217;t worry I will fix it next update by creating function readkarmaonce. You can edit and tested your script in game to make sure it follow what you need. When you meet problem please read guide from scripting.</p>
<p style="text-align: justify;">
<p style="text-align: justify;">
]]></content:encoded>
			<wfw:commentRss>http://www.nexmutk.com/2010/01/how-to-created-and-setting-your-npcs-in-nexmutk.html/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>NPC&#8217;s Update</title>
		<link>http://www.nexmutk.com/2007/05/npcs-update.html</link>
		<comments>http://www.nexmutk.com/2007/05/npcs-update.html#comments</comments>
		<pubDate>Sun, 06 May 2007 21:38:05 +0000</pubDate>
		<dc:creator>NexmuTK</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Chu Rua Quest]]></category>
		<category><![CDATA[nexmutk]]></category>
		<category><![CDATA[npc]]></category>
		<category><![CDATA[scripting]]></category>
		<category><![CDATA[set]]></category>
		<category><![CDATA[update]]></category>

		<guid isPermaLink="false">http://www.nexmutk.com/?p=100</guid>
		<description><![CDATA[Today I update Nexmu engine with scripting again I named this one NPC&#8217;s talk scripting. This script will used in next gameplay update I can make NPC&#8217;s do response when I say something like &#8220;Buy my all acorn&#8221; or &#8220;Thank you&#8221; the NPC&#8217;s can be set to do response for my words or I can [...]]]></description>
			<content:encoded><![CDATA[<div class="fblike_button" style="margin: 10px 0;"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.nexmutk.com%2F2007%2F05%2Fnpcs-update.html&amp;layout=button_count&amp;show_faces=false&amp;width=450&amp;action=like&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:25px"></iframe></div>
<p style="text-align: justify;">Today I update Nexmu engine with scripting again I named this one NPC&#8217;s talk scripting. This script will used in next gameplay update I can make NPC&#8217;s do response when I say something like &#8220;<em>Buy my all acorn</em>&#8221; or &#8220;<em>Thank you</em>&#8221; the NPC&#8217;s can be set to do response for my words or I can make NPC&#8217;s talking when I hit or clicking on them. in <strong>Chu Rua Quest</strong> this script will needed too when you talk to <span style="text-decoration: underline;">Rabbit</span> and <span style="text-decoration: underline;">Tiger</span>. Someone gave me idea to make NPC&#8217;s can walking and talking err.. by the way the timing structure was false this is to hard in programing..? <img src='http://www.nexmutk.com/wp-includes/images/smilies/icon_razz.gif' alt=':-P' class='wp-smiley' /> </p>
<p style="text-align: justify;"><img class="aligncenter size-full wp-image-101" title="NPC's Talk Scripting" src="http://www.nexmutk.com/wp-content/uploads/2009/08/21.jpg" alt="NPC's Talk Scripting" width="300" height="225" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.nexmutk.com/2007/05/npcs-update.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Item system is near to done!</title>
		<link>http://www.nexmutk.com/2007/04/item-system-is-near-to-done.html</link>
		<comments>http://www.nexmutk.com/2007/04/item-system-is-near-to-done.html#comments</comments>
		<pubDate>Sun, 29 Apr 2007 21:29:50 +0000</pubDate>
		<dc:creator>NexmuTK</dc:creator>
				<category><![CDATA[Server Update]]></category>
		<category><![CDATA[item]]></category>
		<category><![CDATA[Item Box]]></category>
		<category><![CDATA[item db]]></category>
		<category><![CDATA[item system]]></category>
		<category><![CDATA[Nexmu Item]]></category>
		<category><![CDATA[npc]]></category>
		<category><![CDATA[scripting]]></category>

		<guid isPermaLink="false">http://www.nexmutk.com/?p=91</guid>
		<description><![CDATA[Take a look on this screenshot . Nexmu Item system is near to done all I need to do is programing some function to make it completed. Basically programing structure almost same but not realy same with Magic_box system. you will not lose your item again after re-login this case also fixed a lot of [...]]]></description>
			<content:encoded><![CDATA[<div class="fblike_button" style="margin: 10px 0;"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.nexmutk.com%2F2007%2F04%2Fitem-system-is-near-to-done.html&amp;layout=button_count&amp;show_faces=false&amp;width=450&amp;action=like&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:25px"></iframe></div>
<p style="text-align: justify;">Take a look on this screenshot <img src='http://www.nexmutk.com/wp-includes/images/smilies/icon_razz.gif' alt=':-P' class='wp-smiley' /> . Nexmu Item system is near to done all I need to do is programing some function to make it completed. Basically programing structure almost same but not realy same with Magic_box system. you will not lose your item again after re-login this case also fixed a lot of case linked to Item system.</p>
<p style="text-align: justify;">See that!! the lovely item ^^</p>
<p style="text-align: justify;"><img class="aligncenter size-full wp-image-92" title="New item system ScreenShot" src="http://www.nexmutk.com/wp-content/uploads/2009/08/18.jpg" alt="New item system ScreenShot" width="300" height="225" /></p>
<p style="text-align: justify;">Red border Item Box in database almost important things never done in the past.</p>
<p style="text-align: justify;"><img class="aligncenter size-full wp-image-93" title="charitem" src="http://www.nexmutk.com/wp-content/uploads/2009/08/charitem.jpg" alt="charitem" width="300" height="55" /></p>
<p style="text-align: justify;">The Item_box Linked to this Item Database, you have to set in here first then scripting it to NPC&#8217;s or Monster drop. Red border is Item ID, Blue is Icon data meaning a little graphic you can find more info it on Adam database, Green border is Icon color This little thing usually needed.</p>
<p style="text-align: justify;"><img class="aligncenter size-full wp-image-94" title="itemdb" src="http://www.nexmutk.com/wp-content/uploads/2009/08/itemdb.jpg" alt="itemdb" width="300" height="94" /></p>
<p style="text-align: justify;">-EOF-</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nexmutk.com/2007/04/item-system-is-near-to-done.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>More Update on NexMu V3.21</title>
		<link>http://www.nexmutk.com/2007/04/more-update-on-nexmu-v3-21.html</link>
		<comments>http://www.nexmutk.com/2007/04/more-update-on-nexmu-v3-21.html#comments</comments>
		<pubDate>Wed, 18 Apr 2007 13:49:43 +0000</pubDate>
		<dc:creator>NexmuTK</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Server Update]]></category>
		<category><![CDATA[3.21]]></category>
		<category><![CDATA[nexmu]]></category>
		<category><![CDATA[npc]]></category>
		<category><![CDATA[scripting]]></category>
		<category><![CDATA[scripting engine]]></category>
		<category><![CDATA[update]]></category>

		<guid isPermaLink="false">http://www.nexmutk.com/?p=61</guid>
		<description><![CDATA[Finally the f**King scripting engine working good now and I starting to understand how it work&#8217;s. From now I can promisse a lot of changed in NPC&#8217;s will happen after this day since the new scripting engine compiled. Sample Shamans NPC&#8217;s Scripting engine to bring character life.]]></description>
			<content:encoded><![CDATA[<div class="fblike_button" style="margin: 10px 0;"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.nexmutk.com%2F2007%2F04%2Fmore-update-on-nexmu-v3-21.html&amp;layout=button_count&amp;show_faces=false&amp;width=450&amp;action=like&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:25px"></iframe></div>
<p style="text-align: justify;">Finally the f**King scripting engine working good now and I starting to understand how it work&#8217;s. From now I can promisse a lot of changed in NPC&#8217;s will happen after this day since the new scripting engine compiled.</p>
<p style="text-align: justify;"><span style="text-decoration: underline;"><strong>Sample Shamans NPC&#8217;s Scripting engine to bring character life.</strong></span></p>
<p style="text-align: justify;"><span style="text-decoration: underline;"><strong><img class="aligncenter size-full wp-image-62" title="Before Clicking NPC's" src="http://www.nexmutk.com/wp-content/uploads/2009/08/7.jpg" alt="Before Clicking NPC's" width="300" height="225" /></strong></span></p>
<p style="text-align: justify;"><span style="text-decoration: underline;"><strong><img class="aligncenter size-full wp-image-63" title="After Clicking NPC's" src="http://www.nexmutk.com/wp-content/uploads/2009/08/8.jpg" alt="After Clicking NPC's" width="300" height="225" /><br />
</strong></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.nexmutk.com/2007/04/more-update-on-nexmu-v3-21.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

