kwona21
°¡ÀÔÀÏ: 2003³â 12¿ù 25ÀÏ
°Ô½Ã¹°: 26
ÁÖ ¼Ò: /
|
±Û ÀÛ¼º½Ã°£ : 2003-12-28 ÀÏ 3:06 pm Á¦¸ñ: Á¤¼· ½Ä¹° ±â¸£±â ½Ã½ºÅÛ. |
|
|
Á¤¼· ½ºÅ¸ÀÏÀÇ ½Ä¹° ±â¸£±â ½Ã½ºÅÛ ÀÔ´Ï´Ù.
¾à°£ Å×½ºÆ® ÇØºÃ´Âµ¥ ¸¹ÀÌ ¶È°°´õ±º¿ä ^^
¾Æ±âÀÚ±âÇÑ Àç¹Ì°¡ ¼Ö¼Ö~
¼³Ä¡ ÇÏ´Â ¹æ¹ý :
1. ÇØ´ç ÆÄÀÏÀ» ´Ù¿î ¹Þ¾Æ¼ ¾ÐÃàÀ» Ǭ´ÙÀ½
Script\Plant System Æú´õ¸¦ ¸¸µé¾î ³Ö½À´Ï´Ù.
2. Script\Mobiles Æú´õ¿¡ ÀÖ´Â PlayerMobile.cs ÆÄÀÏÀ»
¿¾î¼ line 51 Á¤µµ¿¡ ¾Æ·¡ ¼Ò½º Äڵ带 »ðÀÔ, ÀúÀå ÇÕ´Ï´Ù.
ÄÚµå :
//ADDED for Orange Petals
public bool Petals;
public override bool CheckPoisonImmunity( Mobile from, Poison poison )
{
if (Petals)
return (poison.Level < 3);
return base.CheckPoisonImmunity( from, poison );
}
public override void OnPoisonImmunity(Mobile from, Poison poison)
{
if (Petals)
{
this.PrivateOverheadMessage( MessageType.Regular, 0x3B2, 1053092, this.NetState); // * You feel yourself resisting the effects of the poison *
return;
}
base.OnPoisonImmunity( from,poison );
}
public override void OnPoisoned(Mobile from, Poison poison, Poison oldPoison)
{
if (Petals && (poison != oldPoison))
{
this.PrivateOverheadMessage( MessageType.Regular, 0x3B2, 1053093, this.NetState); // * The strength of the poison overcomes your resistance! *
return;
}
base.OnPoisoned( from, poison, oldPoison);
}
// End added Orange Petals
Á¤¼· ½ºÅ¸ÀÏÀÇ ½Ä¹° ±â¸£±â ½Ã½ºÅÛ¿¡ °üÇÏ¿© ÀÚ¼¼È÷ ¾Ë°í ½ÍÀ¸½Å ºÐµéÀº
Á¤¼· Ç÷¹ÀÌ ÆÒ »çÀÌÆ®ÀÎ http://forg.co.kr/ ¿¡ °¡ÀÔÇϽðí, °¢Á¾À¯¿ëÇÑ Á¤º¸¶õÀÇ [½Ä¹°Å°¿ì±â]¸¦ Âü°í Çϼ¼¿ä. |
|