Jump to content
  • 0

[Help] Autoflag with pvpkills ..


Question

Posted

hey people I got this code (credits to nevermore)

 

    /*
     * This program 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.
     *
     * This program 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 com.l2jserver.gameserver.model.zone.type;
     
    import com.l2jserver.gameserver.ThreadPoolManager;
    import com.l2jserver.gameserver.model.actor.L2Character;
    import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
    import com.l2jserver.util.Rnd;
     
     
    /**
     * An Custom PvP Zone
     *
     * @author  NeverMore
     */
    public class L2CustomPvP extends L2RespawnZone
    {
        //Ramdom Locations configs
        private static int[] _x = {11551, 10999, 10401};
        private static int[] _y = {-24264, -23576, -24030};
        private static int[] _z = {-3644, -3651, -3660 };
       
        public L2CustomPvP(int id)
        {
            super(5555);
        }
       
        @Override
        protected void onEnter(L2Character character)
        {
            character.setInsideZone(L2Character.ZONE_PVP, true);
            character.setInsideZone(L2Character.ZONE_NOSUMMONFRIEND, true);
           
               if (character instanceof L2PcInstance)
               {
                   ((L2PcInstance) character).sendMessage("You enter a PvP Area");
                   ((L2PcInstance) character).setPvpFlag(1);
			   ((L2PcInstance) character).broadcastUserInfo();
               }
        }
       
        @Override
        protected void onExit(L2Character character)
        {
            character.setInsideZone(L2Character.ZONE_PVP, false);
            character.setInsideZone(L2Character.ZONE_NOSUMMONFRIEND, false);
           
            if (character instanceof L2PcInstance)
            {
                ((L2PcInstance) character).stopNoblesseBlessing(null);
                ((L2PcInstance) character).setPvpFlag(0);
			((L2PcInstance) character).broadcastUserInfo(); 
                ((L2PcInstance) character).sendMessage("You exit from a PvP Area");
            }
        }
       
        static class BackToPvp implements Runnable
        {
            private L2Character _activeChar;
     
            BackToPvp(L2Character character)
            {
                _activeChar = character;
            }
     
            @Override
            public void run()
            {
                int r = Rnd.get(3);
                _activeChar.teleToLocation(_x[r] , _y[r], _z[r]);
            }
        }
       
        @Override
        public void onDieInside(L2Character character)
        {
               if (character instanceof L2PcInstance)
               {
               }
        }
       
        @Override
        public void onReviveInside(L2Character character)
        {
            ThreadPoolManager.getInstance().scheduleGeneral(new BackToPvp(character), 500);
            ((L2PcInstance) character).isNoblesseBlessed();
        }
    }

 

but when I kill someone in this autoflag pvpzone It doesnt count my PvPkills.. and I dont know why.

 

Recommended Posts

  • 0
Posted

hey people I got this code (credits to nevermore)

 

    /*
     * This program 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.
     *
     * This program 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 com.l2jserver.gameserver.model.zone.type;
     
    import com.l2jserver.gameserver.ThreadPoolManager;
    import com.l2jserver.gameserver.model.actor.L2Character;
    import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
    import com.l2jserver.util.Rnd;
     
     
    /**
     * An Custom PvP Zone
     *
     * @author  NeverMore
     */
    public class L2CustomPvP extends L2RespawnZone
    {
        //Ramdom Locations configs
        private static int[] _x = {11551, 10999, 10401};
        private static int[] _y = {-24264, -23576, -24030};
        private static int[] _z = {-3644, -3651, -3660 };
       
        public L2CustomPvP(int id)
        {
            super(5555);
        }
       
        @Override
        protected void onEnter(L2Character character)
        {
            character.setInsideZone(L2Character.ZONE_PVP, true);
            character.setInsideZone(L2Character.ZONE_NOSUMMONFRIEND, true);
           
               if (character instanceof L2PcInstance)
               {
                   ((L2PcInstance) character).sendMessage("You enter a PvP Area");
                   ((L2PcInstance) character).setPvpFlag(1);
			   ((L2PcInstance) character).broadcastUserInfo();
               }
        }
       
        @Override
        protected void onExit(L2Character character)
        {
            character.setInsideZone(L2Character.ZONE_PVP, false);
            character.setInsideZone(L2Character.ZONE_NOSUMMONFRIEND, false);
           
            if (character instanceof L2PcInstance)
            {
                ((L2PcInstance) character).stopNoblesseBlessing(null);
                ((L2PcInstance) character).setPvpFlag(0);
			((L2PcInstance) character).broadcastUserInfo(); 
                ((L2PcInstance) character).sendMessage("You exit from a PvP Area");
            }
        }
       
        static class BackToPvp implements Runnable
        {
            private L2Character _activeChar;
     
            BackToPvp(L2Character character)
            {
                _activeChar = character;
            }
     
            @Override
            public void run()
            {
                int r = Rnd.get(3);
                _activeChar.teleToLocation(_x[r] , _y[r], _z[r]);
            }
        }
       
        @Override
        public void onDieInside(L2Character character)
        {
               if (character instanceof L2PcInstance)
               {
               }
        }
       
        @Override
        public void onReviveInside(L2Character character)
        {
            ThreadPoolManager.getInstance().scheduleGeneral(new BackToPvp(character), 500);
            ((L2PcInstance) character).isNoblesseBlessed();
        }
    }

 

