-->
:: RunUo.Korean.Forum > Script Support
¹®¼­ÁÖ¼Ò : http://runuo.co.kr/forum/viewtopic.php?t=342

¡Ø TOPIC TITLE : Äɸ¯ÅÍÀÇ ÈýÆ®Æ÷ÀÎÆ®¸¦


Á¦  ¸ñ : Äɸ¯ÅÍÀÇ ÈýÆ®Æ÷ÀÎÆ®¸¦
¾ÆÀ̵ð: emwls - 2004-04-19 ¿ù 10:48 am
Äɸ¯ÅÍÀÇ HITPOINT¸¦ STRÀ̶û »ó°ü¾øÀÌ ¼³Á¤ÇÏ°í ½Í½À´Ï´Ù.
(¸¶³ª¿Í ½ºÅ¹̳ªµµ¡¦)

RunUO¿¡¼­ °¡´ÉÇѰ¡¿ä?

°¡´ÉÇÏ¸é ¾î¶² ¹æ¹ýÀ¸·Î ÇÏ¸é µË´Ï±î?
Á¦  ¸ñ : ..
¾ÆÀ̵ð: dh1024 - 2004-04-20 È­ 7:07 pm
PlayerMobile.cs ¸¦ ¼öÁ¤ÇØÁÖ¸éµË´Ï´Ù.

ÄÚµå : 

public override int HitsMax
      {
         get
         {
            int strBase;
            int strOffs = GetStatOffset( StatType.Str );

            if ( Core.AOS )
            {
               strBase = this.Str;
               strOffs += AosAttributes.GetValue( this, AosAttribute.BonusHits );
            }
            else
            {
               strBase = this.RawStr;
            }

            return (strBase / 2) + 50 + strOffs;
         }
      }

      public override int StamMax
      {
         get{ return base.StamMax + AosAttributes.GetValue( this, AosAttribute.BonusStam ); }
      }

      public override int ManaMax
      {
         get{ return base.ManaMax + AosAttributes.GetValue( this, AosAttribute.BonusMana ); }
      }


À̺κÐÀ» ¼öÁ¤ÇϼżŠget ºÎºÐÀÇ return °ªÀ» Á¤ÇØÁֽøéµË´Ï´Ù.