Moderators: Project Admin, Support Team, Storm Team
public virtual bool IsAllowedToCastSpell(GameLiving caster, GameLiving target, Spell spell, SpellLine spellLine)
{
//we only allow certain spell targets to be cast when targeting a keep component
if (target is GameKeepComponent || target is GameKeepDoor)
{
switch (spell.Target.ToLower())
{
case "self":
case "group":
case "pet":
break;
default: return false;
}
}
return true;
}
Where did it go? I may be misremembering here, but I could have sworn I took a few towers when the server was running 1.901 by casting earth pets on the doors. Maybe I just dreamt it....wierder things have happened.That is the reason why, new logic needs to be added.
- Code: Select all
public virtual bool IsAllowedToCastSpell(GameLiving caster, GameLiving target, Spell spell, SpellLine spellLine)
{
//we only allow certain spell targets to be cast when targeting a keep component
if (target is GameKeepComponent || target is GameKeepDoor)
{
switch (spell.Target.ToLower())
{
case "self":
case "group":
case "pet":
break;
default: return false;
}
}
return true;
}
case "enemy":
{
if (spell.SpellType == 'Summon')
return true;
break;
}
Return to “%s” Feature Discussion
Users browsing this forum: No registered users and 1 guest