RunUo.Korean.Forum    :: RunUo Document 2.0 RC1 (Beta):: 
Statistics  Archive (html)  S-BLOG  [RSS FEED]   

 
  RunUo.Korean.Forum
ÀæÀºÁú¹®  ÀæÀºÁú¹®    °Ë»ö   °Ë»ö    ȸ¿ø¸®½ºÆ®  È¸¿ø¸®½ºÆ®   À¯Àú±×·ì  À¯Àú±×·ì   Gabbly äÆÃ¿­±â  Ã¤ÆÃ¿­±â 
 
ȸ¿ø°¡ÀÔ  ::  ·Î±×ÀÎ ÂÊÁö ÇÔ È®ÀÎ
 
RunUo.Korean.Forum ¢º About RunUo ¢º kjss&·Î¾î´Ô ÀÌ»óÇÕ´Ï´Ù...
»õ ±ÛÀ» ÀÛ¼ºÇÕ´Ï´Ù.´äº¯±ÛÀ» ÀÛ¼ºÇÕ´Ï´Ù. Post Printing
¡Ø TOPIC : kjss&·Î¾î´Ô ÀÌ»óÇÕ´Ï´Ù... ÀÌÀü ±Û :: ´ÙÀ½ ±Û
±Û ¾´ÀÌ ¸Þ¼¼Áö ³»¿ë
kwy3420
ÀÛ¼º±ÛÁ¦¸ñ : kjss&·Î¾î´Ô ÀÌ»óÇÕ´Ï´Ù...   ±Û ÀÛ¼º½Ã°£ : 2004-11-12 ±Ý 9:38 pm ±ÛÀ» ÀοëÇÏ¿© ÀÛ¼ºÇÕ´Ï´Ù.

Sixth Cicle [7]
Sixth Cicle [7]

°¡ÀÔÀÏ: 2004³â 08¿ù 15ÀÏ
°Ô½Ã¹°: 126

;Loginservers for Ultima Online
;Do not edit this file or patching will fail! Always save a backup.
;LoginServer=login.owo.com,7775
;LoginServer=login.owo.com,7775
;LoginServer=login.owo.com,7776
;LoginServer=login.owo.com,7776
LoginServer=211.247.93.177,2593


============ÀÌ À§´Â ·Î±ä ÀÌ°í ¾Æ·¡´Â ¼­¹ö ½ºÅ©¸³Æ®========

using System;
using System.Net;
using System.Net.Sockets;
using Server;
using Server.Network;

namespace Server.Misc
{
public class ServerList
{
/* Address:
*
* The default setting, a value of 'null', will attempt to detect your IP address automatically:
* private const string Address = null;
*
* This detection, however, does not work for servers behind routers. If you're running behind a router, put in your IP:
* private const string Address = "12.34.56.78";
*
* If you need to resolve a DNS host name, you can do that too:
* private const string Address = "shard.host.com";
*/

public const string Address = null;

public const string ServerName = "SadowAgeOf";

public static void Initialize()
{
Listener.Port = 2593;

EventSink.ServerList += new ServerListEventHandler( EventSink_ServerList );
}

public static void EventSink_ServerList( ServerListEventArgs e )
{
try
{
IPAddress ipAddr;

if ( Resolve( Address != null && !IsLocalMachine( e.State ) ? Address : Dns.GetHostName(), out ipAddr ) )
e.AddServer( ServerName, new IPEndPoint( ipAddr, Listener.Port ) );
else
e.Rejected = true;
}
catch
{
e.Rejected = true;
}
}

public static bool Resolve( string addr, out IPAddress outValue )
{
try
{
outValue = IPAddress.Parse( addr );
return true;
}
catch
{
try
{
IPHostEntry iphe = Dns.Resolve( addr );

if ( iphe.AddressList.Length > 0 )
{
outValue = iphe.AddressList[iphe.AddressList.Length - 1];
return true;
}
}
catch
{
}
}

outValue = IPAddress.None;
return false;
}

private static bool IsLocalMachine( NetState state )
{
Socket sock = state.Socket;

IPAddress theirAddress = ((IPEndPoint)sock.RemoteEndPoint).Address;

if ( IPAddress.IsLoopback( theirAddress ) )
return true;

bool contains = false;
IPHostEntry iphe = Dns.Resolve( Dns.GetHostName() );

for ( int i = 0; !contains && i < iphe.AddressList.Length; ++i )
contains = theirAddress.Equals( iphe.AddressList[i] );

return contains;
}
}
}



±×¸®°í ¼­¹ö¸¦ ¿­¸é¿ä... ShadowAgeOf server Is Full....

ÀÌ·¸°Ô ¶°¿ä

ÀüÇô ¹æÈ­º®°ú »ó°üÀÌ ¾ø½À´Ï´Ù...

¹æÈ­º®µµ ¾²Áöµµ ¾Ê°í¿ä....

¹æÈ­º®Á¦°Å Çß°í ¶Ç ±×¸®°í

´Ù¸¥ ¹®Á¦³ª Àú±â ½ºÅ©¸³Æ®¿¡ À߸øµÈÁ¡ÀÌ À־ ±×·±°ÇÁö

