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

    • Hello everyone, I am looking to purchase a Premium Lineage 2 High Five server pack. My main requirements are: Stability & Quality (Most Important): The pack must be highly stable with no system errors or major bugs. Custom Features: It must include ready-to-use custom features such as a fully functional Community Board, custom NPC Buffers, and Custom Item Sellers (GM Shops), etc. Complete Files: It is absolutely necessary that the full source code (src) and complete Geodata are included. If you are selling a pack that meets these criteria, please send me a PM or leave a reply with the following information: Brief details and key features of the pack Price Test server availability (I would like to test it before buying) Thank you!
    • L2jmobiusDevClon — Classic Interlude p110 Emulator L2jmobiusDevClon is actively developing a Lineage 2 Classic Interlude p110 emulator. Development is done in free time with a strong focus on: • Stability • Authentic Classic mechanics • Clean and optimized architecture The project is based on the L2jMobius source and is continuously evolving and improving. System Requirements: • Java 25 • MariaDB 12.0 • Client p110 Current Revision: 3.0 Development Status: Active Distribution: Free Official Website: https://www.l2jmobiusdevclon.pp.ua Discord Server: https://discord.gg/23a9S8g4Bn Contact: Telegram — @L2jmobiusDevClon Also available via private messages Project Goals: ✔ Improved stability ✔ Maximum Classic accuracy ✔ Core optimization We are currently looking for: • Testers • Server administrators Suggestions, bug reports, and ideas are always welcome. Contact us via: ✔ Discord ✔ Telegram ✔ Private Messages
    • i guess loading only the effects that are needed it will maybe work, like removing from reshade shader folder the ones that are not needed, depends on the pc also i guess, also limithing the game at 30fps can be better maybe
    • Up   SELL CHARACTERS L2 REBORN FRANZ x1     destroyer 74 lvl naked - 120 euro sws 71 lvl naked - 120 euro pp 66 skills - 120 euro se 64 lvl - 90 euro   Characters are legit with mail   i can wtt the characters for adena server franz   sell adena franz 250kk stock     add discord topeseller4081  
  • Topics

×
×
  • Create New...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue..