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

    • A widespread proxy service, operating through hijacked devices, has been shut down in a cross-industry effort led by Google. The network, known as IPIDEA, functioned by secretly converting millions of personal devices into proxies for malicious actors. The Mechanism of the Scheme The operation distributed hidden code within seemingly legitimate free apps and VPN services. Once installed, this code enrolled the user’s device into a pool of residential IP addresses. These addresses were then sold anonymously, primarily to cybercriminal and state-sponsored groups, to mask the origin of attacks, fraud, and espionage. Key impacts of the network included: Facilitating operations for more than 550 identified threat actors. Exposing unsuspecting device owners to potential legal and security risks by associating their IP addresses with criminal traffic. The Takedown Strategy Google and its partners disrupted the service by: Seizing core operational domains. Using Google Play Protect to detect and remove malicious applications. Coordinating with infrastructure providers to prevent the network from reestablishing itself. The action highlights the necessity of continuous user awareness, developer diligence in code reviews, and proactive industry cooperation to maintain cybersecurity. Front Companies Associated with IPIDEA IPIDEA masked its activities under various brand names, such as: Proxy Brands: 360 Proxy, 922 Proxy, Luna Proxy, IP2World, ABC Proxy. VPN Brands: Door VPN, Radish VPN, Galleon VPN. SDK Brands: PacketSDK, HexSDK (the toolkits used to embed proxy code).   Choosing Ethical Proxy Services Alternatives For lawful purposes like market research, ad verification, or data aggregation, selecting a transparent and consensual provider is essential. Reputable services obtain explicit user permission for their networks and enforce strict compliance measures. Examples of Established Providers: Bright Data: A leading, consent-based residential proxy network. Oxylabs: Provides large-scale proxy solutions for enterprise needs. MoMoProxy: Maintains a large pool of residential IPs for tasks like web scraping.   Only $850/1TB.  https://momoproxy.com   Identifying a Legitimate Provider: A trustworthy service will typically demonstrate: Informed Consent: Networks are built with the clear agreement of participants. Robust Compliance: Proactive systems to prevent abuse and respect website terms. Operational Transparency: Public-facing policies, identifiable corporate structure, and genuine customer support. Conduct thorough due diligence. Opt for providers that are clear about their IP sources and maintain strong anti-abuse policies, ensuring your legitimate activities do not inadvertently support harmful operations.
    • Lineage 2 Interlude Developer – Cliente + Datapack Hola, soy developer especializado en Lineage 2 Interlude con experiencia tanto en cliente como datapack/core. ✔ Desarrollo datapack (Java, scripts, quests, balance PvP/PvE) ✔ Fixes core / geodata / exploits ✔ Sistemas custom (events, Olympiad, instancias, mods PvP) ✔ Cliente: interface mods, system patches, .dat edits, UI personalizada ✔ Optimización y estabilidad de servidor ✔ Trabajo freelance o colaboración fija Si necesitáis soporte dev o mejoras para vuestro servidor Interlude, podéis contactarme por DM. Portfolio y ejemplos disponibles bajo petición.
    • Lineage 2 Interlude Developer – Cliente + Datapack Hola, soy developer especializado en Lineage 2 Interlude con experiencia tanto en cliente como datapack/core. ✔ Desarrollo datapack (Java, scripts, quests, balance PvP/PvE) ✔ Fixes core / geodata / exploits ✔ Sistemas custom (events, Olympiad, instancias, mods PvP) ✔ Cliente: interface mods, system patches, .dat edits, UI personalizada ✔ Optimización y estabilidad de servidor ✔ Trabajo freelance o colaboración fija Si necesitáis soporte dev o mejoras para vuestro servidor Interlude, podéis contactarme por DM. Portfolio y ejemplos disponibles bajo petición.
  • 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..