Jump to content

Recommended Posts

  • 2 weeks later...
  • 6 months later...
  • 2 weeks later...
  • 5 weeks later...
Posted

Hi!I install the NPC but i cant target it with normal character but its working with GM character!Should i have to change something in my SQL files?By the way very nice share!+1 :) 

  • 7 months later...
Posted

Hello i tried to make it for interlude frozen code:

package custom.PartyTeleporter;

import com.l2jfrozen.gameserver.cache.HtmCache;
import com.l2jfrozen.gameserver.datatables.sql.ItemTable;
import com.l2jfrozen.gameserver.model.L2Character;
import com.l2jfrozen.gameserver.model.L2Party;
import com.l2jfrozen.gameserver.model.L2TeleportLocation;
import com.l2jfrozen.gameserver.model.actor.instance.L2PcInstance;
import com.l2jfrozen.gameserver.model.quest.Quest;
import com.l2jfrozen.gameserver.model.zone.L2ZoneType;
import com.l2jfrozen.gameserver.network.serverpackets.InventoryUpdate;
import com.l2jfrozen.gameserver.network.serverpackets.ItemList;
import com.l2jfrozen.gameserver.network.serverpackets.NpcHtmlMessage;
import com.l2jfrozen.gameserver.network.serverpackets.StatusUpdate;

/**
 * @author `Heroin
 * Made For Maxcheaters.com
 * PartyTeleporter
 */
public class PartyTeleporter extends Quest
{
	private static final int npcid = 36650; // npc id
	//-------------------------------------
	//Teleport Location Coordinates X,Y,Z.
	//Use /loc command in game to find them.
	private static final int locationX = -56742; // npc id
	private static final int locationY = 140569; // npc id
	private static final int locationZ = -2625; // npc id
	//-------------------------------------
	//-------------------------------------
	// Select the id of your zone.
	// If you dont know how to find your zone id is simple.
	// Go to data/zones/(your zone file).xml and find your zone
	// E.g: <zone name="dion_monster_pvp" id="6" type="ArenaZone" shape="NPoly" minZ="-3596" maxZ="0">
	/**The id of your zone is id="6" */
	/**---------------------------------------------------------------------------*/
	/**WARNING: If your zone does not have any id or your location is not on any zone in data/zones/ folder, you have to add one by your self*/ // required to calculate parties & players
	/**---------------------------------------------------------------------------*/
	private static final int ZoneId = 155; //Here you have to set your zone Id
	//-------------------------------------
	private static final int MinPtMembers = 2; // Minimum Party Members Count For Enter on Zone.
	private static final int ItemConsumeId = 57; // Item Consume id.
	private static final int ItemConsumeNum = 100; // Item Consume Am.ount.
	private static final boolean ShowPlayersInside = true; //If you set it true, NPC will show how many players are inside area.
	private static final boolean ShowPartiesInside = true; //If you set it true, NPC will show how many parties are inside area.
	//-------------------------------------
	private static String htm = "data/scripts/custom/PartyTeleporter/1.htm"; //html location.
	private static String ItemName = ItemTable.getInstance().createDummyItem(ItemConsumeId).getItemName(); //Item name, Dont Change this

	
	public PartyTeleporter(int questId, String name, String descr)
	{
		super(questId, name, descr);
		addFirstTalkId(npcid);
		addTalkId(npcid);
		addStartNpc(npcid);
	}
	
	@Override
	public String onAdvEvent(String event, L2NpcInstance npc, L2PcInstance player)
	{
		if (event.startsWith("partytp"))
		{
			TP(event, npc, player, event);
		}

		return "";
	}
	@SuppressWarnings("deprecation")
	public int getPartiesInside(int zoneId)//Calculating parties inside party area.
    {
        int i = 0;
        for (L2ZoneType zone : L2TeleportLocation.getInstance().getAllZones())
            if (zone.getId() == zoneId)
            {
                for (L2Character character : zone.getCharactersInside().values())
                    if (character instanceof L2PcInstance && (!((L2PcInstance) character).getClient().isDetached()) && 
                    		((L2PcInstance) character).getParty() != null && 
                    		((L2PcInstance) character).getParty().isLeader((L2PcInstance) character))
                        i++;
            }
        return i;
    } 
	@SuppressWarnings("deprecation")
	public int getPlayerInside(int zoneId)//Calculating players inside party area.
    {
        int i = 0;
        for (L2ZoneType zone : ZoneManager.getInstance().getAllZones())
            if (zone.getId() == zoneId)
            {
                for (L2Character character : zone.getCharactersInside().values())
                    if (character instanceof L2PcInstance && (!((L2PcInstance) character).getClient().isDetached()))
                        i++;
            }
return i;
} 
	private boolean PartyItemsOk(L2PcInstance player)
	//Checks if all party members have the item in their inventory.
	//If pt member has not enough items, party not allowed to enter.
	{
		
		try
		{
			for (L2PcInstance member : player.getParty().getPartyMembers())
			{
				if (member.getInventory().getItemByItemId(ItemConsumeId) == null)
							
				{
					player.sendMessage("Your party member "+member.getName()+" does not have enough items.");
					return false;
				}
				if (member.getInventory().getItemByItemId(ItemConsumeId).getCount() < ItemConsumeNum)
				{
					player.sendMessage("Your party member "+member.getName()+" does not have enough items.");
					return false;
				}
			}
			return true;
			
		}
		catch (Exception e)
		{
			player.sendMessage("Something went wrong try again.");
			return true;
		}
	}

