Jump to content
  • 0

teleport clan help l2jfrozen


Question

Posted (edited)

Hello, I need help with this. I wanted to make a teleport so that a clan leader can take the whole clan, but they have to be close to the clan leader so that he can teleport. I was able to do it, but if 1 pj is not close, it won't let me travel to no one what he wanted to do if 1 pj of the clan is not close that pj does not travel but the others do thanks anyway

 

	private void doClanTeleport(L2PcInstance player, int val) 
	{

        L2TeleportLocation list = TeleportLocationTable.getInstance().getTemplate(val);
        
		if(!player.isClanLeader() && player.getClan() != null) 
		{
			player.sendMessage("Solo El lider de Clan Puede Usar El Teleport");
			return;
		}
	    if(player.getClan() == null) 
	    {
	    	player.sendMessage("No Estas en un clan");
			return;
	    }
		

		for (L2PcInstance member : player.getClan().getOnlineMembers(""))
		{
			if (!member.isInsideRadius(player, 1000, false, false))
			{
				player.sendMessage("El Jugador " + member.getName() + " Esta muy Lejos y no sera teleportado.");
				return;
			}
			
		}
		

		for (L2PcInstance member : player.getClan().getOnlineMembers(""))
			{


				if ((member == null) || (member == player))
				{
					continue;
				}
				if (member.isInDuel() && ((member.getDuelId() != member.getDuelId())))
				{
					continue;
				}	

				
				
				if (player.getClanId() == member.getClanId() && member.getLevel() >= 76 && member.getClan() != null && player.getClan() != null && member.getClanId() == player.getClanId())
				{
					
					member.teleToLocation(list.getLocX(), list.getLocY(), list.getLocZ());	
					member.sendMessage("Entrando A una Zona De Clan");	
					player.teleToLocation(list.getLocX(), list.getLocY(), list.getLocZ()); 
					
				}
				else
				{
					
					player.sendMessage("No Cumples Los Requisitos.");
					return;
				}
				
			}
		}

 

Edited by Vision

4 answers to this question

Recommended Posts

  • 0
Posted
2 hours ago, tensador3 said:
				player.sendMessage("El Jugador " + member.getName() + " Esta muy Lejos y no sera teleportado.");
				return;

Change the return to continue

  • 0
Posted (edited)
private void doClanTeleport(L2PcInstance player, int val) 
	{

        L2TeleportLocation list = TeleportLocationTable.getInstance().getTemplate(val);
        
		if(!player.isClanLeader() && player.getClan() != null) 
		{
			player.sendMessage("Solo El lider de Clan Puede Usar El Teleport");
			return;
		}
	    if(player.getClan() == null) 
	    {
	    	player.sendMessage("No Estas en un clan");
			return;
	    }
		
  
		for (L2PcInstance member : player.getClan().getOnlineMembers(""))
			{


				if ((member == null) || (member == player))
				{
					continue;
				}
          
				if (member.isInDuel() && ((member.getDuelId() != member.getDuelId())))
				{
					continue;
				}	

				if (!member.isInsideRadius(player, 1000, false, false))
				{
					player.sendMessage("El Jugador " + member.getName() + " Esta muy Lejos y no sera teleportado.");
					continue;
				}
				
				if (player.getClanId() == member.getClanId() && member.getLevel() >= 76 && member.getClan() != null && player.getClan() != null && member.getClanId() == player.getClanId())
				{
					
					member.teleToLocation(list.getLocX(), list.getLocY(), list.getLocZ());	
					member.sendMessage("Entrando A una Zona De Clan");	
					player.teleToLocation(list.getLocX(), list.getLocY(), list.getLocZ()); 
					
				}
				else
				{
					
					player.sendMessage("No Cumples Los Requisitos.");
					return;
				}
				
			}
		}

 

Should be like this I think. 🙂

EDIT:
Also, player (clan leader) teleportation is in wrong place, because he will be teleported as many times as there is online members.

Edited by xJustMe
  • 0
Posted
2 hours ago, xJustMe said:
private void doClanTeleport(L2PcInstance player, int val) 
	{

        L2TeleportLocation list = TeleportLocationTable.getInstance().getTemplate(val);
        
		if(!player.isClanLeader() && player.getClan() != null) 
		{
			player.sendMessage("Solo El lider de Clan Puede Usar El Teleport");
			return;
		}
	    if(player.getClan() == null) 
	    {
	    	player.sendMessage("No Estas en un clan");
			return;
	    }
		
  
		for (L2PcInstance member : player.getClan().getOnlineMembers(""))
			{


				if ((member == null) || (member == player))
				{
					continue;
				}
          
				if (member.isInDuel() && ((member.getDuelId() != member.getDuelId())))
				{
					continue;
				}	

				if (!member.isInsideRadius(player, 1000, false, false))
				{
					player.sendMessage("El Jugador " + member.getName() + " Esta muy Lejos y no sera teleportado.");
					continue;
				}
				
				if (player.getClanId() == member.getClanId() && member.getLevel() >= 76 && member.getClan() != null && player.getClan() != null && member.getClanId() == player.getClanId())
				{
					
					member.teleToLocation(list.getLocX(), list.getLocY(), list.getLocZ());	
					member.sendMessage("Entrando A una Zona De Clan");	
					player.teleToLocation(list.getLocX(), list.getLocY(), list.getLocZ()); 
					
				}
				else
				{
					
					player.sendMessage("No Cumples Los Requisitos.");
					return;
				}
				
			}
		}

 

Should be like this I think. 🙂

EDIT:
Also, player (clan leader) teleportation is in wrong place, because he will be teleported as many times as there is online members.

 

Try this

 

private void doClanTeleport(L2PcInstance player, int val) 
{
    L2TeleportLocation list = TeleportLocationTable.getInstance().getTemplate(val);
    
    if (player.getClan() == null) 
    {
        player.sendMessage("No Estas en un clan");
        return;
    }
  
    if (player.isClanLeader())
    {
        // Teleport all online members of the clan
        for (L2PcInstance member : player.getClan().getOnlineMembers(""))
        {
            // Skip the player and any members that are in a different duel
            if ((member == null) || (member == player) || (member.isInDuel() && (member.getDuelId() != member.getDuelId())))
            {
                continue;
            }
          
            // Check if the member meets the level requirement
            if (member.getLevel() >= 76)
            {
                member.teleToLocation(list.getLocX(), list.getLocY(), list.getLocZ());
                member.sendMessage("Entrando A una Zona De Clan");
            }
            else
            {
                player.sendMessage("El Jugador " + member.getName() + " no cumple los requisitos.");
            }
        }

        // Teleport the clan leader
        player.teleToLocation(list.getLocX(), list.getLocY(), list.getLocZ()); 
    }
    else
    {
        player.sendMessage("Solo El lider de Clan Puede Usar El Teleport");
    }
}

 

  • 0
Posted
9 hours ago, Celestine said:

 

Try this

 

private void doClanTeleport(L2PcInstance player, int val) 
{
    L2TeleportLocation list = TeleportLocationTable.getInstance().getTemplate(val);
    
    if (player.getClan() == null) 
    {
        player.sendMessage("No Estas en un clan");
        return;
    }
  
    if (player.isClanLeader())
    {
        // Teleport all online members of the clan
        for (L2PcInstance member : player.getClan().getOnlineMembers(""))
        {
            // Skip the player and any members that are in a different duel
            if ((member == null) || (member == player) || (member.isInDuel() && (member.getDuelId() != member.getDuelId())))
            {
                continue;
            }
          
            // Check if the member meets the level requirement
            if (member.getLevel() >= 76)
            {
                member.teleToLocation(list.getLocX(), list.getLocY(), list.getLocZ());
                member.sendMessage("Entrando A una Zona De Clan");
            }
            else
            {
                player.sendMessage("El Jugador " + member.getName() + " no cumple los requisitos.");
            }
        }

        // Teleport the clan leader
        player.teleToLocation(list.getLocX(), list.getLocY(), list.getLocZ()); 
    }
    else
    {
        player.sendMessage("Solo El lider de Clan Puede Usar El Teleport");
    }
}

 

