°Ë»öÀ» ÅëÇØ¼ ÇØº¸±ä ÇØºÃ´Âµ¥¿©.
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 }
};
À̺κп¡ ´ëÇØ¼ Áö±Ý ó·³ ¼öÁ¤Çغ¸¾Ò´Âµ¥
¿ª½Ã ¾ÈµÇ³×¿© À̺κÐÀÌ ¾Æ´Ï¶ó¸é ¾î´À ºÎºÐÀÎÁö ¾Ë¼ö ÀÖ¾úÀ½ ÁÁ°Ù½À´Ï´Ù
±×·³ ¼ö°íÇϼ¼¿©
|