<?xml version="1.0" encoding="ISO-8859-1" ?>
<rss version="2.0">
<channel>
	<title>KO Developers latest posts</title>
	<description>Latest posts from KO Developers!</description>
	<link>http://forum.kodevs.com/index.php</link>
	<pubDate>Tue, 07 Sep 2010 11:23:30 +0000</pubDate>
	<ttl>1</ttl>
	<item>
		<title>Chaos Zone</title>
		<link>http://forum.kodevs.com/topic/4912-chaos-zone/</link>
		<description><![CDATA[Hello everyone I have problem with chaos zone,every time when I try login in like on object loading stuck on1% andafter few min he continued loadin ,than after I log in floor is white in the middle. <br />
<br />
In logs he give me this error:<br />
<br />
 <pre class='prettyprint'>&#91;13:10:05&#93; N3Texture Warning - Old format DXT file ()
    &#91;13:10:05&#93; N3Texture error - Can't create texture ()
    &#91;13:10:05&#93; N3Texture Warning - Old format DXT file ()
    &#91;13:10:05&#93; N3Texture error - Can't create texture ()
    &#91;13:10:05&#93; N3Texture Warning - Old format DXT file ()
    &#91;13:10:05&#93; N3Texture error - Can't create texture ()
    &#91;13:10:05&#93; N3Texture Warning - Old format DXT file ()
    &#91;13:10:05&#93; N3Texture error - Can't create texture ()
    &#91;13:10:05&#93; N3Texture Warning - Old format DXT file ()
    &#91;13:10:05&#93; N3Texture error - Can't create texture ()
    &#91;13:10:05&#93; N3Texture Warning - Old format DXT file ()
    &#91;13:10:05&#93; N3Texture error - Can't create texture ()
    &#91;13:10:05&#93; N3Texture Warning - Old format DXT file ()
    &#91;13:10:05&#93; N3Texture error - Can't create texture ()
    &#91;13:10:05&#93; N3Texture Warning - Old format DXT file ()
    &#91;13:10:05&#93; N3Texture error - Can't create texture ()
    &#91;13:10:05&#93; N3Texture Warning - Old format DXT file ()
    &#91;13:10:05&#93; N3Texture error - Can't create texture ()
    &#91;13:10:05&#93; N3Texture Warning - Old format DXT file ()
    &#91;13:10:05&#93; N3Texture error - Can't create texture ()
    &#91;13:10:05&#93; N3Texture Warning - Old format DXT file ()
    &#91;13:10:05&#93; N3Texture error - Can't create texture ()
    &#91;13:10:05&#93; N3Texture Warning - Old format DXT file ()
    &#91;13:10:05&#93; N3Texture error - Can't create texture ()</pre>]]></description>
		<pubDate>Tue, 07 Sep 2010 11:23:30 +0000</pubDate>
		<guid>http://forum.kodevs.com/topic/4912-chaos-zone/</guid>
	</item>
	<item>
		<title>sql2008 server name?</title>
		<link>http://forum.kodevs.com/topic/4910-sql2008-server-name/</link>
		<description><![CDATA[hi all,<br />
<br />
<br />
i just installed sql 2008.<br />
but to login to object explorer i need the server name.<br />
normally it fills that automaticly right?<br />
cus its empty for me.<br />
and  i tryd everything and nothing works.<br />
how to know what my server name is?<br />
<br />
Crazy]]></description>
		<pubDate>Tue, 07 Sep 2010 11:20:34 +0000</pubDate>
		<guid>http://forum.kodevs.com/topic/4910-sql2008-server-name/</guid>
	</item>
	<item>
		<title><![CDATA[[C#] TBL class]]></title>
		<link>http://forum.kodevs.com/topic/3373-c-tbl-class/</link>
		<description><![CDATA[<pre class='prettyprint'>using System;
using System.Collections.Generic;
using System.Text;
using System.IO;
using System.ComponentModel;

namespace ItemImporter
{
    class TBL
    {
		private string m_filename;
		private uint m_totalColumns, m_totalRows;
		private uint&#91;&#93; m_columns;
		private byte&#91;&#93; m_rawData;
		private byte m_decode;
		private MemoryStream m_stream;
		private BinaryReader m_reader;

		private object&#91;,&#93; m_dataObjects;

		public TBL(string filename, byte decode)
		{
			m_filename = filename;
			m_decode = decode;
			Load();
		}
		
		void Decode()
		{
			if (m_decode == 0) // no encryption
				return;

			byte&#91;&#93; data = new byte&#91;m_rawData.Length&#93;;
			if (m_decode == 1) // standard KO encryption
			{
				uint key = 0x816;
				for (int i = 0; i &lt; m_rawData.Length; ++i)
				{
					byte chByte = m_rawData&#91;i&#93;;
					byte tmpByte = (byte)((key & 0xff00) &gt;&gt; 8);
					key = (((((chByte + key) & 0xffff) * 0x6081) & 0xffff) + 0x1608) & 0xffff;
					data&#91;i&#93; = (byte)(tmpByte ^ chByte);
				}
			}
			else if (m_decode == 2) // new KOKO encryption
			{
				uint key = 0x418;
				for (int i = 0; i &lt; m_rawData.Length; ++i)
				{
					byte chByte = m_rawData&#91;i&#93;;
					byte newByte = (byte)(((key &gt;&gt; 8) & 0xff) ^ chByte);
					key = ((chByte + key) * 0x8041) + 0x1804;
					data&#91;i&#93; = newByte;
				}
			}

			m_rawData = data;
		}
		
		void Load()
		{
			m_rawData = File.ReadAllBytes(m_filename);
			Decode();

			m_stream = new MemoryStream(m_rawData);
			m_reader = new BinaryReader(m_stream);

			m_totalColumns = getUInt32();
			
			m_columns = new uint&#91;m_totalColumns&#93;;
			for (int i = 0; i &lt; m_totalColumns; i++)
				m_columns&#91;i&#93; = getUInt32();

			m_totalRows = getUInt32();
			m_dataObjects = new object&#91;m_totalRows, m_totalColumns&#93;;

			for (int i = 0; i &lt; getRows(); i++)
			{
				for (int n = 0; n &lt; m_totalColumns; n++)
				{
					switch (m_columns&#91;n&#93;)
					{
						case 8:
							m_dataObjects&#91;i, n&#93; = (object)getFloat();
						break;

						case 7:
							m_dataObjects&#91;i, n&#93; = (object)getString();
						break;
							
						case 6:
							m_dataObjects&#91;i, n&#93; = (object)getUInt32();
						break;
					
						case 5:
							m_dataObjects&#91;i, n&#93; = (object)getInt32();
						break;
				
						case 4:
							m_dataObjects&#91;i, n&#93; = (object)getUInt16();
						break;
				
						case 3:
							m_dataObjects&#91;i, n&#93; = (object)getInt16();
						break;
				
						case 2:
							m_dataObjects&#91;i, n&#93; = (object)getByte();
						break;
							
						case 1:
							m_dataObjects&#91;i, n&#93; = (object)getSByte();
						break;
					}
				}
			}
		}
		
		public uint getColumn(int i)
		{
			return m_columns&#91;i&#93;;
		}

		public object getValue(int i, int n)
		{
			return m_dataObjects&#91;i, n&#93;;
		}
		
		public uint getColumns()
		{
			return m_totalColumns;
		}
		
		public uint getRows()
		{
			return m_totalRows;
		}
		
		private string getString()
		{
			int len = getInt32();
			byte&#91;&#93; buffer = m_reader.ReadBytes(len);
			return Encoding.ASCII.GetString(buffer);
		}
		
		private float getFloat()
		{
			return m_reader.ReadSingle();
		}

		private uint getUInt32()
		{
			return m_reader.ReadUInt32();
		}

		private int getInt32()
		{
			return m_reader.ReadInt32();
		}

		private ushort getUInt16()
		{
			return m_reader.ReadUInt16();
		}

		private short getInt16()
		{
			return m_reader.ReadInt16();
		}

		private byte getByte()
		{
			return m_reader.ReadByte();
		}

		private sbyte getSByte()
		{
			return m_reader.ReadSByte();
		}
	}
}</pre><br />
<br />
Very, very similar to the PHP class. Actually it's what makes this thing go so slowly in comparison with the PHP class; the attempt to keep it as dynamic as PHP. Oh well. <img src='http://forum.kodevs.com/public/style_emoticons/default/tongue.gif' class='bbc_emoticon' alt=':P' /> <br />
<br />
Revamped the whole class in my TBL editor anyway.]]></description>
		<pubDate>Mon, 06 Sep 2010 18:15:54 +0000</pubDate>
		<guid>http://forum.kodevs.com/topic/3373-c-tbl-class/</guid>
	</item>
	<item>
		<title><![CDATA[[Request] Juraid Zone]]></title>
		<link>http://forum.kodevs.com/topic/4911-request-juraid-zone/</link>
		<description><![CDATA[Hey,<br />
<br />
I have a juraid zone but its loading alot of time.<br />
<br />
since i showed that anothers servers have another files and they are loading fast<br />
<br />
<br />
Can somebody give me the right and the fixed juraid zones files?<br />
<br />
<br />
thx alot]]></description>
		<pubDate>Sun, 05 Sep 2010 15:44:07 +0000</pubDate>
		<guid>http://forum.kodevs.com/topic/4911-request-juraid-zone/</guid>
	</item>
	<item>
		<title>Question about files</title>
		<link>http://forum.kodevs.com/topic/4909-question-about-files/</link>
		<description><![CDATA[those files (login, aiserver, etc) just can be opened using win 32x or they can be opened using algo win 64x ?<br />
<br />
<br />
because I find this error: data source name not found and no default driver specified<br />
<br />
*every DNS are set correctly.<br />
<br />
Thanks]]></description>
		<pubDate>Sat, 04 Sep 2010 05:55:16 +0000</pubDate>
		<guid>http://forum.kodevs.com/topic/4909-question-about-files/</guid>
	</item>
	<item>
		<title>ODBC Connection</title>
		<link>http://forum.kodevs.com/topic/4908-odbc-connection/</link>
		<description>Hello. Just moved my server to a dedi. And im not too sure whats going on here. I know its something going on in the MSSQL or the ODBC I using MSSQL 2008. Server files and DB are perfect no errors or anything. When I try to log into my account.. its like going to nation select screen and my account was already there. And when I try to connect just freezes up. Is there something wrong here? Thanks!</description>
		<pubDate>Thu, 02 Sep 2010 22:24:06 +0000</pubDate>
		<guid>http://forum.kodevs.com/topic/4908-odbc-connection/</guid>
	</item>
	<item>
		<title>blink like wild advent</title>
		<link>http://forum.kodevs.com/topic/4907-blink-like-wild-advent/</link>
		<description><![CDATA[There was a file + query to fix blink but i cant find the topic anymore could someone repost it ?<br />
here is the old link to it if this helps<br />
<a href='http://forum.kodevs.com/topic/2001-release-add-blink-skill-to-your-db-like-wild-advent/' class='bbc_url' title='External link' rel='nofollow external'>http://forum.kodevs.com/topic/2001-release-add-blink-skill-to-your-db-like-wild-advent/</a>]]></description>
		<pubDate>Wed, 01 Sep 2010 07:59:08 +0000</pubDate>
		<guid>http://forum.kodevs.com/topic/4907-blink-like-wild-advent/</guid>
	</item>
	<item>
		<title>(Request) Ourko DB for SQL2000</title>
		<link>http://forum.kodevs.com/topic/4906-request-ourko-db-for-sql2000/</link>
		<description>Solved.</description>
		<pubDate>Wed, 01 Sep 2010 05:38:19 +0000</pubDate>
		<guid>http://forum.kodevs.com/topic/4906-request-ourko-db-for-sql2000/</guid>
	</item>
	<item>
		<title>few template-like designs</title>
		<link>http://forum.kodevs.com/topic/3074-few-template-like-designs/</link>
		<description><![CDATA[here is something i made yesterday, wont be using them for anything but some of you may find em useful<br />
<br />
<img src='http://i102.photobucket.com/albums/m118/simont26/kodevs3.png' alt='Posted Image' class='bbc_img' /><br />
<br />
Download:  <a href='http://files.simontodd.net/website111.psd' class='bbc_url' title='External link' rel='nofollow external'>http://files.simontodd.net/website111.psd</a><br />
<br />
<br />
the other 2 i dont have the PSD's for em but its possible to recreate them from the psd above, all the layers should stille be there <img src='http://forum.kodevs.com/public/style_emoticons/default/smile.gif' class='bbc_emoticon' alt=':)' /> <br />
<br />
<img src='http://i102.photobucket.com/albums/m118/simont26/kodevs2.png' alt='Posted Image' class='bbc_img' /><br />
<br />
<img src='http://i102.photobucket.com/albums/m118/simont26/kodevs1.png' alt='Posted Image' class='bbc_img' />]]></description>
		<pubDate>Wed, 01 Sep 2010 02:04:21 +0000</pubDate>
		<guid>http://forum.kodevs.com/topic/3074-few-template-like-designs/</guid>
	</item>
	<item>
		<title>Need help!</title>
		<link>http://forum.kodevs.com/topic/4905-need-help/</link>
		<description><![CDATA[I'm using the ko4ever files and db that reallizt posted,<br />
<br />
Ai server loads normaly,but can't connect to the gameserver...i've checked the .inis and they're fine...<br />
When i try to login to the server,i just get stuck at to "connecting please wait" at server selection screen...<br />
Can anybody tell me what should i do to fix these things?I'm still a newb.<br />
<br />
Thanks in advance]]></description>
		<pubDate>Tue, 31 Aug 2010 23:35:43 +0000</pubDate>
		<guid>http://forum.kodevs.com/topic/4905-need-help/</guid>
	</item>
	<item>
		<title>stnq3r server files v4.4 - Login Start , Patch , AI fix</title>
		<link>http://forum.kodevs.com/topic/4901-stnq3r-server-files-v44-login-start-patch-ai-fix/</link>
		<description><![CDATA[Notice<br />
<br />
Use This exe new : <a href='http://www.multiupload.com/5CAIOHNHXA' class='bbc_url' title='External link' rel='nofollow external'>http://www.multiupload.com/5CAIOHNHXA</a><br />
<br />
<br />
Information<br />
<ul class='bbc'><li>*<span style='color: red'>authority bug fix</span><br /></li><li>*<span style='color: red'>Exe , invisible armor and weapons fix</span><br /></li><li>*<span style='color: red'>Max level 83 </span><br /></li><li>*<span style='color: red'>Ebenezer Close crash fix</span><br /></li><li>*Ebenezer <span style='color: red'>C++ error fix</span><br /></li><li>*<span style='color: red'>AI server close problem</span> You havent to close it from taskmanager<br /></li><li>*<span style='color: red'>Some virus programs could find virus ,reason : knight online.exe</span> dont use different exe and launcher<br /></li><li>*<span style='color: red'>Launcher download problem fixed</span> Patcher will fix your download and start problem but dont use another launcher use <br />
the launcher i gave<br /></li><li>*<span style='color: red'>Ko.exe packed again[/COLOR<br /></li><li>*<span style='color: red'>Please make your security tests on a server dont try it in ur computer and use firewall</span><br /></li><li>*exe and launcher increased to files<br /></li><li>*automatic nation choose fixed for now. But you must choose your nation every login , copy account_login proc. from my db . You can find db in my files DB folder.<br /></li><li>*<span style='color: red'>maps added </span><br /></li><li>*<span style='color: red'>New Database added<br /></li><li>*T&#252;rkish language<br /></li><li>*A firewall added<br /></li><li>*MD5 password<br /></li><li>*Start problem fix<br /></li><li>*Anti flood<br /></li><li>*Kill Switch fix<br /></li><li>*Merchant bug fix <br /></li><li>*Anti ddos , use firewall<br /></li><li>*Ebenezer and AIServer makes all 10 connections - thanks to twostars<br /></li><li>*Procedure booster<br /></li><li>*Trade hack fix<br /></li><li>*Maksimum security <br /></li><li>*Dupe scanner working with my DB<br /></li><li>*Item manager working with my DB<br /></li><li>*<span style='color: red'>Noticeall added </span>-Type with your Gm character /noticeall and send top notice<br /></li><li>*Ebenezer fixed<br /></li><li>*Aujard <span style='color: red'>USKO moradon</span><br /></li><li>*ini files name <span style='color: red'>stnq3r.ini</span> you must edit stnq3r.inis<br /></li><li>*Log system changed.<br /></li><li>*Server kill fixed.--[COLOR=red]Firewall use</span></li></ul><br />
<br />
Download<br />
<a href='http://www.multiupload.com/OWIWJOZGRQ' class='bbc_url' title='External link' rel='nofollow external'>http://www.multiupload.com/OWIWJOZGRQ</a><br />
[COLOR=Red]rar pass : stnq3r</span><br />
<br />
<img src='http://img833.imageshack.us/img833/4153/62569869.jpg' alt='Posted Image' class='bbc_img' />]]></description>
		<pubDate>Tue, 31 Aug 2010 20:14:06 +0000</pubDate>
		<guid>http://forum.kodevs.com/topic/4901-stnq3r-server-files-v44-login-start-patch-ai-fix/</guid>
	</item>
	<item>
		<title>Kopanel</title>
		<link>http://forum.kodevs.com/topic/4904-kopanel/</link>
		<description>Where gets up to write the ip that other sees be effective the website?</description>
		<pubDate>Tue, 31 Aug 2010 17:44:58 +0000</pubDate>
		<guid>http://forum.kodevs.com/topic/4904-kopanel/</guid>
	</item>
	<item>
		<title>server files manager v3</title>
		<link>http://forum.kodevs.com/topic/4903-server-files-manager-v3/</link>
		<description><![CDATA[k its an old version so i cant remember if something need to be fixed,<br />
this ver include:<br />
logs<br />
auto reloads<br />
server files check(check that everything is still running)<br />
fast load and close server files.<br />
and some more....<br />
<a href='http://www' class='bbc_url' title='External link' rel='nofollow external'>http://www</a> . rapid share .com/files/416194170/Server_Files_Manager.rar<br />
i have tried using the forum upload thingy but it faild :S so i uploaded it to **** NOT ALLOWED ****<br />
<br />
<br />
<br />
btw this is V4<br />
i made some modifications:<br />
1.The generall look is completely diff.<br />
2.you can now choose - Name,Type,Location,Ping check,Proccess Check, and delay.<br />
3.can enter as much proggys you want.<br />
4.more orginized logs.<br />
5.more stable.<br />
<img src='http://img64.imageshack.us/img64/1130/67657669.jpg' alt='Posted Image' class='bbc_img' /><br />
<br />
maybe i will release v4 in the future]]></description>
		<pubDate>Tue, 31 Aug 2010 08:54:56 +0000</pubDate>
		<guid>http://forum.kodevs.com/topic/4903-server-files-manager-v3/</guid>
	</item>
	<item>
		<title>Who Misses the old 1098 days?</title>
		<link>http://forum.kodevs.com/topic/4832-who-misses-the-old-1098-days/</link>
		<description><![CDATA[hey guys i was just wondering if anyone misses the old 1098 days besides me. back then communities were awesome. and it was just for fun not to see whos combo was better.<br />
<br />
anyways comment if u want]]></description>
		<pubDate>Tue, 31 Aug 2010 00:07:00 +0000</pubDate>
		<guid>http://forum.kodevs.com/topic/4832-who-misses-the-old-1098-days/</guid>
	</item>
	<item>
		<title><![CDATA[[1.298] USKO-style Bifrost]]></title>
		<link>http://forum.kodevs.com/topic/3151-1298-usko-style-bifrost/</link>
		<description><![CDATA[<p class='citation'>Quote</p><div class="blockquote"><div class='quote'>Exacly like usko, when you kill destroy the monument your nation can enter.. When full it will kick people etc..<br />
<br />
NPC's:<br />
-- Delete Old NPC<pre class='prettyprint'>
DELETE FROM K_NPC WHERE sSid = 601
DELETE FROM K_NPC WHERE sSid = 602
DELETE FROM K_NPC WHERE sSid = 610
DELETE FROM K_NPCPOS WHERE NpcID = 601
DELETE FROM K_NPCPOS WHERE NpcID = 602
DELETE FROM K_NPCPOS WHERE NpcID = 610
DELETE FROM K_MONSTER_ITEM WHERE sIndex = 601
DELETE FROM K_NPC_ITEM WHERE sIndex = 601

-- Add New NPC and Drops
INSERT INTO K_NPC VALUES (601,'Bi-frost Monument',30020,100,0,0,0,0,155,1,1,1,0,100,10000,100,1000000,0,0,15000,642,842,0,1000,0,0,1000,0,0,0,250,250,250,250,250,250,250,100,5,5,5,0,0,0,0,0)
INSERT INTO K_NPC VALUES (602,'&#91;Karus&#93;Bi-frost Gate',30100,100,0,0,1,0,150,1,1,1,0,80,0,0,10000,0,0,480,375,375,0,1000,0,0,1000,0,0,0,250,250,250,250,250,250,250,100,5,5,5,0,0,0,0,0)
INSERT INTO K_NPC VALUES (610,'&#91;El Morad&#93;Bi-frost Gate',30100,100,0,0,2,0,150,1,1,1,0,80,0,0,10000,0,0,480,375,375,0,1000,0,0,1000,0,0,0,250,250,250,250,250,250,250,100,5,5,5,0,0,0,0,0)
INSERT INTO K_NPCPOS VALUES (201,601,100,0,0,0,0,1015,1003,1015,1003,1015,1003,1015,1003,1,200,0,0,NULL)
INSERT INTO K_NPCPOS VALUES (201,602,100,0,0,0,0,1025,1017,1025,1017,0,0,0,0,1,20,0,0,NULL)
INSERT INTO K_NPCPOS VALUES (201,610,100,0,0,0,0,1004,1017,1004,1017,0,0,0,0,1,20,0,0,NULL)
</pre>Notice's:<br />
<pre class='prettyprint'>DELETE FROM SERVER_RESOURCE WHERE nResourceID = 238
DELETE FROM SERVER_RESOURCE WHERE nResourceID = 239
DELETE FROM SERVER_RESOURCE WHERE nResourceID = 240
DELETE FROM SERVER_RESOURCE WHERE nResourceID = 241
DELETE FROM SERVER_RESOURCE WHERE nResourceID = 242
INSERT INTO SERVER_RESOURCE VALUES(238,'IDS_BEEF_ROAST_START','Bi-frost Baslamistir..! ')
INSERT INTO SERVER_RESOURCE VALUES(239,'IDS_BEEF_ROAST_VICTORY_KARUS','Bi-frost Monumenti, Karus IRK''i Kirmistir ve Bi-frosta Girmeye Hak Kazanmistir..!')
INSERT INTO SERVER_RESOURCE VALUES(240,'IDS_BEEF_ROAST_VICTORY_ELMORAD','Bi-frost Monumenti, El Morad IRK''i Kirmistir ve Bi-frosta Girmeye Hak Kazanmistir..!')
INSERT INTO SERVER_RESOURCE VALUES(241,'IDS_BEEF_ROAST_FINISH','Bi-frost Sona Ermistir..!')
INSERT INTO SERVER_RESOURCE VALUES(242,'IDS_BEEF_ROAST_DRAW','Bi-frostu Her Iki IRK''ta Kazanamamistir, Sonuc Beraberlik Ile Bitmistir.')</pre><span style='color: Black'><br />
</span><span style='color: Black'>Quest_Menu_us.tbl</span><br />
<pre class='prettyprint'>14054    Teleport to Bi-frost</pre><span style='color: Black'>Quest_Talk_us.tbl</span><br />
<pre class='prettyprint'>14258    Welcome &lt;selfname&gt; please make a choice.</pre>14257    Bi-frost'a Girebilmeniz Icin Bi-frost Monumenti Kirmis Olmaniz ve IRK'inizin Kazanmis Olmasi Gerekmektedir.<br />
<br />
201.evt<br />
<pre class='prettyprint'>EVENT 17681
E SELECT_MSG -1 14258 14054 10 8033 11 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
END 

EVENT 10
E RUN_EVENT 2
E RUN_EVENT 3
END

EVENT 2
A CHECK_NATION 1
E RUN_EVENT 4
E RUN_EVENT 6
END

EVENT 3
A CHECK_NATION 2
E RUN_EVENT 8
E RUN_EVENT 9
END

EVENT 11
E RETURN 
END 

EVENT 4
A CHECK_BEEF_ROAST_KARUS_VICTORY -1
E ZONE_CHANGE 31 78 730
E RETURN
END

EVENT 6
A CHECK_BEEF_ROAST_NO_VICTORY -1
E SAY -1 -1 14257 -1 -1 -1 -1 -1 -1 -1 -1 -1 
E RETURN
END

EVENT 8
A CHECK_BEEF_ROAST_ELMORAD_VICTORY -1
E ZONE_CHANGE 31 245 950
E RETURN
END

EVENT 9
A CHECK_BEEF_ROAST_NO_VICTORY -1
E SAY -1 -1 14257 -1 -1 -1 -1 -1 -1 -1 -1 -1 
E RETURN
END</pre>31.evt<br />
<pre class='prettyprint'>EVENT 22001
E SELECT_MSG 16084 51000 50008 22010 50006 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
END

EVENT 22010
E RUN_EVENT 22020
END

EVENT 22020
E ZONE_CHANGE 21 292 347
END</pre></div></div><br />
<br />
"Translations":<br />
<pre class='prettyprint'>INSERT INTO SERVER_RESOURCE VALUES (238, 'IDS_BEEF_ROAST_START', 'Bifrost event has started!')
INSERT INTO SERVER_RESOURCE VALUES (239, 'IDS_BEEF_ROAST_VICTORY_KARUS', 'The Karus warriors have destroyed the monument and can now enter Bifrost!')
INSERT INTO SERVER_RESOURCE VALUES (240, 'IDS_BEEF_ROAST_VICTORY_ELMORAD', 'The El Morad warriors have destroyed the monument and can now enter Bifrost!')
INSERT INTO SERVER_RESOURCE VALUES (241, 'IDS_BEEF_ROAST_FINISH', 'Bifrost event is now over!')
INSERT INTO SERVER_RESOURCE VALUES (242, 'IDS_BEEF_ROAST_DRAW', 'Nobody has won the Bifrost event, it''s a draw!')</pre><br />
<br />
<br />
Quest_talk_us.tbl<br />
<br />
<pre class='prettyprint'>14258  Hi &lt;selfname&gt;, what would you like to do?
14257  To enter Bifrost, you have to destroy the Bifrost monument!</pre><br />
<br />
"Translations" by Lagalos.]]></description>
		<pubDate>Mon, 30 Aug 2010 14:58:08 +0000</pubDate>
		<guid>http://forum.kodevs.com/topic/3151-1298-usko-style-bifrost/</guid>
	</item>
	<item>
		<title><![CDATA[[Release]  Oreads War Zone]]></title>
		<link>http://forum.kodevs.com/topic/2869-release-oreads-war-zone/</link>
		<description><![CDATA[<span class='bbc_center'><a href='http://forum.kodevs.com/index.php?app=downloads&module=display&section=screenshot&id=67' class='bbc_url' title='External link' rel='nofollow external'>http://forum.kodevs.com/index.php?app=downloads&module=display&section=screenshot&id=67</a></span><br />
<strong class='bbc'>File Name</strong>: [Release] Oreads War Zone<br />
<strong class='bbc'>File Submitter</strong>: <br />
<strong class='bbc'>File Submitted</strong>: 16 Aug 2009<br />
<strong class='bbc'>File Category</strong>: <a href='http://forum.kodevs.com/index.php?app=downloads&showcat=2' class='bbc_url' title='External link' rel='nofollow external'>Client</a><br />
<br />
<img src='http://i30.tinypic.com/4gcbk.jpg' alt='Posted Image' class='bbc_img' /><br />
<img src='http://i25.tinypic.com/28lquiv.jpg' alt='Posted Image' class='bbc_img' /><br />
<br />
<pre class='prettyprint'>	660	Zones&#092;new_runawar.gtd	new_runawar	Zones&#092;new_runawar.tct	Zones&#092;new_runawar.tlt	Zones&#092;new_runawar.opd	Zones&#092;new_runawar.opdext	Zones&#092;new_runawar.dxt	Misc&#092;Sky&#092;Karus.N3Sky	0	0	Zones&#092;new_runawar.glo	Zones&#092;new_runawar.gev	0	Zones&#092;new_runawar.ens	1	Zones&#092;karusintro.flag	20003	20000	20002	20000	Zones&#092;new_runawar.opdsub	1	</pre><br />
<br />
<a href='http://forum.kodevs.com/index.php?app=downloads&showfile=67' class='bbc_url' title='External link' rel='nofollow external'>Click here to download this file</a><br />
<br />
Edit: Someone could edit this and the extra release from the title]]></description>
		<pubDate>Mon, 30 Aug 2010 09:33:31 +0000</pubDate>
		<guid>http://forum.kodevs.com/topic/2869-release-oreads-war-zone/</guid>
	</item>
	<item>
		<title><![CDATA[[Ko-Help] Bifrost time limit]]></title>
		<link>http://forum.kodevs.com/topic/2086-ko-help-bifrost-time-limit/</link>
		<description><![CDATA[hi everyone . need some help here <img src='http://forum.kodevs.com/public/style_emoticons/default/smile.gif' class='bbc_emoticon' alt=':P' /> <br />
<br />
<strong class='bbc'>want to know something about bifrost :</strong><br />
<br />
how to make time limit time in bifrost for players <br />
to stay inside bifrost like after 3 hour from bifrost open then all dc or tp to mordan <br />
<br />
need find way [appl/code/idea]  for this ,thxx all <img src='http://forum.kodevs.com/public/style_emoticons/default/smile.gif' class='bbc_emoticon' alt=':)' />]]></description>
		<pubDate>Sun, 29 Aug 2010 22:21:29 +0000</pubDate>
		<guid>http://forum.kodevs.com/topic/2086-ko-help-bifrost-time-limit/</guid>
	</item>
	<item>
		<title><![CDATA[[Release] Chaos Dungeon Zone]]></title>
		<link>http://forum.kodevs.com/topic/2852-release-chaos-dungeon-zone/</link>
		<description><![CDATA[<span class='bbc_center'><a href='http://forum.kodevs.com/index.php?app=downloads&module=display&section=screenshot&id=63' class='bbc_url' title='External link' rel='nofollow external'>http://forum.kodevs.com/index.php?app=downloads&module=display&section=screenshot&id=63</a></span><br />
<strong class='bbc'>File Name</strong>: Chaos Dungeon Zone<br />
<strong class='bbc'>File Submitter</strong>: <br />
<strong class='bbc'>File Submitted</strong>: 14 Aug 2009<br />
<strong class='bbc'>File Category</strong>: <a href='http://forum.kodevs.com/index.php?app=downloads&showcat=2' class='bbc_url' title='External link' rel='nofollow external'>Client</a><br />
<br />
I dont think USKO has it yet, and ive never actually seen the zone as its supposed to be, so im not certain if the files are working 100% correctly<br />
<br />
Screens:<br />
<img src='http://i25.tinypic.com/2l97904.jpg' alt='Posted Image' class='bbc_img' /><br />
<img src='http://i28.tinypic.com/2vs3dp3.jpg' alt='Posted Image' class='bbc_img' /><br />
<br />
<pre class='prettyprint'>	850	Zones&#092;sky_war_2009.gtd	sky_war_2009	Zones&#092;sky_war_2009.tct	Zones&#092;sky_war_2009.tlt	Zones&#092;sky_war_2009.opd	Zones&#092;sky_war_2009.opdext	Zones&#092;sky_war_2009.dxt	Misc&#092;Sky&#092;BattleZone.N3Sky	0	7	Zones&#092;sky_war_2009.glo	Zones&#092;sky_war_2009.gev	0	Zones&#092;sky_war_2009.ens	1	Later	20003	20000	20002	20000	Zones&#092;sky_war_2009.opdsub	1	</pre><br />
<br />
<a href='http://forum.kodevs.com/index.php?app=downloads&showfile=63' class='bbc_url' title='External link' rel='nofollow external'>Click here to download this file</a>]]></description>
		<pubDate>Sat, 28 Aug 2010 13:24:16 +0000</pubDate>
		<guid>http://forum.kodevs.com/topic/2852-release-chaos-dungeon-zone/</guid>
	</item>
	<item>
		<title>1098 server online help</title>
		<link>http://forum.kodevs.com/topic/4899-1098-server-online-help/</link>
		<description>Hi I am about to run the old jacks ko server files and need a little help getting everything up and running was wondering if i could get some help I have many people who wants this put online if I can get help I would be very grateful chris15946@hotmail.com thanks.</description>
		<pubDate>Thu, 26 Aug 2010 23:07:52 +0000</pubDate>
		<guid>http://forum.kodevs.com/topic/4899-1098-server-online-help/</guid>
	</item>
	<item>
		<title>War: Notice Spam Fix</title>
		<link>http://forum.kodevs.com/topic/4891-war-notice-spam-fix/</link>
		<description><![CDATA[Fix is simple change your gameserver.ini which is located in your ebenezer folder:<br />
<br />
SERVER_COUNT=1<br />
<br />
<img src='http://i36.tinypic.com/nefej6.jpg' alt='Posted Image' class='bbc_img' /><br />
<br />
<img src='http://i37.tinypic.com/dbgww3.jpg' alt='Posted Image' class='bbc_img' />]]></description>
		<pubDate>Thu, 26 Aug 2010 15:18:44 +0000</pubDate>
		<guid>http://forum.kodevs.com/topic/4891-war-notice-spam-fix/</guid>
	</item>
</channel>
</rss>