it works thank you all for answering only add him if a player is far from the leader do not teleport to that player

 

	private void doClanTeleport(L2PcInstance player, int val) 
	{
	    L2TeleportLocation list = TeleportLocationTable.getInstance().getTemplate(val);
	    
	    if (player.getClan() == null) 
	    {
	        player.sendMessage("No Estas en un clan");
	        return;
	    }
	  
	    if (player.isClanLeader())
	    {
	        // Teleport all online members of the clan
	        for (L2PcInstance member : player.getClan().getOnlineMembers(""))
	        {
	            // Skip the player and any members that are in a different duel
	            if ((member == null) || (member == player) || (member.isInDuel() && (member.getDuelId() != member.getDuelId())))
	            {
	                continue;
	            }
	          
	            // Check if the member meets the level requirement
	            if (member.getLevel() >= 76  && member.isInsideRadius(player, 1000, false, false))
	            {
	                member.teleToLocation(list.getLocX(), list.getLocY(), list.getLocZ());
	                member.sendMessage("Entrando A una Zona De Clan");
	            }
	            else
	            {
	            	player.sendMessage("El Jugador " + member.getName() + " Esta muy Lejos y no sera teleportado.");
	            }
	        }

	        // Teleport the clan leader
	        player.teleToLocation(list.getLocX(), list.getLocY(), list.getLocZ()); 
	    }
	    else
	    {
	        player.sendMessage("Solo El lider de Clan Puede Usar El Teleport");
	    }
	}

 

 

 

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,   A quick update from the Emerge team. The official launch of Emerge Eclipse x10 is just around the corner and we are currently finishing the final preparations to ensure a smooth and stable opening for all players. Our team has been working on performance improvements, network optimizations, and additional infrastructure to provide the best possible experience from day one.   🚀 Launch Date: 7 June 2026 🕕 Launch Time: 18:00 CET We would like to invite everyone to join our Discord community where all announcements, updates, events, and support information are posted first. 🌐 Website: https://l2emerge.com 💬 Discord: https://discord.gg/l2emerge Thank you for all the support and feedback during the preparation phase. We look forward to seeing both new and veteran Lineage II players on launch day. See you soon on Emerge!
    • Added an enchant NPC ( more infos on test server)     - remade autofarm system, more clever , more humanlike steps, catacomb mode in route farm and rewrite of route farming   - Updated Antibot to defend even more from more advanced adrenaline users ( not gonna write how 😂 )   - now dll of antibot will not be flagged from antivirus or defenders   - Updated some more the AI based Agent     Our discord https://discord.gg/acvqx9rbhy   L2R Off files / monthly subscription
    • Interlude will never be the same again. To celebrate our first 3 months online, L2 Detona proudly presents League of Lineage.   A brand-new game mode inspired by the world's biggest MOBAs, bringing lane battles, minions, towers, strategic objectives, and epic team fights into the world of Lineage 2. All of this while preserving the essence that made Interlude one of the most beloved chronicles in Lineage 2 history.   ⚔️ Destroy enemy towers. 🛡️ Defend your base. 👑 Lead your team to victory.   📅 Officially launching on June 12, 2026. 🔥 Jump into the action right now through System_Test and become one of the first players to experience League of Lineage. Server Rates XP: 500x SP: 500x Adena: 200x Server Features Full Official Interlude gameplay with custom modifications Exclusive MOBA Arena 3 Hour Buffs for comfortable gameplay No Class Change Quests Website: https://www.l2detona.com Images of project: https://imgur.com/a/Lajn9Ag
    • Remove google ads from site , will be perfect without this.. we do a vote and we get 2-3 google ads, its nervus. i just give feedback you do ofc what you want 🙂
  • 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..