• Новые темы в этом разделе публикуются автоматически при добавлении файла в менеджер ресурсов.
    Ручное создание новых тем невозможно.
Иконка ресурса

[aCis] [MOD] Only Adena Drop 2026-07-10

Нет прав для скачивания

caiolucios

Единомышленник
Пользователь
Сообщения
6
Розыгрыши
0
Репутация
174
Реакции
18
Баллы
188
caiolucios добавил(а) новый ресурс:

[aCis] [MOD] Only Adena Drop - [aCis] [MOD] Only Adena Drop

[MOD] Only Adena Drop (Configurable) for L2jAcis
Description:
This mod allows you to disable all standard item drops (materials, equipment, enchants, etc.) from all regular monsters in the game, keeping only Adena drops.

The system is designed to be intelligent: it automatically ignores Raid Bosses and Grand Bosses, ensuring the server's epic content remains unaffected. Additionally, it features a configuration-based "Whitelist" allowing you to add custom monster IDs (such as event...

Узнать больше об этом ресурсе...
 

kick

Баллов: 31
За сообщение
You can make it much better if you add only Adena during NPC data parsing. This way, you just use the existing drop system, which will have only Adena for the specified NPCs, without doing all those checks every time.

Java:
if (Config.ONLY_ADENA_DROP && !Config.ADENA_EXCLUDED_SET.contains(npcId)) {
    if (drop.getItemId() != 57) {
        continue;
    }
//...
}
//...
 
Назад
Сверху Снизу