Jump to content
  • 0

Without Karma, And Not Counting Pk


Question

2 answers to this question

Recommended Posts

  • 0
Posted

Check the method which increase the pvp/pk. No idea what name of that method fandc uses. Search inside L2PcInstance for setPvpKills(getPvpKills() + 1); and see what is wrong.

  • 0
Posted

Check the method which increase the pvp/pk. No idea what name of that method fandc uses. Search inside L2PcInstance for setPvpKills(getPvpKills() + 1); and see what is wrong.

 

public final void doPurePk(final Player killer)
    {
        // Check if the attacker has a PK counter greater than 0
        final int pkCountMulti = Math.max(killer.getPkKills() / 2, 1);

        // Calculate the level difference Multiplier between attacker and killed L2Player
        // final int lvlDiffMulti = Math.max(killer.getLevel() / _level, 1);

        // Calculate the new Karma of the attacker : newKarma = baseKarma*pkCountMulti*lvlDiffMulti
        // Add karma to attacker and increase its PK counter
        killer.increaseKarma(Config.KARMA_MIN_KARMA * pkCountMulti); // * lvlDiffMulti);
        killer.setPkKills(killer.getPkKills() + 1);
    }

    public final void doKillInPeace(final Player killer) // Check if the L2Player killed haven't Karma
    {
        if((_karma <= 0) && ((_event == null) || _event.checkPvP(killer, this)))
        {
            if(Config.SERVICES_PK_PVP_KILL_ENABLE)
            {
                if(Config.SERVICES_PK_PVP_TIE_IF_SAME_IP)
                {
                    if(this.getIP() != killer.getIP())
                    {
                        if(Config.SERVICES_ANNOUNCE_PK_ENABLED)
                        {
                            Announcements.getInstance().announceToAll("Player " + killer.getName() + " has killed " + killer.getTarget().getName() + " with a PK");
                        }
                        ItemFunctions.addItem(killer, Config.SERVICES_PK_KILL_REWARD_ITEM, Config.SERVICES_PK_KILL_REWARD_COUNT, true, "Pk");
                    }
                }
                else
                {
                    if(Config.SERVICES_ANNOUNCE_PK_ENABLED)
                    {
                        Announcements.getInstance().announceToAll("Player " + killer.getName() + " has killed " + killer.getTarget().getName() + " with a PK");
                    }
                    ItemFunctions.addItem(killer, Config.SERVICES_PK_KILL_REWARD_ITEM, Config.SERVICES_PK_KILL_REWARD_COUNT, true, "Pk");
                }
            }
            doPurePk(killer);
        }
        else
        {
            killer.setPvpKills(killer.getPvpKills() + 1);
        }
    }

 

------------------------------------------

 

 

public void setPvpKills(int pvpKills)
    {
        _pvpKills = pvpKills;
    }

 

 

-----------------------------------------

 

 

