Jump to content

Recommended Posts

Posted

I want at Orc Vilage Can Play PvP becuse now you can hit some1 but you dont flag and at Cave of trials the same.

 

If some1 kill you now he dont flag/pk  is like *Giran Arena*

 

	}
		character.setInsideZone(L2Character.ZONE_PVP, true); <-- I change this lines to pvp but nothing				
	}
}

@Override
protected void onExit(L2Character character)
{
	if(character instanceof L2PcInstance)
	{
		character.setInsideZone(L2Character.ZONE_PVP, false);   <-- I change this lines to pvp but nothing
	}

 

some1 know  how i find Cave of Trials to make it newbie zone?

if you set newbie zone as ZONE_PVP players won't flag. because it will be combat zone. just remove it.

Posted

I want at Orc Vilage Can Play PvP becuse now you can hit some1 but you dont flag and at Cave of trials the same.

 

If some1 kill you now he dont flag/pk  is like *Giran Arena*

 

	}
		character.setInsideZone(L2Character.ZONE_PVP, true); <-- I change this lines to pvp but nothing				
	}
}

@Override
protected void onExit(L2Character character)
{
	if(character instanceof L2PcInstance)
	{
		character.setInsideZone(L2Character.ZONE_PVP, false);   <-- I change this lines to pvp but nothing
	}

 

some1 know  how i find Cave of Trials to make it newbie zone?

if you set newbie zone as ZONE_PVP players won't flag. because it will be combat zone. just remove it.

Posted

if you set newbie zone as ZONE_PVP players won't flag. because it will be combat zone. just remove it.

 

i add it to test it,  becuse before dont flag with zone_niewbie, i have remove that but i cant undestand what need to flag :/ that is the only problem

Posted

if you set newbie zone as ZONE_PVP players won't flag. because it will be combat zone. just remove it.

 

i add it to test it,  becuse before dont flag with zone_niewbie, i have remove that but i cant undestand what need to flag :/ that is the only problem

Posted

i add it to test it,  becuse before dont flag with zone_niewbie, i have remove that but i cant undestand what need to flag :/ that is the only problem

hm... go to l2pcinstance.java

 

find this:

	@Override
public boolean isAutoAttackable(L2Character attacker)
{

	// Check if the attacker isn't the L2PcInstance Pet
	if(attacker == this || attacker == getPet())
		return false;

	// Check if the attacker is a L2MonsterInstance
	if(attacker instanceof L2MonsterInstance)
		return true;

	// Check if the attacker is not in the same party
	if(getParty() != null && getParty().getPartyMembers().contains(attacker))
		return false;

	// Check if the attacker is in olympia and olympia start
	if(attacker instanceof L2PcInstance && ((L2PcInstance) attacker).isInOlympiadMode())
	{
		if(isInOlympiadMode() && isOlympiadStart() && ((L2PcInstance) attacker).getOlympiadGameId() == getOlympiadGameId())
		{
			if(isFakeDeath())
				return false;
			return true;
		}
		return false;
	}

	// Check if the attacker is not in the same clan
	if(getClan() != null && attacker != null && getClan().isMember(attacker.getName()))
		return false;

	if(attacker instanceof L2PlayableInstance
			&& isInFunEvent()){

		L2PcInstance player = null;
		if(attacker instanceof L2PcInstance){
			player = (L2PcInstance) attacker;
		}else if(attacker instanceof L2Summon){
			player = ((L2Summon) attacker).getOwner();
		}

		if(player != null){

			if(player.isInFunEvent()){

				//checks for events
				if((_inEventTvT && player._inEventTvT && TvT.is_started() && !_teamNameTvT.equals(player._teamNameTvT)) 
						|| (_inEventCTF && player._inEventCTF && CTF.is_started() && !_teamNameCTF.equals(player._teamNameCTF)) 
						|| (_inEventDM && player._inEventDM && DM.is_started()) 
						|| (_inEventVIP && player._inEventVIP && VIP._started))
					{
						return true;
					}
				return false;
			}
			return false;
		}
	}

	if(isInsideZone(ZONE_PEACE)){
		return false;
	}

 

after

		if(isInsideZone(ZONE_PEACE)){
		return false;

 

add

		if(isInsideZone(ZONE_NEWBIE)){
		return false;
	}

 

Feedback if works

Posted

i add it to test it,  becuse before dont flag with zone_niewbie, i have remove that but i cant undestand what need to flag :/ that is the only problem

hm... go to l2pcinstance.java

 

find this:

	@Override
public boolean isAutoAttackable(L2Character attacker)
{

	// Check if the attacker isn't the L2PcInstance Pet
	if(attacker == this || attacker == getPet())
		return false;

	// Check if the attacker is a L2MonsterInstance
	if(attacker instanceof L2MonsterInstance)
		return true;

	// Check if the attacker is not in the same party
	if(getParty() != null && getParty().getPartyMembers().contains(attacker))
		return false;

	// Check if the attacker is in olympia and olympia start
	if(attacker instanceof L2PcInstance && ((L2PcInstance) attacker).isInOlympiadMode())
	{
		if(isInOlympiadMode() && isOlympiadStart() && ((L2PcInstance) attacker).getOlympiadGameId() == getOlympiadGameId())
		{
			if(isFakeDeath())
				return false;
			return true;
		}
		return false;
	}

	// Check if the attacker is not in the same clan
	if(getClan() != null && attacker != null && getClan().isMember(attacker.getName()))
		return false;

	if(attacker instanceof L2PlayableInstance
			&& isInFunEvent()){

		L2PcInstance player = null;
		if(attacker instanceof L2PcInstance){
			player = (L2PcInstance) attacker;
		}else if(attacker instanceof L2Summon){
			player = ((L2Summon) attacker).getOwner();
		}

		if(player != null){

			if(player.isInFunEvent()){

				//checks for events
				if((_inEventTvT && player._inEventTvT && TvT.is_started() && !_teamNameTvT.equals(player._teamNameTvT)) 
						|| (_inEventCTF && player._inEventCTF && CTF.is_started() && !_teamNameCTF.equals(player._teamNameCTF)) 
						|| (_inEventDM && player._inEventDM && DM.is_started()) 
						|| (_inEventVIP && player._inEventVIP && VIP._started))
					{
						return true;
					}
				return false;
			}
			return false;
		}
	}

	if(isInsideZone(ZONE_PEACE)){
		return false;
	}

 

after

		if(isInsideZone(ZONE_PEACE)){
		return false;

 

add

		if(isInsideZone(ZONE_NEWBIE)){
		return false;
	}

 

Feedback if works

Posted

hm... go to l2pcinstance.java

 

find this:

	@Override
public boolean isAutoAttackable(L2Character attacker)
{

	// Check if the attacker isn't the L2PcInstance Pet
	if(attacker == this || attacker == getPet())
		return false;

	// Check if the attacker is a L2MonsterInstance
	if(attacker instanceof L2MonsterInstance)
		return true;

	// Check if the attacker is not in the same party
	if(getParty() != null && getParty().getPartyMembers().contains(attacker))
		return false;

	// Check if the attacker is in olympia and olympia start
	if(attacker instanceof L2PcInstance && ((L2PcInstance) attacker).isInOlympiadMode())
	{
		if(isInOlympiadMode() && isOlympiadStart() && ((L2PcInstance) attacker).getOlympiadGameId() == getOlympiadGameId())
		{
			if(isFakeDeath())
				return false;
			return true;
		}
		return false;
	}

	// Check if the attacker is not in the same clan
	if(getClan() != null && attacker != null && getClan().isMember(attacker.getName()))
		return false;

	if(attacker instanceof L2PlayableInstance
			&& isInFunEvent()){

		L2PcInstance player = null;
		if(attacker instanceof L2PcInstance){
			player = (L2PcInstance) attacker;
		}else if(attacker instanceof L2Summon){
			player = ((L2Summon) attacker).getOwner();
		}

		if(player != null){

			if(player.isInFunEvent()){

				//checks for events
				if((_inEventTvT && player._inEventTvT && TvT.is_started() && !_teamNameTvT.equals(player._teamNameTvT)) 
						|| (_inEventCTF && player._inEventCTF && CTF.is_started() && !_teamNameCTF.equals(player._teamNameCTF)) 
						|| (_inEventDM && player._inEventDM && DM.is_started()) 
						|| (_inEventVIP && player._inEventVIP && VIP._started))
					{
						return true;
					}
				return false;
			}
			return false;
		}
	}

	if(isInsideZone(ZONE_PEACE)){
		return false;
	}

 

after

		if(isInsideZone(ZONE_PEACE)){
		return false;

 

add

		if(isInsideZone(ZONE_NEWBIE)){
		return false;
	}

 

Feedback if works

 

i Add only this one  right?? 

		if(isInsideZone(ZONE_NEWBIE)){
		return false;
	}

 

i add it but i dont flag again :/

Posted

hm... go to l2pcinstance.java

 

find this:

	@Override
public boolean isAutoAttackable(L2Character attacker)
{

	// Check if the attacker isn't the L2PcInstance Pet
	if(attacker == this || attacker == getPet())
		return false;

	// Check if the attacker is a L2MonsterInstance
	if(attacker instanceof L2MonsterInstance)
		return true;

	// Check if the attacker is not in the same party
	if(getParty() != null && getParty().getPartyMembers().contains(attacker))
		return false;

	// Check if the attacker is in olympia and olympia start
	if(attacker instanceof L2PcInstance && ((L2PcInstance) attacker).isInOlympiadMode())
	{
		if(isInOlympiadMode() && isOlympiadStart() && ((L2PcInstance) attacker).getOlympiadGameId() == getOlympiadGameId())
		{
			if(isFakeDeath())
				return false;
			return true;
		}
		return false;
	}

	// Check if the attacker is not in the same clan
	if(getClan() != null && attacker != null && getClan().isMember(attacker.getName()))
		return false;

	if(attacker instanceof L2PlayableInstance
			&& isInFunEvent()){

		L2PcInstance player = null;
		if(attacker instanceof L2PcInstance){
			player = (L2PcInstance) attacker;
		}else if(attacker instanceof L2Summon){
			player = ((L2Summon) attacker).getOwner();
		}

		if(player != null){

			if(player.isInFunEvent()){

				//checks for events
				if((_inEventTvT && player._inEventTvT && TvT.is_started() && !_teamNameTvT.equals(player._teamNameTvT)) 
						|| (_inEventCTF && player._inEventCTF && CTF.is_started() && !_teamNameCTF.equals(player._teamNameCTF)) 
						|| (_inEventDM && player._inEventDM && DM.is_started()) 
						|| (_inEventVIP && player._inEventVIP && VIP._started))
					{
						return true;
					}
				return false;
			}
			return false;
		}
	}

	if(isInsideZone(ZONE_PEACE)){
		return false;
	}

 

after

		if(isInsideZone(ZONE_PEACE)){
		return false;

 

add

		if(isInsideZone(ZONE_NEWBIE)){
		return false;
	}

 

Feedback if works

 

i Add only this one  right?? 

		if(isInsideZone(ZONE_NEWBIE)){
		return false;
	}

 

i add it but i dont flag again :/

Posted

i Add only this one  right?? 

		if(isInsideZone(ZONE_NEWBIE)){
		return false;
	}

 

i add it but i dont flag again :/

no more ideas. probably you are doing something wrong

Posted

i Add only this one  right?? 

		if(isInsideZone(ZONE_NEWBIE)){
		return false;
	}

 

i add it but i dont flag again :/

no more ideas. probably you are doing something wrong

Posted

no more ideas. probably you are doing something wrong

i dont thing so becuse is newzone and it see like Arena  and somewhere need some work

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

    • - New Features in Anosim https://anosim.net -   You can now share your numbers with others via a unique link - no need to give them access to your account! How to Share Number https://prnt.sc/K83lxOjS-Fyb   How to Revoke Accsess: https://prnt.sc/jkVIQS2lhxvA   --- --- --- --- --- --- --- New OTP / SMS Activation Locations: - USA  - Australia - Honduras - Kenia
    • How to Create Multi-Accounts For TikTok, Youtube, Gmail....   Short Guide to Managing Multiple TikTok Accounts TikTok's anti-spam systems detect duplicate accounts via device IDs, IP addresses, and behavior. To avoid bans, follow these methods. 1. For 3-5 Accounts (Easiest) Use TikTok's built-in feature to add accounts in your app settings. Limitation: Frequent switching on the same device/IP can still trigger restrictions. 2. For Bulk Accounts (Safest) To make each account appear unique, you need to mask your digital footprint. Unique Emails & Proxies: Use a separate email and a residential/mobile proxy (e.g., MoMoProxy) for each account. Avoid free proxies. Anti-Detect Browsers: Use tools like AdsPower or Multilogin to create unique browser profiles, each with its own proxy and randomized digital fingerprint.   MoMoProxy Integrate with Adspower Browser   Process: In each unique browser profile, log into a separate Gmail and then create the TikTok account. 3. For One Device (Limited Use) Use app cloners like Parallel Space (Android) or Dual Space (iOS). Limitation: Not foolproof, as TikTok can sometimes detect cloned apps. Key Best Practices to Avoid Bans: Isolation: Use one proxy and one device/browser profile per account. Warm-Up: Act organically—watch videos, like, and comment—before posting content. Appear Unique: Use different usernames, bios, and profile pictures for each account. Avoid VPNs: Standard VPN IPs are often detected and flagged.   Youtube Video On How to Create TikTok Accounts  https://youtu.be/ZUihXj7BO4M  
    • How to Create Multi-Accounts For TikTok, Youtube, Gmail....   Short Guide to Managing Multiple TikTok Accounts TikTok's anti-spam systems detect duplicate accounts via device IDs, IP addresses, and behavior. To avoid bans, follow these methods. 1. For 3-5 Accounts (Easiest) Use TikTok's built-in feature to add accounts in your app settings. Limitation: Frequent switching on the same device/IP can still trigger restrictions. 2. For Bulk Accounts (Safest) To make each account appear unique, you need to mask your digital footprint. Unique Emails & Proxies: Use a separate email and a residential/mobile proxy (e.g., MoMoProxy) for each account. Avoid free proxies. Anti-Detect Browsers: Use tools like AdsPower or Multilogin to create unique browser profiles, each with its own proxy and randomized digital fingerprint.   MoMoProxy Integrate with Adspower Browser   Process: In each unique browser profile, log into a separate Gmail and then create the TikTok account. 3. For One Device (Limited Use) Use app cloners like Parallel Space (Android) or Dual Space (iOS). Limitation: Not foolproof, as TikTok can sometimes detect cloned apps. Key Best Practices to Avoid Bans: Isolation: Use one proxy and one device/browser profile per account. Warm-Up: Act organically—watch videos, like, and comment—before posting content. Appear Unique: Use different usernames, bios, and profile pictures for each account. Avoid VPNs: Standard VPN IPs are often detected and flagged.   Youtube Video On How to Create TikTok Accounts  https://youtu.be/ZUihXj7BO4M        
    • If you created it yourself for the first races just duplicate it in the same way for the other races (that is make the animations for the other races as well) and everything will work
    • OpenCV bot working for all l2 clients... but need special set for each server
  • 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