but when I kill someone in this autoflag pvpzone It doesnt count my PvPkills.. and I dont know why.

 

  • 0
Posted

hey people I got this code (credits to nevermore)

 

    /*
     * This program 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.
     *
     * This program 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 com.l2jserver.gameserver.model.zone.type;
     
    import com.l2jserver.gameserver.ThreadPoolManager;
    import com.l2jserver.gameserver.model.actor.L2Character;
    import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
    import com.l2jserver.util.Rnd;
     
     
    /**
     * An Custom PvP Zone
     *
     * @author  NeverMore
     */
    public class L2CustomPvP extends L2RespawnZone
    {
        //Ramdom Locations configs
        private static int[] _x = {11551, 10999, 10401};
        private static int[] _y = {-24264, -23576, -24030};
        private static int[] _z = {-3644, -3651, -3660 };
       
        public L2CustomPvP(int id)
        {
            super(5555);
        }
       
        @Override
        protected void onEnter(L2Character character)
        {
            character.setInsideZone(L2Character.ZONE_PVP, true);
            character.setInsideZone(L2Character.ZONE_NOSUMMONFRIEND, true);
           
               if (character instanceof L2PcInstance)
               {
                   ((L2PcInstance) character).sendMessage("You enter a PvP Area");
                   ((L2PcInstance) character).setPvpFlag(1);
			   ((L2PcInstance) character).broadcastUserInfo();
               }
        }
       
        @Override
        protected void onExit(L2Character character)
        {
            character.setInsideZone(L2Character.ZONE_PVP, false);
            character.setInsideZone(L2Character.ZONE_NOSUMMONFRIEND, false);
           
            if (character instanceof L2PcInstance)
            {
                ((L2PcInstance) character).stopNoblesseBlessing(null);
                ((L2PcInstance) character).setPvpFlag(0);
			((L2PcInstance) character).broadcastUserInfo(); 
                ((L2PcInstance) character).sendMessage("You exit from a PvP Area");
            }
        }
       
        static class BackToPvp implements Runnable
        {
            private L2Character _activeChar;
     
            BackToPvp(L2Character character)
            {
                _activeChar = character;
            }
     
            @Override
            public void run()
            {
                int r = Rnd.get(3);
                _activeChar.teleToLocation(_x[r] , _y[r], _z[r]);
            }
        }
       
        @Override
        public void onDieInside(L2Character character)
        {
               if (character instanceof L2PcInstance)
               {
               }
        }
       
        @Override
        public void onReviveInside(L2Character character)
        {
            ThreadPoolManager.getInstance().scheduleGeneral(new BackToPvp(character), 500);
            ((L2PcInstance) character).isNoblesseBlessed();
        }
    }

 

but when I kill someone in this autoflag pvpzone It doesnt count my PvPkills.. and I dont know why.

 

Guest
This topic is now closed to further replies.


  • Posts

    • I’m coming to you with a small update — internal testing is currently underway. We’re working on catching minor issues and resolving them before the server launch 😉 In the near future, we’re planning public tests, which you’ll all be invited to. At the same time, I’ll be sharing a few Quality of Life changes coming to L2 Genesis.   Even if you’re not interested in playing right now, but you are a long-time Lineage 2 player, feel free to join our community. We would greatly appreciate your experience and feedback to help us improve and develop our project. Join the growing L2Genesis community: https://discord.gg/mcuHsQzNCm Also check our website: https://l2genesis.com/   Offline Shop System — run your shop without being online.   Buff Shop System — playing as a buffer? When you’re not in the game, sell buffs! Reworked classic interface, adapted to Interlude — shown here with the inventory menu as an example. New custom mob drop and spoil preview. DualBox Verification System — each player can only use one active account at a time. Genesis Wiki — a collection of all essential information about items, NPCs, drops, spoils, and quests.
    • https://gitlab.com/Tryskell/acis_public nai swsta, exeis kati pio updated na mas protineis? 
    • 🔥 L2Gold Enma – High Rate PvP Interlude 🔥 Interlude Chronicle • C6 Skills • Pure PvP Experience Welcome to L2Gold Enma, a high-rate PvP server designed for players who want instant action, balanced gameplay and nonstop PvP, without pointless grinding. ⚔️ Server Rates XP / SP: x1000 Adena / Drops: x10 Chronicle: Interlude Skills: C6 balanced skills Buff duration: 2 hours No weight limit 🎮 Gameplay Philosophy Fast leveling, instant PvP Clean Interlude experience No pay-to-win mechanics Focus on skill-based PvP 🛡️ Core Features Global Gatekeeper Offline shops Auto events (TvT, DM, CTF, etc.) Retail-like Olympiad with custom balance Active Raid Bosses Easy access to PvP gear 🏰 PvP & Competition Mass PvP & clan wars Meaningful castle sieges Olympiad focused on player skill Balanced classes for both solo & group PvP ⚡ Why L2Gold Enma? Interlude nostalgia with C6 skills High rates, low grind Stable server & active development Community-focused updates 💥 Join L2Gold Enma and dominate the battlefield! This is not a farm server. This is PvP   https://l2gold-enma.com/ https://discord.com/invite/Ba9cHj3HUJ
    • Hi I'm still online for this but making backup of everything in that time I didn't organize well so let me create a pack and upload to archive.org maybe. Thanks ! we can enrich togethers this if everyone add more and more old files.
  • 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..