Jump to content

Question

Posted (edited)

Been wondering if there is a way to make arena/pvp zone check for clan/ally members.

Meaning that I want to make it so you need ctrl to hit clan/ally members in arena/pvp zone because right now you can hit em straight away.

If there is something you can share with me would be grateful.

 

Or just a simple way to make a flag zone keep pvp flag because u simply unflag after u hit somebody inside it.

Using acis latest rev :thankyou:

Edited by whatisup

3 answers to this question

Recommended Posts

  • 0
Posted

updatePvpStatus, add your zone check and return, so it won't flag anew / won't be added to the task.

 

Matter of moving clan/ally check before the zone. Open Player.java and search for isCtrlPressed, check and understand the code and then do appropriate moves.

  • 0
Posted (edited)

So it works like this.

But when I remove the pvpzone it stops working (people unflag when they hit inside the zone).

And I can't seem to make it work.

 

I don't want it to be pvpzone because of the hit clan without ctrl.

It's the one or the other pretty much.

 

package net.sf.l2j.gameserver.model.zone.type;

import net.sf.l2j.Config;
import net.sf.l2j.gameserver.enums.ZoneId;
import net.sf.l2j.gameserver.model.actor.Creature;
import net.sf.l2j.gameserver.model.actor.Player;
import net.sf.l2j.gameserver.model.zone.ZoneType;
import net.sf.l2j.gameserver.network.SystemMessageId;
import net.sf.l2j.gameserver.taskmanager.PvpFlagTaskManager;

/**
 * A zone extending {@link ZoneType}, used for jail behavior. It is impossible to summon friends and use shops inside it.
 */
public class ChaoticZone extends ZoneType
{
	public ChaoticZone(int id)
	{
		super(id);
	}
	
	@Override
	protected void onEnter(Creature character)
	{
		if (character instanceof Player)
		{
			character.setInsideZone(ZoneId.CHAOTICZONE, true);
			character.setInsideZone(ZoneId.PVP, true);
			((Player) character).sendPacket(SystemMessageId.ENTERED_COMBAT_ZONE);
			
			final Player activeChar = (Player) character;
		
		// Set pvp flag
		if (activeChar.getPvpFlag() == 0)
			activeChar.updatePvPFlag(1);
		}
		return;
	}
	
	@Override
	protected void onExit(Creature character)
	{
		if (character instanceof Player)
		{
			character.setInsideZone(ZoneId.CHAOTICZONE, false);
			character.setInsideZone(ZoneId.PVP, false);
			
			final Player activeChar = (Player) character;
			((Player) character).sendPacket(SystemMessageId.LEFT_COMBAT_ZONE);
			activeChar.exitOnNoLandingZone();
			
			PvpFlagTaskManager.getInstance().add(activeChar, Config.PVP_PVP_TIME);
			
			// Set pvp flag
			if (activeChar.getPvpFlag() == 0)
				activeChar.updatePvPFlag(1);
		}
		return;
	}
}

 

Thank you for your time.

Edited by whatisup
  • 0
Posted

I already told you what to do, there are 2 methods in Player, updatePvpStatus.

 

The pvp check logic, onEnter, is wrong, as if you enter flagged, you get unflag after a while.

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

    • Anything that is not a kernel level anticheat is totally useless on todays market. You cannot properly prevent botting because, without kernel access, you cannot detect injected DLLs or inspect processes at the level required to stop them. It's good to see people contributing and trying different approaches, but in general, you won't be able to prevent bots from accessing and operating on your server with a usermode anticheat alone. There is a solution that I have not posted or shared with anyone that can fully prevent Adrenaline/Helper from being used on servers. However, I want to give it more time before discussing it publicly so I can see how people attempt to bypass anticheat systems. As I said, kernel level protection is the only thing that can effectively stop Adrenaline usage. When combined with HWID bans, TPM validation, and other hardware based checks, bypassing the protection becomes significantly harder.
    • Improved lucera2 fake appearance (SKINS) system with a more reliable equipment redraw, ensuring skin changes refresh properly in-game without requiring relog or manual armor re-equip. This fixes cases where the client could keep showing the previous armor model after changing appearance    
    • 🚀 IronLock Shield - Closed Beta Testing Hello everyone, We are currently looking for Lineage II Interlude server owners interested in participating in the closed beta phase of IronLock Shield. IronLock Shield is a security platform designed specifically for Interlude servers. Features include: ✓ Secure Launcher Architecture ✓ HWID-Based Licensing ✓ Anti-Debug Protection ✓ DLL Injection Detection ✓ Manual Map Detection ✓ Session Protection ✓ Replay Protection ✓ Runtime Integrity Verification ✓ Secure Update System Selected servers will receive 1 month of free access in exchange for testing and feedback. Website: https://ilshield.com If you are interested, feel free to send me a private message or contact me through Discord. Thank you.
    • GX-EXT Pack – 30% Discount Until Wednesday, June 17 Hello everyone, We are offering a special 30% discount on the GX-EXT Pack until Wednesday, June 17. GX-EXT is a complete extension pack for Lineage II servers, focused on performance, stability, gameplay improvements, custom systems, and server-side/client-side enhancements.
  • 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..