This little code let you not attack mob if difference between you level and mob lever is over 15
//Battle.cpp
//in bool battle_is_attackable(LPCHARACTER ch, LPCHARACTER victim) search:
if (victim->IsDead())
return false;
//Add Under:
if (!(victim->IsPC()))
{
if...