Jump to content

Recommended Posts

Posted (edited)
hello i want to share with you this nice party teleporter but i have to fixe just 1 problem,the npc don't show me any html file  is just clean ..if i fix this i come here  with him :),if you can fix  is good to share  here the problem ..ty
 
this my code  :)
 
 
config/custom.properties config/custom.properties
 
#=============================================================
# Npc Party Teleporter
#=============================================================
# Enable the Character Killing Monuments
# NPC Id
NpcPtTeleporterId= 36613

# Teleport coordinates
PtTeleportX = -56781
PtTeleportY = 140545
PtTeleportZ = -2629

# ZoneId NpcPtZoneID default: 911
# 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">
NpcPtZoneID = 255

# Min party members
NpcPtMinPartyMembers = 2

# Consume Item Id
NpcPtConsumeItemId = 57

# Consume Item Quantity
NpcPtConsumeItemQt = 100

# Show Inside players in zone
NpcPtShowInsidePlayers = True

# Show Inside Parties in zone
NpcPtShowInsideParties = True

java/net/sf/l2j/Config.java


@@ -0,0 +1,1513 @@
+ public static final String CUSTOM_FILE = "./config/custom.properties";
+
+ // --------------------------------------------------
+ // Custom settings
+ // --------------------------------------------------
+ public static int NPC_ID_PT_TELEPORTER;
+ public static int NPC_PT_TELEPORTER_X;
+ public static int NPC_PT_TELEPORTER_Y;
+ public static int NPC_PT_TELEPORTER_Z;
+ public static int NPC_PT_ZONEID;
+ public static int NPC_PT_MINPT_MEMBERS;
+ public static int NPC_PT_ITEMCONSUME_ID;
+ public static int NPC_PT_ITEMCOMSUME_QT;
+ public static boolean NPC_PT_SHOWINSIDE_PLAYERS;
+ public static boolean NPC_PT_SHOWINSIDE_PARTIES;
+

FLOOD_PROTECTOR_SENDMAIL = new FloodProtectorConfig("SendMailFloodProtector");
FLOOD_PROTECTOR_CHARACTER_SELECT = new FloodProtectorConfig("CharacterSelectFloodProtector");

_log.info("Loading gameserver configuration files.");

+ // Custom settings
+ ExProperties custom = load(CUSTOM_FILE);
+ NPC_ID_PT_TELEPORTER = custom.getProperty("NpcPtTeleporterId", 36614);
+ NPC_PT_TELEPORTER_X = custom.getProperty("PtTeleportX", -56742);
+ NPC_PT_TELEPORTER_Y = custom.getProperty("PtTeleportY", 140569);
+ NPC_PT_TELEPORTER_Z = custom.getProperty("PtTeleportZ", -2625);
+ NPC_PT_ZONEID = custom.getProperty("NpcPtZoneID", 155);
+ NPC_PT_MINPT_MEMBERS = custom.getProperty("NpcPtMinPartyMembers", 2);
+ NPC_PT_ITEMCONSUME_ID = custom.getProperty("NpcPtConsumeItemId", 57);
+ NPC_PT_ITEMCOMSUME_QT = custom.getProperty("NpcPtConsumeItemQt", 100);
+ NPC_PT_SHOWINSIDE_PLAYERS = custom.getProperty("NpcPtShowInsidePlayers", true);
+ NPC_PT_SHOWINSIDE_PARTIES = custom.getProperty("NpcPtShowInsideParties", true);
+
// Clans settings
ExProperties clans = load(CLANS_FILE);

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