	private void proccessTP(L2PcInstance player) // Teleporting party members to zone
	{
		for (L2PcInstance member : player.getParty().getPartyMembers())
		{
			member.teleToLocation(locationX, locationY, locationZ);//Location X, Y ,Z
		}
	}
	private void TP(String event, L2NpcInstance npc, L2PcInstance player, String command) // Teleport player & his party
	{
		
		try
		{
			L2Party pt = player.getParty();
			if (pt == null)
			{
				player.sendMessage("You are not currently on party.");
				return;
			}
			if (!pt.isLeader(player))
			{
				player.sendMessage("You are not party leader.");
				return;
			}
			if (pt.getMemberCount() < MinPtMembers)
			{
				player.sendMessage("You are going to need a bigger party " +
						"in order to enter party area.");
				return;
			}
			if (!PartyItemsOk(player))
			{
				return;
			}
			else
			{
				proccessTP(player);
				for (L2PcInstance ppl : pt.getPartyMembers())
				{
					if (ppl.getObjectId() != player.getObjectId())//Dont send this message to pt leader.
					{
						ppl.sendMessage("Your party leader asked to teleport on party area!");//Message only to party members
					}
					ppl.sendMessage(ItemConsumeNum+" "+ItemName+" have been dissapeared.");//Item delete from inventory message
					ppl.getInventory().destroyItemByItemId("Party_Teleporter", ItemConsumeId, ItemConsumeNum, ppl, true);//remove item from inventory
					ppl.sendPacket(new InventoryUpdate());//Update
					ppl.sendPacket(new ItemList(ppl, false));//Update
					ppl.sendPacket(new StatusUpdate(ppl));//Update
					
				}
				//Sends message to party leader.
				player.sendMessage(ItemConsumeNum*player.getParty().getMemberCount()+" "+ItemName+" dissapeard from your party.");
			}
			
		}
		catch (Exception e)
		{
			player.sendMessage("Something went wrong try again.");
		}
	}
	
	@Override
	public String onFirstTalk(L2NpcInstance npc, L2PcInstance player)
	{
		final int npcId = npc.getNpcId();
		if (player.getQuestState(getName()) == null)
		{
			newQuestState(player);
		}
		if (npcId == npcid)
		{
			String html = HtmCache.getInstance().getHtm(player.getHtmlPrefix(), htm);
			html = html.replaceAll("%player%", player.getName());//Replaces %player% with player name on html
			html = html.replaceAll("%itemname%", ItemName);//Item name replace on html
			html = html.replaceAll("%price%", player.getParty()!=null ? ""+ItemConsumeNum*player.getParty().getMemberCount()+"": "0");//Price calculate replace
			html = html.replaceAll("%minmembers%", ""+MinPtMembers);//Mimum entry party members replace
			html = html.replaceAll("%allowed%", isAllowedEnter(player) ? "<font color=00FF00>allowed</font>" :
				"<font color=FF0000>not allowed</font>");//Condition checker replace on html
			html = html.replaceAll("%parties%", ShowPartiesInside ? "<font color=FFA500>Parties Inside: "+getPartiesInside(ZoneId)+"</font><br>": "");//Parties inside
			html = html.replaceAll("%players%", ShowPlayersInside ? "<font color=FFA500>Players Inside: "+getPlayerInside(ZoneId)+"</font><br>": "");//Players Inside
			NpcHtmlMessage npcHtml = new NpcHtmlMessage(0);
			npcHtml.setHtml(html);
			player.sendPacket(npcHtml);
		}
		return "";
	}
	private boolean isAllowedEnter(L2PcInstance player) //Checks if player & his party is allowed to teleport.
	{
		if (player.getParty() != null)
		{
			if( player.getParty().getMemberCount() >= MinPtMembers && PartyItemsOk(player))//Party Length & Item Checker
			{
				return true;
			}
			else 
			{
				return false;
			}
		}
		else
		{
			return false;
		}
	}
	public static void main(final String[] args)
	{
		new PartyTeleporter(-1, PartyTeleporter.class.getSimpleName(), "custom");
		System.out.println("Party Teleporter by `Heroin has been loaded successfully!");
	}
}

but there are still some errors

  • 1 year later...
Posted

