RunUo.Korean.Forum RunUo.Korean.Forum
RunUo(·±À¯¿À)¿¡ °üÇÑ Çѱ¹ Æ÷·³ »çÀÌÆ®
 

¸ÞÅ©·Î &¸í·É¾î
Click here to go to the original topic

 
       RunUo.Korean.Forum -> Other & etc..
ÀÌÀü ±Û :: ´ÙÀ½ ±Û  
±Û ¾´ÀÌ ¸Þ¼¼Áö ³»¿ë
pkpk777



°¡ÀÔÀÏ: 2005³â 02¿ù 20ÀÏ
°Ô½Ã¹°: 16
ÁÖ ¼Ò: °æºÏ ¼ºÁÖ±º ÃÊÀü¸é ¹®´ö¸®/277

±Û ÀÛ¼º½Ã°£ : 2005-03-08 È­ 3:30 pm    Á¦¸ñ: ¸ÞÅ©·Î &¸í·É¾î  

¸ÞÅ©·Î ¿¡¼­ ÀÌ·¸°Ô ¼³Á¤Çϸé (say- [bandself )ÀÌ°Í ¸í·É¾î¶ó°í ÇØ¾ßÇÏ´ÂÁö ¾Æ´Ô ¸ÞÅ©·Î¶ó°í ÇØÇÏÇÏ´ÂÁö ¸ð¸£°Ú´Âµ¥¿ä ÀÚ½ÅÀÇ Äɸ¯ÅÍ ºØ´ëÁú ÆíÇÏ°Ô ÇØÁÖ´Â °Ì´Ï´Ù ÀÌ°Í 1.0ÆÄÀ̳ιöÀü¿¡ Àû¿ëÇÏ´Â ¹æ¹ýÁ» °¡¸£Ã³ÁÖ¼¼¿ä ±×·¯´Ï±ñ ½ºÅ©¸³¿ëû ÇÏ´Â °Ì´Ï´Ù
Àú¹ø¿¡ ¿Ã·È´Âµ¥ ´äº¯ÇØÁּŴµ¥¿ä Á¦°¡ c¾ð¾î´Â Çϳªµµ¸ð¸£°Åµî¿ä ±×·¡¼­ ÀÏ´Ü ¿äû Çϴ°̴ϴÙ
¸Ç À§·Î °¡±â  
c1dong8



°¡ÀÔÀÏ: 2004³â 01¿ù 26ÀÏ
°Ô½Ã¹°: 446

±Û ÀÛ¼º½Ã°£ : 2005-03-08 È­ 9:27 pm    Á¦¸ñ: ÇØ¾ßÇϳª ¸»¾Æ¾ß Çϳª-_-;  

Àú´Â ÇöÁ¦.....±²ÀåÇÑ ±ÍÂ÷´ÏÁòÀ¸·Î ÀÌ°É ¸¸µé¾îº¼±î ¸»±î Çϰí ÀÖ½À´Ï´Ù -_-;
Á¦°¡ ÀÌ·¯´Âµ¿¾È Kkung´Ô²²¼­ ÀÌ¹Ì ¸¸µé°í ÀÖÀ»Áöµµ ¸ð¸£°Ú±º¿ä ¤¾¤¾¤¾
¸¸¾à È­ÀÌÆ®µ¥À̰¡ Áö³ªµµ ¿Ã·ÁÁֽô ºÐÀÌ ¾ø´Ù¸é Á¦°¡ ¸¸µé°Ú½À´Ï´Ù...
ÀüÀ̸¸ È­ÀÌÆ®µ¥ÀÌ ÁغñÇÏ·¯ ¤Ì.¤Ì
¸Ç À§·Î °¡±â  
c1dong8



°¡ÀÔÀÏ: 2004³â 01¿ù 26ÀÏ
°Ô½Ã¹°: 446

±Û ÀÛ¼º½Ã°£ : 2005-03-16 ¼ö 5:52 pm    Á¦¸ñ: ¾Ñ! Åð±Ù½Ã°£ÀÌ´Ù.!  

Åð±Ù½Ã°£À̶ó Äڵ常 ¿Ã·Áµå¸®µµ·Ï ÇÏÀú~
¾îµð´Ù ³Ö¾î¾ßÇÒÁö´Â ÀÚ½ÅÀÌÆÇ´Ü!!!

ÄÚµå : 
public static void Initialize()
      {
         Server.Commands.Register("BandSelf",AccessLevel.Player,new CommandEventHandler( BandSelf ) );
      }
      //static
      public static void  BandSelf( CommandEventArgs e )   //¼¿ÇÁºØ´ëÁú
      {
         Mobile from = e.Mobile;
         Container pack = from.Backpack;
         if( pack.FindItemByType(typeof( Bandage )) == null)
         {
            from.SendMessage( "ºØ´ë°¡ ¾ø½À´Ï´Ù" ); // Bandages can not be used on that.
            return;
         }
      
         Bandage bands = (Bandage)pack.FindItemByType(typeof( Bandage ));
      
         if ( from.InRange( bands.GetWorldLocation(), Core.AOS ? 2 : 1 ) )
         {
            from.RevealingAction();

            if ( bands.Deleted )
               return;

            if ( from.InRange( bands.GetWorldLocation(), Core.AOS ? 2 : 1 ) )
            {
               if ( BandageContext.BeginHeal( from, from ) != null )
                  bands.Consume();
            }
            else
            {
               from.SendLocalizedMessage( 500295 ); // You are too far away to do that.
            }
         }
         else
         {
            from.SendLocalizedMessage( 500970 ); // Bandages can not be used on that.
         }
      }

ÀÚ¼¼ÇÑ ¼³¸íÀº Áý¿¡¼­!!
¸Ç À§·Î °¡±â  
c1dong8



°¡ÀÔÀÏ: 2004³â 01¿ù 26ÀÏ
°Ô½Ã¹°: 446

±Û ÀÛ¼º½Ã°£ : 2005-03-16 ¼ö 11:23 pm    Á¦¸ñ: ³Ä?  

¿äÁò ¾ß½É¸¸¸¸À» ´Ù¿î·Îµå ¹Þ°í À־ ±ô¹ÚÇϰí ÀÖ¾ú±º¿ä ¤Ñ¤Ñ;;;
¿©Æ° ´ëÃæ ÁÖ¼®À» ºÙ¿´½À´Ï´Ù.
ÀÚ¼¼ÇÑ ³»¿ëÀº '¿äû°­ÀÇ'·Î °Ë»ö!
IJ´ÔÀÇ °­ÀǸ¦ º¸¼¼¿ä
ÄÚµå : 
namespace Server.Items
{
   public class BandSelf_Main
   {
      public static void Initialize()
      {
         //¸í·É¾î
         Server.Commands.Register("BandSelf",AccessLevel.Player,new CommandEventHandler( BandSelf ) );
      }
      
      public static void  BandSelf( CommandEventArgs e )   //¼¿ÇÁºØ´ëÁú¿ë ÇÔ¼ö
      {
          Mobile from = e.Mobile;   //¸í·ÉÀ» È£ÃâÇÑ ¸ðºô
          Container pack = from.Backpack;   //°¡¹æ¿¡ ºØ´ë°¡ ÀÖ³ª È®ÀÎÇϱâ À§ÇÑ ¸ðºôÀÇ °¡¹æ
          if( pack.FindItemByType(typeof( Bandage )) == null)   //ºØ´ëŸÀÔÀÌ ¾ø´Ù´Â°Ç ºØ´ë°¡ ¾øÀ½À» ¶æÇÑ´Ù!
          {
            from.SendMessage( "°¡¹æ¿¡ ºØ´ë°¡ ¾ø½À´Ï´Ù" );
            return;
          }
         
          Bandage bands = (Bandage)pack.FindItemByType(typeof( Bandage ));   //°¡¹æ¾È¿¡ ÀÖ´Â ºØ´ë¸¦ ¼±ÅÃÇÑ»óŰ¡ µÈ´Ù.
          //¿©±â¼­ºÎÅÍ´Â ºØ´ë¿¡ ÀÖ´Â Äڵ带 ¶È°°ÀÌ ¾´´Ù.
          if ( from.InRange( bands.GetWorldLocation(), Core.AOS ? 2 : 1 ) )
          {
            from.RevealingAction();

            if ( bands.Deleted )
               return;

            if ( from.InRange( bands.GetWorldLocation(), Core.AOS ? 2 : 1 ) )
            {
               if ( BandageContext.BeginHeal( from, from ) != null )
                 bands.Consume();
            }
            else
            {
               from.SendLocalizedMessage( 500295 ); // You are too far away to do that.
            }
          }
          else
          {
            from.SendLocalizedMessage( 500970 ); // Bandages can not be used on that.
          }
        }
   }
}

Âü°í·Î Àú´Â ³²ÀÌ 'ÀÌ°Å ÇØÁÖ¼¼¿ä'ÇØµµ ÇØÁÖÁö ¾Ê½À´Ï´Ù-_-;
´Ü Á¦°¡ ÇÊ¿äÇÏ¸é ¿¹¿Ü ¤Ñ¤Ñ¤»
³²ÀÇ ¾ÆÀ̵ð¾î·Î ³ªÀÇ ¼­¹ö¸¦ ¾÷±ÛÇÒ¼öµµ Àִ°ÍÀ̴ϱî¿ä ¤¾¤¾¤¾
¿©Æ° À̰͵µ ±¦ÂùÀº ¾ÆÀ̵ð¾î¿©¼­ ¸¸µé¾îºÃ½À´Ï´Ù;;
ºØ´ëÄڵ带 ŸÄÏÀ» ÀÚ½ÅÀ¸·Î ¹Ù±î¼­ ºØ´ë¿¡ ÀÖ´Â ÇÔ¼ö¸¦ ±×´ë·Î ¾²·Á°í Çߴµ¥....½ÇÆÐÇϰí ÀÌ·¸°Ô Çß½À´Ï´Ù;;;
¸Ç À§·Î °¡±â  
pkpk777



°¡ÀÔÀÏ: 2005³â 02¿ù 20ÀÏ
°Ô½Ã¹°: 16
ÁÖ ¼Ò: °æºÏ ¼ºÁÖ±º ÃÊÀü¸é ¹®´ö¸®/277

±Û ÀÛ¼º½Ã°£ : 2005-03-16 ¼ö 11:48 pm    Á¦¸ñ: ¾Æ Á¤¸» °¨»çÇÕ´Ï´Ù  

¾Æ Á¤¸» °¨»çÇÕ´Ï´Ù ±â´Ù¸° º¸¶÷ÀÌ ÀÖ³»¿ä ¿©·¯°¡Áö ¸¹ÀÌ ¹è¿ì°Ú¾î¿ä
¸Ç À§·Î °¡±â  
 
       RunUo.Korean.Forum -> Other & etc..
ÇöÀçÆäÀÌÁö : 1/1


Powered by phpBB Search Engine Indexer
Powered by phpBB © 2001, 2002 phpBB Group