@@ -0,0 +1,234 @@
+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.actor.template.NpcTemplate;
+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;
+
+
+/**
+ * @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, NpcTemplate 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.sendMessage(ItemConsumeNum + " " + ItemName + " have been dissapeared.");// Item delete from inventory message
+ ppl.getInventory().destroyItemByItemId("Party_Teleporter", ItemConsumeId, ItemConsumeNum, ppl, ppl);// 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 void showChatWindow(L2PcInstance player)
+ {
+ final int npcId = Config.NPC_ID_PT_TELEPORTER;
+ if (npcId == npcid)
+ {
+ htmContent = "data/html/mods/PartyTeleporter/PartyTeleporter.htm";
+ if (htmContent != null)
+ {
+ final NpcHtmlMessage npcHtmlMessage = new NpcHtmlMessage(getObjectId());
+ npcHtmlMessage.setHtml(htmContent);
+ npcHtmlMessage.replace("%objectId%", String.valueOf(getObjectId()));
+ npcHtmlMessage.replace("%player%", player.getName());// Replaces %player% with player name on html
+ npcHtmlMessage.replace("%itemname%", ItemName);// Item name replace on html
+ npcHtmlMessage.replace("%price%", player.getParty() != null ? "" + (ItemConsumeNum * player.getParty().getMemberCount()) + "" : "0");// Price calculate replace
+ npcHtmlMessage.replace("%minmembers%", "" + MinPtMembers);// Mimum entry party members replace
+ npcHtmlMessage.replace("%allowed%", isAllowedEnter(player) ? "<font color=00FF00>allowed</font>" : "<font color=FF0000>not allowed</font>");// Condition checker replace on html
+ npcHtmlMessage.replace("%parties%", ShowPartiesInside ? "<font color=FFA500>Parties Inside: " + getPartiesInside(ZoneId) + "</font><br>" : "");// Parties inside
+ npcHtmlMessage.replace("%players%", ShowPlayersInside ? "<font color=FFA500>Players Inside: " + getPlayerInside(ZoneId) + "</font><br>" : "");// Players Inside
+ player.sendPacket(npcHtmlMessage);
+ }
+
+ player.sendPacket(ActionFailed.STATIC_PACKET);
+ }
+ }
+
+ private static 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;
+ }
+ return false;
+ }
+ return false;
+ }
+
+}

data/html/mods/PartyTeleporter/PartyTeleporter.htm

+<html>
+<title>%player%</title>
+<body><center>
+<center>
+You have to be a party leader in order to ask from me to teleport you and your party inside party area.<br>
+Minimum number of members in party: <font color="LEVEL">%minmembers%</font>.<br>
+You are currently %allowed% to enter party area with your party.<br>
+Party teleport will cost you total: <font color="LEVEL">%price% %itemname%</font><br>
+</center>
+<center>
+%parties%
+%players%
+
+<table><tr>
+<td><a action="bypass -h npc_%objectId%_partypt">Teleport me & My party!</td>
+</tr></table>
+
+
+<br><br>
+<center>
+</body></html>

data/xml/npcs/36000-36099.xml

+<?xml version="1.0" encoding="utf-8"?>
+<list>
+ <npc id="36613" name="Hector" title="">
+ <set name="level" val="67"/>
+ <set name="radius" val="8"/>
+ <set name="height" val="24"/>
+ <set name="rHand" val="128"/>
+ <set name="lHand" val="628"/>
+ <set name="type" val="L2PartyTeleporter"/>
+ <set name="exp" val="449"/>
+ <set name="sp" val="1"/>
+ <set name="hp" val="2295.48154"/>
+ <set name="mp" val="1251"/>
+ <set name="hpRegen" val="7.5"/>
+ <set name="mpRegen" val="2.7"/>
+ <set name="pAtk" val="624.93199"/>
+ <set name="pDef" val="281.55251"/>
+ <set name="mAtk" val="426.74754"/>
+ <set name="mDef" val="206.02791"/>
+ <set name="crit" val="4"/>
+ <set name="atkSpd" val="253"/>
+ <set name="str" val="40"/>
+ <set name="int" val="21"/>
+ <set name="dex" val="30"/>
+ <set name="wit" val="20"/>
+ <set name="con" val="43"/>
+ <set name="men" val="20"/>
+ <set name="corpseTime" val="7"/>
+ <set name="walkSpd" val="50"/>
+ <set name="runSpd" val="195"/>
+ <set name="dropHerbGroup" val="0"/>
+ <set name="attackRange" val="40"/>
+ <ai type="default" ssCount="0" ssRate="0" spsCount="0" spsRate="0" aggro="0" clan="door_clan;mercenary_siege_clan" clanRange="1200" canMove="true" seedable="false"/>
+ <skills>
+ <skill id="4045" level="1"/>
+ <skill id="4416" level="23"/>
+ </skills>
+ </npc>
+ </list>

this is game image

 

https://i.imgsafe.org/1622653.jpg

Edited by Tachi
Posted

You dont need to use this script just use your l2teleporter and make you doteleport method with what you want..this is one shit...

if i know  more java code i  don't come here to ask for help :(

Posted

if i know  more java code i  don't come here to ask for help :(

I dont know so much too if you search you own files you will find your answer..if you post for all you will dont learn nothink...i have said to you use your l2TeleporterInstance create new Class paste there Change file and class name Like L2partyTeleInstance..go down to Your DoTeleport Method And Search About One party method...you can make it like level or member like from 5 member to 9 or if there tou want only 9 teleport with leader and item..search 5 mins and you will do it.

Posted (edited)

+<td><a action="bypass -h npc_%objectId%_partypt">Teleport me & My party!</td> 

 

change it to 

 

+<td><a action="bypass -h npc_%objectId%_partytp">Teleport me & My party!</td>

 

and this 

 

+ npcHtmlMessage.setHtml(htmContent);

 

with this

 

+ npcHtmlMessage.setfile(htmContent);

Edited by Tachi
  • 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

    • General Trackers :   IPTorrents invite IPTorrents account 1 tb TorrentLeech invite Torrentleech account 1 tb buffer  InTheShaDow ( ITS ) account Torrentday invite Crnaberza account Abn.Lol account Limit-of-eden account Norbits account Xspeeds account Xspeeds invite Bemaniso invite Wigornot account Turkseed.com account Bithumen invite Filelist account Funfile invite AvistaZ invite Greek-Team invite LinkoManija invite Fano.in account tracker.czech-server.com Speed.cd invite Arab-torrents.net account Arabscene.me account Scenetime account 4thd.xyz invite Btarg.com.ar account Dedbit invite Estone.cc account Speedapp invite Fluxzone account GigaTorrents account Gimmepeers account Haidan.video invite Mojblink account Mycarpathians invite Newinsane.info account Oscarworld.xyz account Peers.FM invite Pt.msg.vg account Ransackedcrew account Redemption invite Scene-rush account Seedfile.io invite Torrent.ai account Torrentmasters invite Ttsweb invite X-files invite X-ite invite Ncore account TorrentHR account Rptorrents account BwTorrents account Superbits invite Krazyzone account Immortalseed account Tntracker invite Pt.eastgame.org account Bitturk account Rstorrent account Tracker.btnext invite Torrent-turk.de account BeiTai.PT account Pt.keepfrds account 52pt.site account Pthome account Aystorrent account Blues-brothers.biz invite Divteam account Thesceneplace invite CinemaMovies.pl account Brasiltracker account Patiodebutacas account Newheaven.nl account  Swarmazon.club invite Bc-reloaded account Crazyspirits account Silentground invite Omg.wtftrackr invite Milkie.cc invite Breathetheword invite Madsrevolution account Chilebt account Yubraca account Uniongang.tv account Frboard account Exvagos account Diablotorrent account Microbit account Carp-hunter.hu account Majomparade.eu account Theshinning.me account Youiv.info account Dragonworld-reloaded account Sharewood.tv account Partis.si account Digitalcore.club invite Fuzer.me account R3vuk.wtf invite Ztracker account 1 tb buffer 3changtrai account Best-core.info account Bitsite.us account Eliteunitedcrew invite Exitorrent.org account Tophos invite Torrent.lt account Sktorrent.eu account Oshen account Pirata.digital account Esharenet account Ohmenarikgi.la Pirate-share account Immortuos account Kiesbits account Cliente.amigos-share.club account Broadcity invite Ilovetorzz account Torrentbytes account Polishsource account Portugas account Shareisland account ArabaFenice account Hudbt.hust.edu.cn account Audiences account Nanyangpt account Pt.sjtu.edu.cn account Pt.zhixing.bjtu.edu.cn account Byr.pt invite Ptfiles invite Red-bits account Pt.hdpost.top account Irrenhaus.dyndns.dk (NewPropaganda) account Mnvv2.info (MaxNewVision V2) account 1ptba.com account Spidertk.top account Film-paleis account Generation-free account Aftershock-tracker account Twilightsdreams account Back-ups.me invite Sor-next.tk ( Spirit Of Revolution ) account Tfa.tf ( The Falling Angels ) account Hdmayi account S-f-p.dyndns.dk ( Share Friends Projekt ) account Unlimitz.biz account Pttime account St-tracker.eu account New-retro.eu account Zbbit account Tigers-dl.net account Jptvts.us account Lat-team account Club.hares.top account Falkonvision-team account Concen account Drugari account T.ceskeforum account Peeratiko.org account Zamunda.se account Central-torrent.eu account h-o-d.org account Torrentleech.pl account Demonoid invite Lst.gg account Fakedoor.store account LaidBackManor account Vrbsharezone.co.uk invite Torrenteros account Arenaelite account Datascene account Tracker.0day.community Tapochek.net invite Ptchina invite Lesaloon account Exyusubs account Therebels.tv account Ubits.club invite Zmpt.cc account Turktorrent.us account Dasunerwarte account Hawke.uno account Monikadesign account Fearnopeer account Alpharatio account Wukongwendao.top account Chinapyg account Azusa.wiki account Yggtorrent.top account Torrentdd account Cyanbug.net invite Hhanclub.top account Wintersakura.net account Tctg.pm account Finelite invite Agsvpt.com account Pt.0ff.cc invite Qingwapt.com account Xingtan.one account Ptcafe.club invite W-o-t.pro account Coastal-crew.bounceme.net account Darkpeers.org account Pianyuan.org account Seedpool.org  account Tempelbox account Pt.itzmx.com account Itatorrents.xyz  account Letseed.org account The-new-fun.com  account Malayabits.cc account Trellas.me account Yu-scene.net account Futuretorrent.org account Bitpt.cn account Tocashare.biz  account Videoteka.org  account White-angel.hu account Xbytesv2.li account Torr9  account Desitorrents account Okpt.net account Samaritano.cc account Polishtorrent.top  account C411.org account Bigcore.eu account Infinitylibrary.net account Beload.org account Emuwarez.com account Yhpp.cc account Rastastugan account Tlzdigital account account Upscalevault account Bluraytracker.cz account Torrenting.com account Infire.si account Dasunerwartete.biz invite The-torrent-trader account New-asgard.xyz account Pandapt account Deildu account Tmpt.top invite Pt.gtk.pw account Media.slo-bitcloud.eu account P.t-baozi.cc account 13city.org account Cangbao.ge account Cc.mypt.cc invite Dubhe.site invite Hdbao.cc account Kufei.org invite Mooko.org account Pt.aling.de invite Pt.lajidui.top invite Longpt.org invite Pt.luckpt.de invite Ptlover.cc invite Raingfh.top account Sewerpt.com account Huntorrent.org account Xtremebytes.net account Bitbazis.net account Mundo-pirata.org account Homiehelpdesk.net account Torrentheaven.org account Rotorrent.info account Sunnypt.top account 52movie.top account Bilibili.download invite Avetorrents.com account V6.nexushd.org account Myfunzone.org account Onfire.si account Revott.me account    Movies Trackers :   Secret-cinema account Anthelion account Pixelhd account Cinemageddon account Cinemaz account Retroflix account Punck-tracker.net account Tmghub account Cathode-ray.tube account Greatposterwall account Arabicsource.net account Upload.cx account Crabpt.vip invite Onlyencodes.cc account Exyusubs account Hellashut.net invite Nordichd.sytes.net invite Locadora.cc account Retro-movies.club account HD Trackers :   Blutopia buffered account Hd-olimpo buffered account Hdf.world account Torrentland.li account HdSky account Chdbits account Totheglory account Hdroute account Hdhome account TorrentCCF aka et8.org account 3DTorrents invite HD-Torrents account Bit-HDTV account Hdarea.co account Asiancinema.me account JoyHD invite HDSpace invite Bluebird-hd invite Htpt.cc account Hdtime invite Ourbits.club account Hd4fans account Siambit account Privatehd account Springsunday account Tjupt account Hdcity.leniter invite Ccfbits account Discfan account Pt.btschool.club account Ptsbao.club invite Hdzone.me invite Danishbytes account Zonaq.pw account Tracker.tekno3d account Arabp2p account Hd-united account Reelflix.xyz account Hdatmos.club account Tigris-t account Nethd.org account Hitpt.com account Hdmonkey account Dragonhd.xyz account Hdclub.eu account Forum.bluraycd.com account Carpt account Hdfun.me invite Pt.hdupt invite Puntotorrent account Ultrahd account Rousi.zip account Bearbit account Hdturk.club account Asiandvdclub account Star-space.net account Nordicq.org account Hdkyl.in account Utp.to account Hdzero account Novahd account Hdtorrents.eu account 4k3dyptt account Duckboobee.org invite Si-qi.xyz account Hdfans.org account Ptfans.cc invite   Music Trackers :   Orpheus.network account Dicmusic account Music-Vid account Open.cd account LzTr account ProAudioTorrents invite Jpopsuki invite TranceTraffic invite Audionews invite Kraytracker invite Libble.me invite Losslessclub invite Indietorrents.com invite Dimeadozen account Funkytorrents invite Karaokedl account zombtracker.the-zomb account Concertos account Sugoimusic account Satclubbing.club invite Metal.iplay invite Psyreactor invite Panda.cd account Adamsfile account Freehardmusic account Tracker.hqmusic.vn accouunt Twilightzoom account 3 tb buffer Hiresmusic account Metalguru account Musictorrents.org account Musebootlegs.com invite Zappateers.com account Jungleland.dnsalias.com account Naftamusic account Bemusic account Lp-bits.com account   E-Learning Trackers :   Theplace account Thevault account Myanonamouse account Libranet account 420Project account Learnflakes account Pt.soulvoice.club account P2pelite account Aaaaarg.fail invite Ebooks-shares.org account Abtorrents account Pt.tu88.men invite Docspedia.world invite   TV-Trackers :   Skipthecommercials.xyz account Cryptichaven account TV-Vault invite Shazbat.TV account Myspleen account Tasmanit.es invite Tvstore.me account Tvchaosuk account Jptv.club account   XXX - Porn Trackers :   Homeporntorrents.club account FemdomCult account Pussytorrents account Adult-cinema-network account Bootytape account 1 Tb buffer Exoticaz account Bitporn account Kufirc account Gaytorrent.ru invite Nicept account Gay-torrents.org invite Ourgtn account Pt.hdbd.us account BitSexy account Happyfappy.org account Kamept.com account Lesbians4u.org account Fappaizuri.me account Sextorrent.myds.me account Clearjav account   Gaming Trackers :   Pixelcove account Mteam.fr account BitGamer invite Retrowithin invite Gamegamept account   Cartoon/Anime/Comic Trackers :   Animez account Animeworld account Oldtoons.world account U2.dmhy account CartoonChaos invite Mononoke account Totallykids.tv account Bakabt.me invite Revanime account Ansktracker account Tracker.shakaw.com.br invite Bt.mdan.org account Skyey2.com account Animetracker.cc Adbt.it.cx invite Tracker.uniotaku.com account Mousebits.com account   Sports Trackers :   MMA-Tracker invite T3nnis.tv invite AcrossTheTasman account RacingForMe invite Sportscult invite Ultimatewrestlingtorrents account Worldboxingvideoarchive invite CyclingTorrents account Xtremewrestlingtorrents account Tc-boxing invite Mma-torrents account Aussierul invite Xwt-classics account Racing4everyone account Talk.tenyardtracker account Stalker.societyglitch invite Extremebits invite Rgfootball.net account F1carreras.xyz account Pwtorrents.net invite   Software/Apps Trackers :   Brokenstones account Appzuniverse invite Teamos.xyz account Macbb.org account Phoenixproject.app account Tormac.org account   Graphics Trackers:   Forum.Cgpersia account Cgfxw account   Others   Hduse.net account Fora.snahp.eu account Makingoff.org/forum account Xrel.to account Undergunz.su account Corebay account Endoftheinter.net ( EOTI ) account Thismight.be invite Skull.facefromouter.space account Avxhm.se (AvaxHome) account Ssdforum account Notfake.vip account Intotheinter.net account Tildes.net invite Thetoonz account Usinavirtual account Hdclasico invite HispaShare account Valentine.wtf account Adit-hd account Forum-andr.net account Warezforums account Justanothermusic.site account Forbiddenlibrary.moe account Senturion.to account Movieparadise account Dcdnet.ru account Sftdevils.net account Heavy-r.com account New-team.org account Ddl.tv account Filewarez.club account Hispamula.org account Hubwarez.tv account Ultim-zone.in account Leprosorium.ru account Planet-ultima.org account The-dark-warez.com account Koyi.pub account Tehparadox.net account Forumophilia account Torrentinvite.fr account Gmgard.com account Board4all.biz account Gentoo-zh.org account Releasyee.to account   NZB :   Ninjacentral account Tabula-rasa.pw account Drunkenslug account Drunkenslug invite Usenet-4all account Dognzb.cr invite Kleverig account Nzb.cat account Nzbplanet.net invite Ng4you.com account NZB.to account Samuraiplace account Abhdtv.net account Abook.link account Comix.pw account House-of-usenet Secretbinaries.net account Vnext.to account Stockboxx.top account Sky-of-use.net account Indexer.codeshy.com account Oldboys.pw account Uhd100.com account Wtfnzb.pw account   Prices start from 3 $ to 100 $   Payment methods: Crypto, Neteller, Revolut   If you want to buy something send me a pm or contact me on:   Email: morrison2102@gmail.com   Discord: LFC4LIFE#4173   Telegram: https://t.me/LFC4LIFE4173   Skype: morrison2102@hotmail.com
    • can code it free for u , add me banshee1019 
    • Don’t worry about me. am ok enough, even without taking drugs  
    • sorry, for my inexperienced response but here's how far i've got. in my source i found the following things: 1 > source code file location package: net.sf.l2j.gameserver.model.actor.instance; > Player.class, but honestly i have no idea how/what type of code should i put in the source in order to make it parse multiple classIDs in order to make it follow .xml file with the conditions necessary for not allowing X class to use X armor.
    • TG Support: https://t.me/buyingproxysup | Channel: https://t.me/buyingproxycom Discord support: #buyingproxy | Server: Join the BuyingProxy Discord Server!  Create your free account here
  • 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..