i have a problem can help me :(?

 

http://postimg.org/image/r9tln9prb/

 

http://postimg.org/image/9vths5nvx/

package custom.PartyTeleporter;
import net.sf.l2j.gameserver.cache.HtmCache;
import net.sf.l2j.gameserver.datatables.ItemTable;
import net.sf.l2j.gameserver.instancemanager.ZoneManager;
import net.sf.l2j.gameserver.model.L2Party;
import net.sf.l2j.gameserver.model.actor.L2Character;
import net.sf.l2j.gameserver.model.actor.L2Npc;
import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance;
import net.sf.l2j.gameserver.model.quest.Quest;
import net.sf.l2j.gameserver.model.zone.L2ZoneType;
import net.sf.l2j.gameserver.network.serverpackets.InventoryUpdate;
import net.sf.l2j.gameserver.network.serverpackets.ItemList;
import net.sf.l2j.gameserver.network.serverpackets.NpcHtmlMessage;
import net.sf.l2j.gameserver.network.serverpackets.StatusUpdate;

public class PartyTeleporter extends Quest
{
	private static final int npcid = 36650; // npc id
	//-------------------------------------
	//Teleport Location Coordinates X,Y,Z.
	//Use /loc command in game to find them.
	private static final int locationX = -56742; // npc id
	private static final int locationY = 140569; // npc id
	private static final int locationZ = -2625; // npc id
	//-------------------------------------
	//-------------------------------------
	// Select the id of your zone.
	// If you dont know how to find your zone id is simple.
	// Go to data/zones/(your zone file).xml and find your zone
	// E.g: <zone name="dion_monster_pvp" id="6" type="ArenaZone" shape="NPoly" minZ="-3596" maxZ="0">
	/**The id of your zone is id="6" */
	/**---------------------------------------------------------------------------*/
	/**WARNING: If your zone does not have any id or your location is not on any zone in data/zones/ folder, you have to add one by your self*/ // required to calculate parties & players
	/**---------------------------------------------------------------------------*/
	private static final int ZoneId = 155; //Here you have to set your zone Id
	//-------------------------------------
	private static final int MinPtMembers = 7; // Minimum Party Members Count For Enter on Zone.
	private static final boolean ShowPlayersInside = true; //If you set it true, NPC will show how many players are inside area.
	private static final boolean ShowPartiesInside = true; //If you set it true, NPC will show how many parties are inside area.
	public PartyTeleporter(int questId, String name, String descr)
	{
		super(questId, name, descr);
		addFirstTalkId(npcid);
		addTalkId(npcid);
		addStartNpc(npcid);
	}
	
	@Override
	public String onAdvEvent(String event, L2Npc npc, L2PcInstance player)
	{
		if (event.startsWith("partytp"))
		{
			TP(event, npc, player, event);
		}

		return "";
	}
	@SuppressWarnings("deprecation")
	public int getPartiesInside(int zoneId)//Calculating parties inside party area.
    {
        int i = 0;
        for (L2ZoneType zone : ZoneManager.getInstance().getAllZones(null))
            if (zone.getId() == zoneId)
            {
                for (L2Character character : zone.getCharactersInside().values())
                    if (character instanceof L2PcInstance && (!((L2PcInstance) character).getClient().isDetached()) && 
                    		((L2PcInstance) character).getParty() != null && 
                    		((L2PcInstance) character).getParty().isLeader((L2PcInstance) character))
                        i++;
            }
        return i;
    } 
	@SuppressWarnings("deprecation")
	public int getPlayerInside(int zoneId)//Calculating players inside party area.
    {
        int i = 0;
        for (L2ZoneType zone : ZoneManager.getInstance().getAllZones(null))
            if (zone.getId() == zoneId)
            {
                for (L2Character character : zone.getCharactersInside().values())
                    if (character instanceof L2PcInstance && (!((L2PcInstance) character).getClient().isDetached()))
                        i++;
            }
return i;
} 
	private void proccessTP(L2PcInstance player) // Teleporting party members to zone
	{
		for (L2PcInstance member : player.getParty().getPartyMembers())
		{
			member.teleToLocation(locationX, locationY, locationZ);//Location X, Y ,Z
		}
	}
	private void TP(String event, L2Npc npc, L2PcInstance player, String command) // Teleport player & his party
	{
		
		try
		{
			L2Party pt = player.getParty();
			if (pt == null)
			{
				player.sendMessage("You are not currently on party.");
				return;
			}
			if (!pt.isLeader(player))
			{
				player.sendMessage("You are not party leader.");
				return;
			}
			if (pt.getMemberCount() < MinPtMembers)
			{
				player.sendMessage("You are going to need a bigger party " +
						"in order to enter party area.");
				return;
			}
			else
			{
				proccessTP(player);
				for (L2PcInstance ppl : pt.getPartyMembers())
				{
					if (ppl.getObjectId() != player.getObjectId())//Dont send this message to pt leader.
					{
						ppl.sendMessage("Your party leader asked to teleport on party area!");//Message only to party members
					}					
				}
			}
			
		}
		catch (Exception e)
		{
			player.sendMessage("Something went wrong try again.");
		}
	}
	
	@Override
	public String onFirstTalk(L2Npc npc, L2PcInstance player)
	{
		final int npcId = npc.getNpcId();
		if (player.getQuestState(getName()) == null)
		{
			newQuestState(player);
		}
		if (npcId == npcid)
		{
			String html = HtmCache.getInstance().getHtm(L2PcInstance.getHtmlPrefix());
			html = html.replaceAll("%player%", player.getName());//Replaces %player% with player name on html
			html = html.replaceAll("%minmembers%", ""+MinPtMembers);//Mimum entry party members replace
			html = html.replaceAll("%allowed%", isAllowedEnter(player) ? "<font color=00FF00>allowed</font>" :
				"<font color=FF0000>not allowed</font>");//Condition checker replace on html
			html = html.replaceAll("%parties%", ShowPartiesInside ? "<font color=FFA500>Parties Inside: "+getPartiesInside(ZoneId)+"</font><br>": "");//Parties inside
			html = html.replaceAll("%players%", ShowPlayersInside ? "<font color=FFA500>Players Inside: "+getPlayerInside(ZoneId)+"</font><br>": "");//Players Inside
			NpcHtmlMessage npcHtml = new NpcHtmlMessage(0);
			npcHtml.setHtml(html);
			player.sendPacket(npcHtml);
		}
		return "";
	}
	private boolean isAllowedEnter(L2PcInstance player) //Checks if player & his party is allowed to teleport.
	{
		if (player.getParty() != null)
		{

			{
				return true;
			}
	
		}
		else
		{
			return false;
		}
	}
	public static void main(final String[] args)
	{
		new PartyTeleporter(-1, PartyTeleporter.class.getSimpleName(), "custom");
		System.out.println("Party Teleporter by `Heroin has been loaded successfully!");
	}
}

an gs say me 1 problem at line 20 :(

Posted (edited)

i have a problem can help me :(?

 

http://postimg.org/image/r9tln9prb/

 

http://postimg.org/image/9vths5nvx/

package custom.PartyTeleporter;
import net.sf.l2j.gameserver.cache.HtmCache;
import net.sf.l2j.gameserver.datatables.ItemTable;
import net.sf.l2j.gameserver.instancemanager.ZoneManager;
import net.sf.l2j.gameserver.model.L2Party;
import net.sf.l2j.gameserver.model.actor.L2Character;
import net.sf.l2j.gameserver.model.actor.L2Npc;
import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance;
import net.sf.l2j.gameserver.model.quest.Quest;
import net.sf.l2j.gameserver.model.zone.L2ZoneType;
import net.sf.l2j.gameserver.network.serverpackets.InventoryUpdate;
import net.sf.l2j.gameserver.network.serverpackets.ItemList;
import net.sf.l2j.gameserver.network.serverpackets.NpcHtmlMessage;
import net.sf.l2j.gameserver.network.serverpackets.StatusUpdate;

public class PartyTeleporter extends Quest
{
	private static final int npcid = 36650; // npc id
	//-------------------------------------
	//Teleport Location Coordinates X,Y,Z.
	//Use /loc command in game to find them.
	private static final int locationX = -56742; // npc id
	private static final int locationY = 140569; // npc id
	private static final int locationZ = -2625; // npc id
	//-------------------------------------
	//-------------------------------------
	// Select the id of your zone.
	// If you dont know how to find your zone id is simple.
	// Go to data/zones/(your zone file).xml and find your zone
	// E.g: <zone name="dion_monster_pvp" id="6" type="ArenaZone" shape="NPoly" minZ="-3596" maxZ="0">
	/**The id of your zone is id="6" */
	/**---------------------------------------------------------------------------*/
	/**WARNING: If your zone does not have any id or your location is not on any zone in data/zones/ folder, you have to add one by your self*/ // required to calculate parties & players
	/**---------------------------------------------------------------------------*/
	private static final int ZoneId = 155; //Here you have to set your zone Id
	//-------------------------------------
	private static final int MinPtMembers = 7; // Minimum Party Members Count For Enter on Zone.
	private static final boolean ShowPlayersInside = true; //If you set it true, NPC will show how many players are inside area.
	private static final boolean ShowPartiesInside = true; //If you set it true, NPC will show how many parties are inside area.
	public PartyTeleporter(int questId, String name, String descr)
	{
		super(questId, name, descr);
		addFirstTalkId(npcid);
		addTalkId(npcid);
		addStartNpc(npcid);
	}
	
	@Override
	public String onAdvEvent(String event, L2Npc npc, L2PcInstance player)
	{
		if (event.startsWith("partytp"))
		{
			TP(event, npc, player, event);
		}

		return "";
	}
	@SuppressWarnings("deprecation")
	public int getPartiesInside(int zoneId)//Calculating parties inside party area.
    {
        int i = 0;
        for (L2ZoneType zone : ZoneManager.getInstance().getAllZones(null))
            if (zone.getId() == zoneId)
            {
                for (L2Character character : zone.getCharactersInside().values())
                    if (character instanceof L2PcInstance && (!((L2PcInstance) character).getClient().isDetached()) && 
                    		((L2PcInstance) character).getParty() != null && 
                    		((L2PcInstance) character).getParty().isLeader((L2PcInstance) character))
                        i++;
            }
        return i;
    } 
	@SuppressWarnings("deprecation")
	public int getPlayerInside(int zoneId)//Calculating players inside party area.
    {
        int i = 0;
        for (L2ZoneType zone : ZoneManager.getInstance().getAllZones(null))
            if (zone.getId() == zoneId)
            {
                for (L2Character character : zone.getCharactersInside().values())
                    if (character instanceof L2PcInstance && (!((L2PcInstance) character).getClient().isDetached()))
                        i++;
            }
return i;
} 
	private void proccessTP(L2PcInstance player) // Teleporting party members to zone
	{
		for (L2PcInstance member : player.getParty().getPartyMembers())
		{
			member.teleToLocation(locationX, locationY, locationZ);//Location X, Y ,Z
		}
	}
	private void TP(String event, L2Npc npc, L2PcInstance player, String command) // Teleport player & his party
	{
		
		try
		{
			L2Party pt = player.getParty();
			if (pt == null)
			{
				player.sendMessage("You are not currently on party.");
				return;
			}
			if (!pt.isLeader(player))
			{
				player.sendMessage("You are not party leader.");
				return;
			}
			if (pt.getMemberCount() < MinPtMembers)
			{
				player.sendMessage("You are going to need a bigger party " +
						"in order to enter party area.");
				return;
			}
			else
			{
				proccessTP(player);
				for (L2PcInstance ppl : pt.getPartyMembers())
				{
					if (ppl.getObjectId() != player.getObjectId())//Dont send this message to pt leader.
					{
						ppl.sendMessage("Your party leader asked to teleport on party area!");//Message only to party members
					}					
				}
			}
			
		}
		catch (Exception e)
		{
			player.sendMessage("Something went wrong try again.");
		}
	}
	
	@Override
	public String onFirstTalk(L2Npc npc, L2PcInstance player)
	{
		final int npcId = npc.getNpcId();
		if (player.getQuestState(getName()) == null)
		{
			newQuestState(player);
		}
		if (npcId == npcid)
		{
			String html = HtmCache.getInstance().getHtm(L2PcInstance.getHtmlPrefix());
			html = html.replaceAll("%player%", player.getName());//Replaces %player% with player name on html
			html = html.replaceAll("%minmembers%", ""+MinPtMembers);//Mimum entry party members replace
			html = html.replaceAll("%allowed%", isAllowedEnter(player) ? "<font color=00FF00>allowed</font>" :
				"<font color=FF0000>not allowed</font>");//Condition checker replace on html
			html = html.replaceAll("%parties%", ShowPartiesInside ? "<font color=FFA500>Parties Inside: "+getPartiesInside(ZoneId)+"</font><br>": "");//Parties inside
			html = html.replaceAll("%players%", ShowPlayersInside ? "<font color=FFA500>Players Inside: "+getPlayerInside(ZoneId)+"</font><br>": "");//Players Inside
			NpcHtmlMessage npcHtml = new NpcHtmlMessage(0);
			npcHtml.setHtml(html);
			player.sendPacket(npcHtml);
		}
		return "";
	}
	private boolean isAllowedEnter(L2PcInstance player) //Checks if player & his party is allowed to teleport.
	{
		if (player.getParty() != null)
		{

			{
				return true;
			}
	
		}
		else
		{
			return false;
		}
	}
	public static void main(final String[] args)
	{
		new PartyTeleporter(-1, PartyTeleporter.class.getSimpleName(), "custom");
		System.out.println("Party Teleporter by `Heroin has been loaded successfully!");
	}
}

an gs say me 1 problem at line 20 :(

getValues() return integer, thats the problem..

 

 

change to this

L2Character character : zone.getCharactersInside()):

Edited by AccessDenied
Posted (edited)

ok i fix this problem but error at line 20 stil here :(

 

 

http://postimg.org/image/r9tln9prb/

package custom.PartyTeleporter;
import net.sf.l2j.gameserver.cache.HtmCache;
import net.sf.l2j.gameserver.datatables.ItemTable;
import net.sf.l2j.gameserver.instancemanager.ZoneManager;
import net.sf.l2j.gameserver.model.L2Party;
import net.sf.l2j.gameserver.model.actor.L2Character;
import net.sf.l2j.gameserver.model.actor.L2Npc;
import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance;
import net.sf.l2j.gameserver.model.quest.Quest;
import net.sf.l2j.gameserver.model.zone.L2ZoneType;
import net.sf.l2j.gameserver.network.serverpackets.InventoryUpdate;
import net.sf.l2j.gameserver.network.serverpackets.ItemList;
import net.sf.l2j.gameserver.network.serverpackets.NpcHtmlMessage;
import net.sf.l2j.gameserver.network.serverpackets.StatusUpdate;

public class PartyTeleporter extends Quest
{
	private static final int npcid = 36650; // npc id
	//-------------------------------------
	//Teleport Location Coordinates X,Y,Z.
	//Use /loc command in game to find them.
line 20 private static final int locationX = -56742; // npc id
	private static final int locationY = 140569; // npc id
	private static final int locationZ = -2625; // npc id
Edited by Tachi
Posted (edited)

ok i fix this problem but error at line 20 stil here :(

 

 

http://postimg.org/image/r9tln9prb/

 

package custom.PartyTeleporter;import net.sf.l2j.gameserver.cache.HtmCache;import net.sf.l2j.gameserver.datatables.ItemTable;import net.sf.l2j.gameserver.instancemanager.ZoneManager;import net.sf.l2j.gameserver.model.L2Party;import net.sf.l2j.gameserver.model.actor.L2Character;import net.sf.l2j.gameserver.model.actor.L2Npc;import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance;import net.sf.l2j.gameserver.model.quest.Quest;import net.sf.l2j.gameserver.model.zone.L2ZoneType;import net.sf.l2j.gameserver.network.serverpackets.InventoryUpdate;import net.sf.l2j.gameserver.network.serverpackets.ItemList;import net.sf.l2j.gameserver.network.serverpackets.NpcHtmlMessage;import net.sf.l2j.gameserver.network.serverpackets.StatusUpdate;public class PartyTeleporter extends Quest{	private static final int npcid = 36650; // npc id	//-------------------------------------	//Teleport Location Coordinates X,Y,Z.	//Use /loc command in game to find them.line 20 private static final int locationX = -56742; // npc id	private static final int locationY = 140569; // npc id	private static final int locationZ = -2625; // npc id
Just check another file package and replace this on..where is located this file?

And bro with this sources i suggest you to check about backdoors on voicedcommand handler...if you have bought this from nightwolf...

Edited by Reborn12
Posted

getValues() return integer, thats the problem..

 

 

change to this

L2Character character : zone.getCharactersInside()):

package net.sf.l2j.gameserver.model.actor.instance;

 

import java.util.StringTokenizer;

 

import net.sf.l2j.Config;

import net.sf.l2j.gameserver.datatables.ItemTable;

import net.sf.l2j.gameserver.instancemanager.ZoneManager;

import net.sf.l2j.gameserver.model.L2Party;

import net.sf.l2j.gameserver.model.actor.L2Character;

import net.sf.l2j.gameserver.model.zone.L2ZoneType;

import net.sf.l2j.gameserver.network.serverpackets.ActionFailed;

import net.sf.l2j.gameserver.network.serverpackets.InventoryUpdate;

import net.sf.l2j.gameserver.network.serverpackets.ItemList;

import net.sf.l2j.gameserver.network.serverpackets.NpcHtmlMessage;

import net.sf.l2j.gameserver.network.serverpackets.StatusUpdate;

import net.sf.l2j.gameserver.templates.chars.L2NpcTemplate;

 

 

/**

 * @author `Heroin Adapter Gandalf PartyTeleporter, Lucas Fernandes

 */

public class L2PartyTeleporterInstance extends L2NpcInstance

{

 

      private static final int npcid = Config.NPC_ID_PT_TELEPORTER; // npc id

      // -------------------------------------

      // Teleport Location Coordinates X,Y,Z.

      // Use /loc command in game to find them.

      private static final int locationX = Config.NPC_PT_TELEPORTER_X; // npc id

      private static final int locationY = Config.NPC_PT_TELEPORTER_Y; // npc id

      private static final int locationZ = Config.NPC_PT_TELEPORTER_Z; // npc id

      // -------------------------------------

      // -------------------------------------

      // Select the id of your zone.

      // If you dont know how to find your zone id is simple.

      // Go to data/zones/(your zone file).xml and find your zone

      // E.g: <zone name="dion_monster_pvp" id="6" type="ArenaZone" shape="NPoly" minZ="-3596" maxZ="0">

      /** The id of your zone is id="6" */

      /** --------------------------------------------------------------------------- */

      /** WARNING: If your zone does not have any id or your location is not on any zone in data/zones/ folder, you have to add one by your self */ // required to calculate parties & players

      /** --------------------------------------------------------------------------- */

      private static final int ZoneId = Config.NPC_PT_ZONEID; // Here you have to set your zone Id

      // -------------------------------------

      private static final int MinPtMembers = Config.NPC_PT_MINPT_MEMBERS; // Minimum Party Members Count For Enter on Zone.

      private static final int ItemConsumeId = Config.NPC_PT_ITEMCONSUME_ID; // Item Consume id.

      private static final int ItemConsumeNum = Config.NPC_PT_ITEMCOMSUME_QT; // Item Consume Am.ount.

      private static final boolean ShowPlayersInside = Config.NPC_PT_SHOWINSIDE_PLAYERS; // If you set it true, NPC will show how many players are inside area.

      private static final boolean ShowPartiesInside = Config.NPC_PT_SHOWINSIDE_PARTIES; // If you set it true, NPC will show how many parties are inside area.

      private static String ItemName = ItemTable.getInstance().getTemplate(ItemConsumeId).getName(); // Item name, Dont Change this

      private String htmContent;

     

      public L2PartyTeleporterInstance(int objectId, L2NpcTemplate template)

      {

              super(objectId, template);

      }

     

      @Override

      public void onBypassFeedback(L2PcInstance player, String command)

      {

              player.sendPacket(ActionFailed.STATIC_PACKET);

             

              StringTokenizer st = new StringTokenizer(command, " ");

              String actualCommand = st.nextToken(); // Get actual command

             

              if (actualCommand.equalsIgnoreCase("partytp"))

              {

                      TP(player);

              }

              super.onBypassFeedback(player, command);

      }

     

      public int getPartiesInside(int zoneId)// Calculating parties inside party area.

      {

              int i = 0;

              for (L2ZoneType zone : ZoneManager.getInstance().getZones(locationX, locationY, locationZ))

              {

                      if (zone.getId() == zoneId)

                      {

                              for (L2Character character : zone.getCharactersInside())

                              {

                                      if ((character instanceof L2PcInstance) && (!((L2PcInstance) character).getClient().isDetached()) && (((L2PcInstance) character).getParty() != null) && ((L2PcInstance) character).getParty().isLeader((L2PcInstance) character))

                                      {

                                              i++;

                                      }

                              }

                      }

              }

              return i;

      }

     

      public int getPlayerInside(int zoneId)// Calculating players inside party area.

      {

              int i = 0;

              for (L2ZoneType zone : ZoneManager.getInstance().getZones(locationX, locationY, locationZ))

              {

                      if (zone.getId() == zoneId)

                      {

                              for (L2Character character : zone.getCharactersInside())

                              {

                                      if ((character instanceof L2PcInstance) && (!((L2PcInstance) character).getClient().isDetached()))

                                      {

                                              i++;

                                      }

                              }

                      }

              }

              return i;

      }

     

      private static boolean PartyItemsOk(L2PcInstance player)

      // Checks if all party members have the item in their inventory.

      // If pt member has not enough items, party not allowed to enter.

      {

              try

              {

                      for (L2PcInstance member : player.getParty().getPartyMembers())

                      {

                              if (member.getInventory().getItemByItemId(ItemConsumeId) == null)

                             

                              {

                                      player.sendMessage("Your party member " + member.getName() + " does not have enough items.");

                                      return false;

                              }

                              if (member.getInventory().getItemByItemId(ItemConsumeId).getCount() < ItemConsumeNum)

                              {

                                      player.sendMessage("Your party member " + member.getName() + " does not have enough items.");

                                      return false;

                              }

                      }

                      return true;

                     

              }

              catch (Exception e)

              {

                      player.sendMessage("Something went wrong try again.");

                      return true;

              }

      }

     

      private static void proccessTP(L2PcInstance player) // Teleporting party members to zone

      {

              for (L2PcInstance member : player.getParty().getPartyMembers())

              {

                      member.teleToLocation(locationX, locationY, locationZ, 1);// Location X, Y ,Z

              }

      }

     

      private static void TP(L2PcInstance player) // Teleport player & his party

      {

              try

              {

                      L2Party pt = player.getParty();

                      if (pt == null)

                      {

                              player.sendMessage("You are not currently on party.");

                              return;

                      }

                      if (!pt.isLeader(player))

                      {

                              player.sendMessage("You are not party leader.");

                              return;

                      }

                      if (pt.getMemberCount() < MinPtMembers)

                      {

                              player.sendMessage("You are going to need a bigger party " + "in order to enter party area.");

                              return;

                      }

                      if (!PartyItemsOk(player))

                      {

                              return;

                      }

                      proccessTP(player);

                      for (L2PcInstance ppl : pt.getPartyMembers())

                      {

                              if (ppl.getObjectId() != player.getObjectId()) // Dont send this message to pt leader.

                              {

                                      ppl.sendMessage("Your party leader asked to teleport on party area!");// Message only to party members

                              }

                              ppl.destroyItemByItemId("Party_Teleporter", ItemConsumeId, ItemConsumeNum, ppl, true);

                            }

                      // Sends message to party leader.

                      player.sendMessage((ItemConsumeNum * player.getParty().getMemberCount()) + " " + ItemName + " dissapeard from your party.");

                     

              }

              catch (Exception e)

              {

                      player.sendMessage("Something went wrong try again.");

              }

      }

     

      @Override

      public void showChatWindow(L2PcInstance player)

      {

              final int npcId = Config.NPC_ID_PT_TELEPORTER;

              if (npcId == npcid)

              {

                // Send a Server->Client NpcHtmlMessage containing the text of the L2Npc to the L2PcInstance

                  NpcHtmlMessage html = new NpcHtmlMessage(getObjectId());

                  html.setFile("data/html/mods/PartyTeleporter.htm");

                  html.replace("%objectId%", getObjectId());

                  html.replace("%objectId%", String.valueOf(getObjectId()));

                html.replace("%player%", player.getName());// Replaces %player% with player name on html

                html.replace("%itemname%", ItemName);// Item name replace on html

                html.replace("%price%", player.getParty() != null ? "" + (ItemConsumeNum * player.getParty().getMemberCount()) + "" : "0");// Price calculate replace

                html.replace("%minmembers%", "" + MinPtMembers);// Mimum entry party members replace

                html.replace("%allowed%", isAllowedEnter(player) ? "<font color=00FF00>Allowed</font>" : "<font color=FF0000>not allowed</font>");// Condition checker replace on html

                html.replace("%parties%", ShowPartiesInside ? "<font color=FFA500>Parties Inside: " + getPartiesInside(ZoneId) + "</font><br>" : "");// Parties inside

                html.replace("%players%", ShowPlayersInside ? "<font color=FFA500>Players Inside: " + getPlayerInside(ZoneId) + "</font><br>" : "");// Players Inside

                  player.sendPacket(html);

                  return;

              }

                player.sendPacket(ActionFailed.STATIC_PACKET);

              }

      

     

       private static boolean isAllowedEnter(L2PcInstance player) // Checks if player & his party is allowed to teleport.

       {

           return player.getParty() != null && (player.getParty().getMemberCount() >= MinPtMembers) && PartyItemsOk(player);

       }

 

}

 

 

 

net.sf.l2j.gameserver.model.actor.instance.L2PartyTeleporterInstance

 

I have make some Corrections in this File

Dont use it like a javascript.

I have add the HTML FILES TO ----> "data/html/mods/PartyTeleporter.htm")           If you wants it somewere else just change the dir.

 

 

  • 5 weeks later...
Posted

i have a problem with this code :)

 

can you give me any ideea ?

 

http://imgur.com/qSERSlm

 

I think u need to change it to values() or getMembers()....Just delete it and use control+space. U will find the correct one. 

  • 4 years later...

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

    • I think that solves the freeze thing, anyway great share! 
    • Introducing: Daily & Weekly Missions!   I've released a major panel update with a new Missions system and expanded language support.   Players can now complete daily and weekly missions directly through the panel and claim rewards such as balance or items. Mission progress is tied to in-game activity and supported panel actions, and the update also adds a dedicated Missions page, dashboard mission previews, claimable mission indicators, and full admin tools for creating and managing missions.   The Roll page now shows the potential reward drops below the roll container.   Alongside this, I’ve expanded the panel’s language support with new locale options, including Bulgarian, Czech, Georgian, Lithuanian, Polish, Romanian, Japanese, Simplified Chinese, and Traditional Chinese.     The Demo is now updated with the new features for you to try out!
    • I sell complete packs. If you want to add an item, NPC, etc., you have to do that yourselves. Your friend bought the pack; he's the one who needs to configure his server type. He received what he bought as agreed, and I'm saying this without knowing who you're talking about, because anyone who buys something receives what was agreed upon.   Regards. mmmmm L2Velmore ????   If that's the one, I see everything went well... if I remember correctly you were crying over $100, I gave you a better price, and I suppose you made thousands with that... And you're still coming back to complain? :=)
    • I know many people have struggled with this specific issue and had trouble setting up the correct behavior for Toggle skills in aCis. By default, toggles interrupt the player's movement (retail-like), which often feels clunky to players who prefer a smoother, more modern experience. I've prepared a clean solution that eliminates this "freeze" and allows for fluid movement while toggling your auras. Below is the code on how to achieve this. Hope it helps! Changes in PlayerAI.java: Modified doActiveIntention to properly update the active state without stalling. Removed the forced stop() during toggle casting. Added a MoveToLocation broadcast to ensure other players see your movement correctly (prevents visual "teleporting" or desync). Best regards 😃 diff --git a/aCis_gameserver/java/net/sf/l2j/gameserver/model/actor/ai/type/PlayerAI.java b/aCis_gameserver/java/net/sf/l2j/gameserver/model/actor/ai/type/PlayerAI.java index ba0425a..1b2658d 100644 --- a/aCis_gameserver/java/net/sf/l2j/gameserver/model/actor/ai/type/PlayerAI.java +++ b/aCis_gameserver/java/net/sf/l2j/gameserver/model/actor/ai/type/PlayerAI.java @@ -28,6 +28,7 @@  import net.sf.l2j.gameserver.network.serverpackets.ActionFailed;  import net.sf.l2j.gameserver.network.serverpackets.AutoAttackStart;  import net.sf.l2j.gameserver.network.serverpackets.ChairSit; +import net.sf.l2j.gameserver.network.serverpackets.MoveToLocation;  import net.sf.l2j.gameserver.network.serverpackets.MoveToLocationInVehicle;  import net.sf.l2j.gameserver.network.serverpackets.MoveToPawn;  import net.sf.l2j.gameserver.network.serverpackets.StopMove; @@ -159,7 +160,10 @@      @Override      public synchronized void doActiveIntention()      { -        doIdleIntention(); +        prepareIntention(); +        _currentIntention.updateAsActive(); +        if (!getActor().isMoving()) +            thinkIdle();      }            @Override @@ -280,8 +284,9 @@                    if (skill.isToggle())          { -            getActor().getMove().stop();              getActor().getCast().doToggleCast(skill, target); +            if (getActor().isMoving()) +                getActor().broadcastPacket(new MoveToLocation(getActor()));          }          else          { https://pastebin.com/twZujZ3Y
  • 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..