Çok eski bir web tarayıcısı kullanıyorsunuz. Bu veya diğer siteleri görüntülemekte sorunlar yaşayabilirsiniz.. Tarayıcınızı güncellemeli veya alternatif bir tarayıcı kullanmalısınız.
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...