 Oldbie

°¡ÀÔÀÏ: 2004³â 01¿ù 26ÀÏ °Ô½Ã¹°: 446
|
NPC°¡ ÆÄ´Â ¹°°Ç°ú »ç´Â ¹°°ÇÀº µû·Î ¸®½ºÆ®°¡ ÀÛ¼ºÀÌ µÇÀÖÀ¸´Ï ¼öÁ¤ÇØÁÖ½Ã¸é µÊ´Ï´Ù.
¾ËÄɹ̽ºÆ®¸¦ ¿¹¸¦µé¸é
Mobiles\Vendors\NPC\Alchemist.cs
ÄÚµå : |
public override void InitSBInfo()
{
m_SBInfos.Add( new SBAlchemist() );
}
|
¿äºÎºÐ¿¡ º¸½Ã¸é »ç°íÆÄ´Â ¹°°ÇÀÇ ¸®½ºÆ®°¡ 'SBAlchemist'ÀÓÀ» ¾Ë¼ö ÀÖ½À´Ï´Ù.
Mobiles\Vendors\SBInfo\SBAlchemist.cs
ÄÚµå : |
public class InternalBuyInfo : ArrayList
{
public InternalBuyInfo()
{
Add( new GenericBuyInfo( typeof( MortarPestle ), 500, 10, 0xE9B, 0 ) );
Add( new GenericBuyInfo( typeof( Bottle ), 10, 100, 0xF0E, 0 ) );
Add( new GenericBuyInfo( typeof( RefreshPotion ), 20, 10, 0xF0B, 0 ) );
Add( new GenericBuyInfo( typeof( AgilityPotion ), 20, 10, 0xF08, 0 ) );
Add( new GenericBuyInfo( typeof( NightSightPotion ), 20, 10, 0xF06, 0 ) );
Add( new GenericBuyInfo( typeof( LesserHealPotion ), 20, 10, 0xF0C, 0 ) );
Add( new GenericBuyInfo( typeof( StrengthPotion ), 20, 10, 0xF09, 0 ) );
Add( new GenericBuyInfo( typeof( LesserCurePotion ), 20, 10, 0xF07, 0 ) );
Add( new GenericBuyInfo( typeof( LesserPoisonPotion ), 20, 10, 0xF0A, 0 ) );
Add( new GenericBuyInfo( typeof( LesserExplosionPotion ), 26, 10, 0xF0D, 0 ) );
}
}
public class InternalSellInfo : GenericSellInfo
{
public InternalSellInfo()
{
Add( typeof( NightSightPotion ), 10 );
Add( typeof( AgilityPotion ), 10 );
Add( typeof( StrengthPotion ), 10 );
Add( typeof( RefreshPotion ), 10 );
Add( typeof( LesserCurePotion ), 10 );
Add( typeof( LesserHealPotion ), 10 );
Add( typeof( LesserPoisonPotion ), 10 );
Add( typeof( LesserExplosionPotion ), 13 );
}
}
|
Ä£ÀýÇϰԵµ »ç´Â¹°°Ç ÆÄ´Â¹°°ÇÀÌ Àß Á¤¸®µÇÀÖ±º¿ä *.*
µÚ¿¡ °¡°Ý±îÁö ÀûÇôÀÖ½À´Ï´Ù.
³Ê¹« ÁÁ¾Æ¿© ¤¾¤¾¤¾
...
,...
´Ù¾²°í ³ª´Ï....¾îµð¼±°¡ º»µíÇÑ ´À³¦ÀÌ ¤Ñ,.¤Ñ;; _________________ ´ç±Ù ·Î¸®¾ß½º ¤Ñ¤Ñv
|
|