kaiser
°¡ÀÔÀÏ: 2004³â 10¿ù 05ÀÏ
°Ô½Ã¹°: 13
ÁÖ ¼Ò: ´ë±¸ ´Þ¼º±º ³í°øÀ¾ ºÏ1¸®/1-89
|
±Û ÀÛ¼º½Ã°£ : 2004-10-08 ±Ý 12:01 pm Á¦¸ñ: ¸®ÄÝ ¸¶Å© °ÔÀÌÆ® ½ºÆçÀ» ´øÀü¿¡¼ ÇÒ¼ö ÀÖ´Â ¹æ¹ýÀ».. |
|
|
°Ë»öÀ» ÅëÇØ¼ ÇØº¸±ä ÇØºÃ´Âµ¥¿©.
scripts/regions/dungeon/felucca/dungeon.cs
À̺κп¡¼
*public override bool OnBeginSpellCast( Mobile m, ISpell s )
{
if ( s is GateTravelSpell || s is RecallSpell || s is MarkSpell )
{
m.SendMessage( "You cannot cast that spell here." );
return false;
}
else
{
return base.OnBeginSpellCast( m, s );
}
}*/
ÀÌ·±½ÄÀ¸·Î
ÁÖ¼® ó¸® /* ÇÏ¿©ºÃ°í
±×¸®°í sepll/base/spellhelper.cs¿¡¼
private static bool[,] m_Rules = new bool[,]
{
/*T2A(Fel) Ilshenar Wind(Tram), Wind(Fel), Dungeons(Fel), Solen(Tram), Solen(Fel) */
/* Recall From */ {true, true, true, false, false, true, false },
/* Recall To */ { true, true, true, false, false, true, false },
/* Gate From */ {true, true, true, false, false, true, false },
/* Gate To */ {true, true, true, false, false, true, false },
/* Mark In */ { true, true, true, false, false, true, false }
};
À̺κп¡ ´ëÇØ¼ Áö±Ý ó·³ ¼öÁ¤Çغ¸¾Ò´Âµ¥
¿ª½Ã ¾ÈµÇ³×¿© À̺κÐÀÌ ¾Æ´Ï¶ó¸é ¾î´À ºÎºÐÀÎÁö ¾Ë¼ö ÀÖ¾úÀ½ ÁÁ°Ù½À´Ï´Ù
±×·³ ¼ö°íÇϼ¼¿© |
|