¾Æ´Ï¸é ´Ù¸¥¹®Á¦¸¦Á¤È®È÷ °¡¸£ÃÄ ÁÖ¼¼¿ä.....

Àý´ë ´ëÃæ ¾Ë·ÁÁÖ½ÃÁö ¸¶¼¼¿ä

·Î¾î´Ô ¾Æ½Ã´Â°Ô ¸¹À¸¸é¼­ ÀúÁ» µµ¿ÍÁֽá ¤Ð¤Ì
¡è ¸Ç À§·Î °¡±â ¡è
ȸ¿ø ÇÁ·ÎÇÊ º¸±â ÂÊÁö º¸³»±â
kjss10
ÀÛ¼º±ÛÁ¦¸ñ : Re: kjss&·Î¾î´Ô ÀÌ»óÇÕ´Ï´Ù...   ±Û ÀÛ¼º½Ã°£ : 2004-11-13 Åä 1:02 pm ±ÛÀ» ÀοëÇÏ¿© ÀÛ¼ºÇÕ´Ï´Ù.

Eighth Cicle [3]
Eighth Cicle [3]

°¡ÀÔÀÏ: 2004³â 01¿ù 19ÀÏ
°Ô½Ã¹°: 211
ÁÖ ¼Ò: ¼­¿ï °­µ¿±¸ °í´ö1µ¿/560¹øÁö ÁöÃþ101È£

kwy3420 ´Ô ÀÛ¼º : 
;Loginservers for Ultima Online
;Do not edit this file or patching will fail! Always save a backup.
LoginServer=211.247.93.177,2593

using System;
using System.Net;
using System.Net.Sockets;
using Server;
using Server.Network;

namespace Server.Misc
{
public class ServerList
{
/* Address:
*
* The default setting, a value of 'null', will attempt to detect your IP address automatically:
* private const string Address = null;
*
* This detection, however, does not work for servers behind routers. If you're running behind a router, put in your IP:
* private const string Address = "12.34.56.78";
*
* If you need to resolve a DNS host name, you can do that too:
* private const string Address = "shard.host.com";
*/

public const string Address = null;

public const string ServerName = "SadowAgeOf";

public static void Initialize()
{
Listener.Port = 2593;

public static void EventSink_ServerList( ServerListEventArgs e )
{
//try
//{
IPAddress ipAddr;
Resolve( Address, out ipAddr );

//if ( Resolve( Address != null && !IsLocalMachine( e.State ) ? Address : Dns.GetHostName(), out ipAddr ) )
e.AddServer( ServerName, new IPEndPoint( ipAddr, Listener.Port ) );
/*else
e.Rejected = true;
}
catch
{
e.Rejected = true;
}*/


public static bool Resolve( string addr, out IPAddress outValue )
{
try
{
outValue = IPAddress.Parse( addr );
return true;
}
catch
{
try
{
IPHostEntry iphe = Dns.Resolve( addr );

if ( iphe.AddressList.Length > 0 )
{
outValue = iphe.AddressList[iphe.AddressList.Length - 1];
return true;
}
}
catch
{
}
}

outValue = IPAddress.None;
return false;
}

private static bool IsLocalMachine( NetState state )
{
Socket sock = state.Socket;

IPAddress theirAddress = ((IPEndPoint)sock.RemoteEndPoint).Address;

if ( IPAddress.IsLoopback( theirAddress ) )
return true;

bool contains = false;
IPHostEntry iphe = Dns.Resolve( Dns.GetHostName() );

for ( int i = 0; !contains && i < iphe.AddressList.Length; ++i )
contains = theirAddress.Equals( iphe.AddressList[i] );

return contains;
}
}
}


°¢°¢ Àú·¸°Ô ÇØÁÖ¼¼¿ä...
¾Æ·¡²« ·Î¾î¾¾°¡ ´äº¯ ÇØµå·È´øºÎºÐÀε¥..-_-;;
¡è ¸Ç À§·Î °¡±â ¡è
ȸ¿ø ÇÁ·ÎÇÊ º¸±â ÂÊÁö º¸³»±â E-Mail º¸³»±â MSN ¸Þ½ÅÀú
ÀÌÀü °Ô½Ã¹°º¸±â :
»õ ±ÛÀ» ÀÛ¼ºÇÕ´Ï´Ù.´äº¯±ÛÀ» ÀÛ¼ºÇÕ´Ï´Ù. ÇöÀçÆäÀÌÁö : 1/1

RunUo.Korean.Forum ¢º About RunUo ¢º kjss&·Î¾î´Ô ÀÌ»óÇÕ´Ï´Ù...
¹Ù·Î°¡±â:


°Ô½Ã¹° ÀÛ¼º : (X)
´äº¯±Û ÀÛ¼º : (X)
°Ô½Ã¹° ¼öÁ¤ : (X)
°Ô½Ã¹° »èÁ¦ : (X)
ÅõÇ¥ Çϱâ : (X)
ÆÄÀÏ ¾÷·Îµå : (X)
ÆÄÀÏ ´Ù¿î·Îµå : (0)



DAJ Glass (1.0.5) template by Dustin Baccetti // template edit by GangPung
EQ graphic based off of a design from www.freeclipart.nu
Powered by phpBB 2001, 2002 phpBB Group, Translated by zzangga

DNS Powered by DNSEver.com