// Processing Karma/PKCount/PvPCount for killer
        if(killer.isPlayer())
        {
            Player pk = (Player) killer;
            int repValue = (getLevel() - pk.getLevel()) >= 20 ? 2 : 1;
            boolean war = atMutualWarWith(pk);

            if((war) && (pk.getClan().getReputationScore() > 0) && (this._clan.getLevel() >= 5) && (this._clan.getReputationScore() > 0) && (pk.getClan().getLevel() >= 5))
            {
                this._clan.broadcastToOtherOnlineMembers(new SystemMessage(1782).addString(getName()).addNumber(-this._clan.incReputation(-repValue, true, "ClanWar")), this);
                pk.getClan().broadcastToOtherOnlineMembers(new SystemMessage(1783).addNumber(pk.getClan().incReputation(repValue, true, "ClanWar")), pk);
            }

            CastleSiegeEvent siegeEvent = getEvent(CastleSiegeEvent.class);
            CastleSiegeEvent siegeEventPk = pk.getEvent(CastleSiegeEvent.class);
            if(siegeEvent != null && (siegeEvent == siegeEventPk))
            {
                pk.getClan().incSiegeKills();
                if(((siegeEventPk.getSiegeClan("defenders", pk.getClan()) != siegeEvent.getSiegeClan("attackers", getClan())) || (siegeEventPk.getSiegeClan("attackers", pk.getClan()) != siegeEvent.getSiegeClan("defenders", getClan()))) && (pk.getClan().getReputationScore() > 0) && (this._clan.getLevel() >= 5) && (this._clan.getReputationScore() > 0) && (pk.getClan().getLevel() >= 5))
                {
                    this._clan.broadcastToOtherOnlineMembers(new SystemMessage(1782).addString(getName()).addNumber(-this._clan.incReputation(-repValue, true, "ClanWar")), this);
                    pk.getClan().broadcastToOtherOnlineMembers(new SystemMessage(1783).addNumber(pk.getClan().incReputation(repValue, true, "ClanWar")), pk);
                }
            }
            DominionSiegeEvent dominionEvent = getEvent(DominionSiegeEvent.class);
            DominionSiegeEvent dominionEventPk = pk.getEvent(DominionSiegeEvent.class);
            if((dominionEvent != null) && (dominionEventPk != null))
            {
                pk.getClan().incSiegeKills();
            }
            FortressSiegeEvent fsiegeEvent = getEvent(FortressSiegeEvent.class);
            FortressSiegeEvent fsiegeEventPk = pk.getEvent(FortressSiegeEvent.class);
            if((fsiegeEvent != null) && (fsiegeEvent == fsiegeEventPk) && (pk.getClan() != null) && (_clan != null) && ((fsiegeEventPk.getSiegeClan("defenders", pk.getClan()) != fsiegeEvent.getSiegeClan("attackers", getClan())) || (fsiegeEventPk.getSiegeClan("attackers", pk.getClan()) != fsiegeEvent.getSiegeClan("defenders", getClan()))) && (pk.getClan().getReputationScore() > 0) && (this._clan.getLevel() >= 5) && (this._clan.getReputationScore() > 0) && (pk.getClan().getLevel() >= 5))
            {
                this._clan.broadcastToOtherOnlineMembers(new SystemMessage(1782).addString(getName()).addNumber(-this._clan.incReputation(-repValue, true, "ClanWar")), this);
                pk.getClan().broadcastToOtherOnlineMembers(new SystemMessage(1783).addNumber(pk.getClan().incReputation(repValue, true, "ClanWar")), pk);
            }
            ClanHallSiegeEvent chsiegeEvent = getEvent(ClanHallSiegeEvent.class);
            ClanHallSiegeEvent chsiegeEventPk = pk.getEvent(ClanHallSiegeEvent.class);
            if((chsiegeEvent != null) && (chsiegeEvent == chsiegeEventPk) && ((chsiegeEventPk.getSiegeClan("defenders", pk.getClan()) != chsiegeEvent.getSiegeClan("attackers", getClan())) || (chsiegeEventPk.getSiegeClan("attackers", pk.getClan()) != chsiegeEvent.getSiegeClan("defenders", getClan()))) && (pk.getClan().getReputationScore() > 0) && (this._clan.getLevel() >= 5) && (this._clan.getReputationScore() > 0) && (pk.getClan().getLevel() >= 5))
            {
                this._clan.broadcastToOtherOnlineMembers(new SystemMessage(1782).addString(getName()).addNumber(-this._clan.incReputation(-repValue, true, "ClanWar")), this);
                pk.getClan().broadcastToOtherOnlineMembers(new SystemMessage(1783).addNumber(pk.getClan().incReputation(repValue, true, "ClanWar")), pk);
            }
            if((isOnSiegeField()) && (!Config.SIEGE_PVP_COUNT)){ return; }
            if((this._pvpFlag > 0) || (war) || (Config.SIEGE_PVP_COUNT) || (Config.ZONE_PVP_COUNT) || isInZonePvP())
            {
                if(Config.SERVICES_PK_PVP_KILL_ENABLE)
                {
                    if(Config.SERVICES_PK_PVP_TIE_IF_SAME_IP)
                    {
                        if(this.getIP() != pk.getIP())
                        {
                            if(Config.SERVICES_ANNOUNCE_PVP_ENABLED)
                            {
                                Announcements.getInstance().announceToAll("Player " + pk.getName() + " win " + pk.getTarget().getName() + " in PVP");
                            }
                            ItemFunctions.addItem(pk, Config.SERVICES_PVP_KILL_REWARD_ITEM, Config.SERVICES_PVP_KILL_REWARD_COUNT, true, "PvP");
                        }
                    }
                    else
                    {
                        if(Config.SERVICES_ANNOUNCE_PVP_ENABLED)
                        {
                            Announcements.getInstance().announceToAll("Player " + pk.getName() + " win " + pk.getTarget().getName() + " in PVP");
                        }
                        ItemFunctions.addItem(pk, Config.SERVICES_PVP_KILL_REWARD_ITEM, Config.SERVICES_PVP_KILL_REWARD_COUNT, true, "PvP");
                    }
                }
                pk.setPvpKills(pk.getPvpKills() + 1);
            }
            else
            {
                doKillInPeace(pk);
            }
            pk.sendChanges();
        }

        int karma = _karma;
        decreaseKarma(Config.KARMA_LOST_BASE);
        
        // under normal conditions, things are lost with the death of the guard tower or player
        // In addition, the loss of viola at things smetri can lose things in the monster smteri
        boolean isPvP = killer.isPlayable() || (killer instanceof GuardInstance);
        
        if ((killer.isMonster() && !Config.DROP_ITEMS_ON_DIE // if you kill the monster and viola off
        ) || (isPvP // if you kill a player or the Guard and
        && ((_pkKills < Config.MIN_PK_TO_ITEMS_DROP // number of PCs too little
        ) || ((karma == 0) && Config.KARMA_NEEDED_TO_DROP)) // karma is not
        ) || isFestivalParticipant() // the festival things are not lost
            || (!killer.isMonster() && !isPvP))
        {
            return;
        }

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now


  • Posts

    • 11-29-2025 - OUR TOPIC IS RELEVANT! CONTACT US BY THE CONTACTS BELOW
    • 🔥 Launch was a success! Over 500 players joined L2Elixir on opening day, and we are holding a steady 420–450 online! We faced extortion attempts and heavy DDoS attacks, but our protections held strong — even if the cost was far higher than expected. What matters is we fought back and kept the server online for you. ⚔️ 💙 Our priority is simple: Deliver a stable, fair, and growing server that will evolve for years to come. We continue to invest in protections, advertising, and development — and we won’t stop. All we ask from YOU is one thing: 👉 Keep playing. The more active the community is, the faster the server grows. 💠 Important Note: We have no paid clans or CPs, no “boosted” groups, no unfair benefits. Everyone has an equal chance to progress and compete. Thank you to everyone who joined, supported, and believed in this project. Let’s make L2Elixir great again — even in 2025–2026! 🚀   Website: https://l2elixir.org/ Discord: https://discord.gg/5ydPHvhbxs   @Atom Can you please move to Private Servers? Thanks!
    • https://jumpshare.com/share/kIdeKALOhgtMKpBKqxpg Test Equip Armors-> FullPlate, Gloves, Legs, Chest , Boots
    • 黑色星期五 — 为您的流量提供高级福利 仅在11月28日,我们的特别促销码可为您提供13%的商店折扣。 促销码: BLACKFRIDAY (13% 折扣) 您可以通过我们的网站或 Telegram 机器人在商店购物! 有效链接: 数字商品商店(网站): 前往 商店 Telegram 机器人: 前往 – 通过 Telegram Messenger 方便访问商店。 其他服务: 虚拟号码服务: 前往 用于购买 Telegram Stars 的机器人: 前往 – 快速且优惠地在 Telegram 中购买 Stars。 SMM 面板: 前往 – 推广您的社交媒体账户。 我们向您呈现当前的 促销和特惠活动 列表,用于购买我们服务的产品和服务: 1. 您可以在首次购买时使用促销码:SOCNET(15% 折扣) 2. 获取 $1 商店余额或 10–20% 折扣 — 只需在我们网站注册后发送您的用户名,格式如下:“SEND ME BONUS, MY USERNAME IS...” — 您需要在我们的论坛帖子中写下这句话! 3. SMM 面板首次试用可获得 $1:只需在我们的网站(支持)提交主题为“Get Trial Bonus”的工单。 4. 我们的 Telegram 频道和 Stars 购买机器人每周都会举办 Telegram Stars 抽奖活动! 新闻: ➡ Telegram 频道: https://t.me/accsforyou_shop ➡ WhatsApp 频道: https://chat.whatsapp.com/K8rBy500nA73z27PxgaJUw?mode=ems_copy_t ➡ Discord 服务器: https://discord.gg/y9AStFFsrh 联系方式与支持: ➡ Telegram: https://t.me/socnet_support ➡ WhatsApp: https://wa.me/79051904467 ➡ Discord: socnet_support ➡ ✉ 邮箱: solomonbog@socnet.store
  • Topics

×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock