U3Games

Lineage II | Desarrollo & Soporte => Desarrollo de Servidores => Implementaciones => Mensaje iniciado por: Swarlog en Ago 12, 2022, 01:30 AM

Título: Mana Potions en zonas pvp
Publicado por: Swarlog en Ago 12, 2022, 01:30 AM
(https://www.united-extreme.com/u3games/foro/proxy.php?request=http%3A%2F%2Fi.imgur.com%2FgQDe0L7.jpg&hash=8e94fc9455f92164e54cc76c0cb716d6b31e01a9)

if ((!Config.L2JMOD_ENABLE_MANA_POTIONS_SUPPORT) || playable.isInsideZone(L2Character.ZONE_PVP))
{
playable.sendPacket(SystemMessage.getSystemMessage(SystemMessageId.NOTHING_HAPPENED));
    playable.sendMessage("You can't spam mana in ARENA little pussy!.");
return;
}

Para H5:

if ((!Config.L2JMOD_ENABLE_MANA_POTIONS_SUPPORT) || playable.isInsideZone(ZoneId.ZONE_PVP))
{
    playable.sendPacket(SystemMessage.getSystemMessage(SystemMessageId.NOTHING_HAPPENED));
    playable.sendMessage("You can't spam mana in ARENA little pussy!.");
    return;
}