Hello everyone!
can someone help me modify my code so that my pvp and pk ad show in which region the battle took place? Here an example:
/*
* Copyright (C) 2004-2015 L2J DataPack
*
* This file is part of L2J DataPack.
*
* L2J DataPack is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* L2J DataPack is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package handlers.custom;
import l2r.Config;
import l2r.gameserver.model.actor.instance.L2PcInstance;
import l2r.gameserver.model.events.Containers;
import l2r.gameserver.model.events.EventType;
import l2r.gameserver.model.events.impl.character.player.OnPlayerPvPKill;
import l2r.gameserver.model.events.listeners.ConsumerEventListener;
import l2r.gameserver.network.SystemMessageId;
import l2r.gameserver.network.serverpackets.SystemMessage;
import l2r.gameserver.util.Broadcast;
public class CustomAnnouncePkPvP
{
public CustomAnnouncePkPvP()
{
if (Config.ANNOUNCE_PK_PVP)
{
Containers.Players().addListener(new ConsumerEventListener(Containers.Players(), EventType.ON_PLAYER_PVP_KILL, (OnPlayerPvPKill event) -> OnPlayerPvPKill(event), this));
}
}
/**
* @param event
* @return
*/
private Object OnPlayerPvPKill(OnPlayerPvPKill event)
{
L2PcInstance pk = event.getActiveChar();
if (pk.isGM())
{
return null;
}
L2PcInstance player = event.getTarget();
String msg = Config.ANNOUNCE_PVP_MSG;
if (player.getPvpFlag() == 0)
{
msg = Config.ANNOUNCE_PK_MSG;
}
msg = msg.replace("$killer", pk.getName()).replace("$target", player.getName());
if (Config.ANNOUNCE_PK_PVP_NORMAL_MESSAGE)
{
SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.S1);
sm.addString(msg);
Broadcast.toAllOnlinePlayers(sm);
}
else
{
Broadcast.toAllOnlinePlayers(msg, false);
}
return null;
}
}
There's a ton of such topics if you search for them. I guess people have less interest in seeing or answering the same questions all over again. While your topic is well struced, I suggest you using search. You'll find lots of information and how players sees it.
Yes, I do have several interface design previews available. However, most of them are part of ongoing projects that haven’t reached the release stage yet, so they’re currently under NDA.
Thank you so much for your kind words and support! 🙏
It truly means a lot and motivates me to keep pushing forward and creating even more unique work.
The real issue is that trust has been broken, and that’s why the community isn’t as lively. The forum used to be full of activity, but now it’s quiet, not because people don’t care, but because they don’t feel safe or respected anymore.
Over time, I’ve realized the problem isn’t the community, it’s the management. There’s been a lack of transparency, and honestly, a breach of trust when it comes to handling user information.
I found out that sensitive data like IP addresses and personal details have been shared between admins without properly protecting people’s privacy.
This type of behavior destroys the trust.
Question
HARDECORE
Hello everyone!
can someone help me modify my code so that my pvp and pk ad show in which region the battle took place? Here an example:
17 answers to this question
Recommended Posts