Jump to content

Recommended Posts

Posted

Hello. With this share (as the subject says) your players can teleport to other players for an item. Use the .goto <playername> command. You can set the item ID in teleportItem, the cost in teleportCost and the teleport time in the teleportTimer variables. You can allow/disallow players to teleport to you with the .blockgoto command. When you teleport to the player he/she got a system message about it.

 

Tested on L2JFree 1.2.10. Credits to me. (but Intrepid helped a bit too:P)

com.l2jfree.gameserver.handler.voicedcommandhandlers.GoToPlayer.java


/*
* This program is free software: you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free Software
* Foundation, either version 3 of the License, or (at your option) any later
* version.
* 
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
* 
* You should have received a copy of the GNU General Public License along with
* this program. If not, see <http://www.gnu.org/licenses/>.
*/
package com.l2jfree.gameserver.handler.voicedcommandhandlers;

import com.l2jfree.Config;
import java.util.StringTokenizer;
import com.l2jfree.gameserver.network.serverpackets.InventoryUpdate;
import com.l2jfree.gameserver.GameTimeController;
import com.l2jfree.gameserver.SevenSigns;
import com.l2jfree.gameserver.ThreadPoolManager;
import com.l2jfree.gameserver.ai.CtrlIntention;
import com.l2jfree.gameserver.datatables.SkillTable;
import com.l2jfree.gameserver.handler.IVoicedCommandHandler;
import com.l2jfree.gameserver.instancemanager.CoupleManager;
import com.l2jfree.gameserver.instancemanager.DimensionalRiftManager;
import com.l2jfree.gameserver.instancemanager.SiegeManager;
import com.l2jfree.gameserver.model.L2Character;
import com.l2jfree.gameserver.model.L2FriendList;
import com.l2jfree.gameserver.model.L2Skill;
import com.l2jfree.gameserver.model.L2World;
import com.l2jfree.gameserver.model.actor.instance.L2PcInstance;
import com.l2jfree.gameserver.model.entity.Siege;
import com.l2jfree.gameserver.model.zone.L2Zone;
import com.l2jfree.gameserver.model.restriction.AvailableRestriction;
import com.l2jfree.gameserver.model.restriction.ObjectRestrictions;
import com.l2jfree.gameserver.network.SystemMessageId;
import com.l2jfree.gameserver.network.serverpackets.ConfirmDlg;
import com.l2jfree.gameserver.network.serverpackets.MagicSkillUse;
import com.l2jfree.gameserver.network.serverpackets.SetupGauge;
import com.l2jfree.gameserver.network.serverpackets.SystemMessage;
import com.l2jfree.gameserver.util.Broadcast;

/** 
* @author Rizel
* 
*/
public class GoToPlayer implements IVoicedCommandHandler
{
private static final String[]	VOICED_COMMANDS	=
												{ "goto", "blockgoto" };

/* (non-Javadoc)
 * @see com.l2jfree.gameserver.handler.IVoicedCommandHandler#useVoicedCommand(String, com.l2jfree.gameserver.model.L2PcInstance), String)
 */
public boolean useVoicedCommand(String command, L2PcInstance activeChar, String name)
{
	if (command.startsWith("goto"))
	{
		return playerTeleport(activeChar, name);
	}
	if (command.startsWith("blockgoto"))
	{
		if ( activeChar._blockgoto == true )
		{
			activeChar._blockgoto = false;
			activeChar.sendMessage("Players are now allowed to teleport to you!");

		}
		if ( activeChar._blockgoto == false )
		{
			activeChar._blockgoto = true;
			activeChar.sendMessage("Players are now not allowed to teleport to you!");

		}
		return true;
	}
	return false;
}



public boolean playerTeleport(L2PcInstance activeChar, String name)
{
int teleportItem = 57;
int teleportCost = 1000;





	if (activeChar.isCastingNow() || activeChar.isMovementDisabled() || activeChar.isMuted() || activeChar.isAlikeDead())
		return false;

	Siege siege = SiegeManager.getInstance().getSiege(activeChar);

	// Check to see if the player is in olympiad.
	if (activeChar.isInOlympiadMode())
	{
		activeChar.sendMessage("You are in Olympiad!");
		return false;
	}
	// Check to see if the player is in observer mode
	else if (activeChar.inObserverMode())
	{
		activeChar.sendMessage("You are in observer mode.");
		return false;
	}
	// Check to see if the player is in an event
	else if (activeChar.isInFunEvent())
	{
		activeChar.sendMessage("You are in event now.");
		return false;
	}
	// Check to see if the player is in a festival.
	else if (activeChar.isFestivalParticipant())
	{
		activeChar.sendMessage("You can't escape from a festival.");
		return false;
	}
	// Check to see if the player is in dimensional rift.
	else if (activeChar.isInParty() && activeChar.getParty().isInDimensionalRift())
	{
		activeChar.sendMessage("You are in the dimensional rift.");
		return false;
	}
	// Check to see if player is in jail
	else if (activeChar.isInJail() || activeChar.isInsideZone(L2Zone.FLAG_JAIL))
	{
		activeChar.sendMessage("You can't escape from jail.");
		return false;
	}
	// Check if player is in Siege
	else if (siege != null && siege.getIsInProgress())
	{
		activeChar.sendMessage("You are in siege, you can't go to your partner.");
		return false;
	}
	// Check if player is in Duel
	else if (activeChar.isInDuel())
	{
		activeChar.sendMessage("You are in a duel!");
		return false;
	}
	// Check if player is a Cursed Weapon owner
	else if (activeChar.isCursedWeaponEquipped())
	{
		activeChar.sendMessage("You are currently holding a cursed weapon.");
		return false;
	}
	// Check if player is in a Monster Derby Track
	else if (activeChar.isInsideZone(L2Zone.FLAG_NOESCAPE))
	{
		activeChar.sendMessage("You cannot escape from here.");
		return false;
	}


	L2PcInstance targetplayer = L2World.getInstance().getPlayer(name);
	if (targetplayer._blockgoto == true)
	{
		activeChar.sendMessage("Your target blocked the teleport to him/her.");
		return false;
	}
                if (targetplayer.isGM())
	{
		activeChar.sendMessage("You can't teleport to GM.");
		return false;
	}
	if (targetplayer != null)
	{
		siege = SiegeManager.getInstance().getSiege(targetplayer);
	}
	else
	{
		activeChar.sendMessage("Your target is not online.");
		return false;
	}

	// Check to see if the player is in a instance.
	if (activeChar.getInstanceId() != targetplayer.getInstanceId())
	{
		activeChar.sendMessage("Your target is in another World!");
		return false;
	}
	else if (targetplayer.isInJail() || targetplayer.isInsideZone(L2Zone.FLAG_JAIL))
	{
		activeChar.sendMessage("Your target is in jail.");
		return false;
	}
	else if (targetplayer.isInOlympiadMode())
	{
		activeChar.sendMessage("Your target is in Olympiad now.");
		return false;
	}
	else if (targetplayer.inObserverMode())
	{
		activeChar.sendMessage("Your target is in observer mode.");
		return false;
	}
	else if (targetplayer.isInDuel())
	{
		activeChar.sendMessage("Your target is in a duel.");
		return false;
	}
	else if (targetplayer.isInFunEvent())
	{
		activeChar.sendMessage("Your target is in an event.");
		return false;
	}
	else if (DimensionalRiftManager.getInstance().checkIfInRiftZone(targetplayer.getX(), targetplayer.getY(), targetplayer.getZ(), false))
	{
		activeChar.sendMessage("Your target is in dimensional rift.");
		return false;
	}
	else if (targetplayer.isFestivalParticipant())
	{
		activeChar.sendMessage("Your target is in a festival.");
		return false;
	}
	else if (siege != null && siege.getIsInProgress())
	{
		if (targetplayer.getAppearance().getSex())
			activeChar.sendMessage("Your target is in siege, you can't go to her.");
		else
			activeChar.sendMessage("Your target is in siege, you can't go to him.");
		return false;
	}
	else if (targetplayer.isCursedWeaponEquipped())
	{
		activeChar.sendMessage("Your target is currently holding a cursed weapon.");
		return false;
	}
	else if (targetplayer.isInsideZone(L2Zone.FLAG_NOESCAPE))
	{
		activeChar.sendMessage("Your target is in a unsuitable area for teleporting.");
		return false;
	}
	else if (targetplayer.isIn7sDungeon() && !activeChar.isIn7sDungeon())
	{
		int playerCabal = SevenSigns.getInstance().getPlayerCabal(activeChar);
		boolean isSealValidationPeriod = SevenSigns.getInstance().isSealValidationPeriod();
		int compWinner = SevenSigns.getInstance().getCabalHighestScore();

		if (isSealValidationPeriod)
		{
			if (playerCabal != compWinner)
			{
				activeChar.sendMessage("Your target is in a Seven Signs Dungeon and you are not in the winner Cabal!");
				return false;
			}
		}
		else
		{
			if (playerCabal == SevenSigns.CABAL_NULL)
			{
				activeChar.sendMessage("Your target is in a Seven Signs Dungeon and you are not registered!");
				return false;
			}
		}
	}

	int teleportTimer = 10 * 1000;
	if (!activeChar.destroyItemByItemId("", teleportItem, teleportCost, activeChar, true))
	{
		activeChar.sendMessage("You don't have enough item to teleport.");
		return false;
	}
	activeChar.sendMessage("After " + teleportTimer / 1000 + " sec. you will be teleported to " + name +".");
	targetplayer.sendMessage("Player " + activeChar + "teleporting to you.");
	activeChar.getAI().setIntention(CtrlIntention.AI_INTENTION_IDLE);
	// SoE Animation section
	activeChar.setTarget(activeChar);
	activeChar.disableAllSkills();



	MagicSkillUse msk = new MagicSkillUse(activeChar, 1050, 1, teleportTimer, 0);
	Broadcast.toSelfAndKnownPlayersInRadius(activeChar, msk, 810000/*900*/);
	SetupGauge sg = new SetupGauge(0, teleportTimer);
	activeChar.sendPacket(sg);
	// End SoE Animation section

	EscapeFinalizer ef = new EscapeFinalizer(activeChar, targetplayer.getX(), targetplayer.getY(), targetplayer.getZ(), targetplayer.isIn7sDungeon());
	// Continue execution later
	activeChar.setSkillCast(ThreadPoolManager.getInstance().scheduleGeneral(ef, teleportTimer));
	activeChar.forceIsCasting(GameTimeController.getGameTicks() + teleportTimer / GameTimeController.MILLIS_IN_TICK);

	return true;
}


private static class EscapeFinalizer implements Runnable
{
private L2PcInstance	_activeChar;
private int				_partnerx;
private int				_partnery;
private int				_partnerz;
private boolean			_to7sDungeon;

EscapeFinalizer(L2PcInstance activeChar, int x, int y, int z, boolean to7sDungeon)
{
	_activeChar = activeChar;
	_partnerx = x;
	_partnery = y;
	_partnerz = z;
	_to7sDungeon = to7sDungeon;
}

public void run()
{
	if (_activeChar.isDead())
		return;
	_activeChar.setIsIn7sDungeon(_to7sDungeon);
	_activeChar.enableAllSkills();
	_activeChar.setIsCastingNow(false);

	try
	{
		_activeChar.teleToLocation(_partnerx, _partnery, _partnerz);
	}
	catch (Exception e)
	{
		_log.error(e.getMessage(), e);
	}
}
}


/* (non-Javadoc)
 * @see com.l2jfree.gameserver.handler.IVoicedCommandHandler#getVoicedCommandList()
 */
public String[] getVoicedCommandList()
{
	return VOICED_COMMANDS;
}
}

 

com.l2jfree.gameserver.model.actor.instance.L2PcInstance.java


public boolean							_inEventTvT				= false;
public boolean							_voteEvent				= false;
+	public boolean							_blockgoto				= false;

 

com.l2jfree.gameserver.handler.VoicedCommandHandler.java


	registerVoicedCommandHandler(new Banking());
+		registerVoicedCommandHandler(new GoToPlayer());

Posted

omfg. i was doing this but i stoped coding for it due to other projects:D anw cool! gj man:) keep it up! as i can see you edited the Wedding.java file and the gotolove part right?

 

also _inEventTvt is already defined in L2PcInstance no need to add it again

Posted

omfg. i was doing this but i stoped coding for it due to other projects:D anw cool! gj man:) keep it up! as i can see you edited the Wedding.java file and the gotolove part right?

 

No he dont tuch them those are just show how you can do it

Posted

well, that was an easiest way to do it coz it was already ready in Wedding.java:) good job and good luck with your java contribs:)

 

 

EDIT:

 

what about adding the teleport item and the cost into altsettings.properties?

 

in Config.java under line 1316 put:

 

	public static int		ALT_TELEPORT_ITEM;
public static int		ALT_TELEPORT_ITEM_COST;	

 

then under line 1512 put:

 

ALT_TELEPORT_ITEM = Integer.parseInt(altSettings.getProperty("AltGotoplayeritem", "57"));
ALT_TELEPORT_ITEM_COST = Integer.parseInt(altSettings.getProperty("AltGotoplayeritemcost", "10000"));	

 

and in altsettings.properties put

 

### Item ID needed to use .gotoplayer command ###
AltGotoplayeritem=57
### Item Amount ###
AltGotoplayeritemcost=10000

 

then do some changes in the GoToPlayer.java like changing

 

if (!activeChar.destroyItemByItemId("", teleportItem, teleportCost, activeChar, true))

 

to

 

if (!activeChar.destroyItemByItemId("", config.ALT_TELEPORT_ITEM, config.ALT_TELEPORT_ITEM_COST, activeChar, true))

 

Posted

well, that was an easiest way to do it coz it was already ready in Wedding.java:) good job and good luck with your java contribs:)

 

yes but you know best things come in small packages:D

and now i start to w8 for his next share he started an automated speed quiz event:D

Posted

int z = player1.getZ

int y = player1.getY

int x = player1.getX

 

If (player1.allowGoTo() && player2.getInventory.getItemByItemId(57) != null)

{

if (player2.getItemByItemId(57).getCount() >= 20000000)

{

player2.teleToCoords(x,y,z);

}

}

 

 

Much less code...Thats for teleport....you must make one more command and a new method in l2pcinstance. The allowgoto command will enable allowgoto in l2pcinstance so .goto can be used...

 

Your code is WAY too big and I still cant get why you created a new private in the voice handler and you didnt use the teleport private in l2pcinstance...Oo

Posted

my code is long becouse the event,jail,siege etc. checks ,the SoE effect and the blockgoto function. this script is a modified .gotolove but here you not teleport to your partner but teleport to any player

Posted

i didnt tell that code is bad or something like this man. i just mentioned that you could have edited wedding.java but as Vago said it could be donee in l2pcinstance.

Posted

aye...Well I didnt read it I just saw its huge :) Good job :)

 

Edit: xMaylox it eats less resources the way he did it than writing it in L2PcInstance...That code is being read every time a character uses the command, L2PcInstance is read almost every sec, event more, on a big server

Posted

 

if (player2.getItemByItemId(57).getCount() >= 20000000)

 

 

Why >= ... if some1 have 2kk the teleport make him the 2kk .. again if character have 2kkk this will make the 2kkk ...

 

>= mean for example 20000000 and up , why not == 20000000 ...??

 

 

@Rizel: Good job  you do great Modify :) Keep Up m8!

  • 2 weeks later...
Posted

ok so i just change the command from .goto to .getto

np in compiling.

 

but when i try it IG[i tried both .goto and .getto,same error],it gives this error  [L2jfree 1.2.10]

SEVERE Client: [Character: test - Account: admin - IP: 127.0.0.1] - Failed runni
ng: [C] 38 Say2 - L2J Server Version: 1.2.10
java.lang.NullPointerException
        at com.l2jfree.gameserver.handler.voicedcommandhandlers.GetToPlayer.play
erTeleport(GetToPlayer.java:161)
        at com.l2jfree.gameserver.handler.voicedcommandhandlers.GetToPlayer.useV
oicedCommand(GetToPlayer.java:61)
        at com.l2jfree.gameserver.network.clientpackets.Say2.runImpl(Say2.java:1
56)
        at com.l2jfree.gameserver.network.clientpackets.L2GameClientPacket.run(L
2GameClientPacket.java:78)
        at com.l2jfree.gameserver.threadmanager.ExecuteWrapper.run(ExecuteWrappe
r.java:40)
        at java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
        at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
        at java.util.concurrent.FutureTask.run(Unknown Source)
        at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.
access$301(Unknown Source)
        at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.
run(Unknown Source)
        at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(Unknown Source
)
        at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
        at java.lang.Thread.run(Unknown Source)

 

any reason for this?

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

    • Care to detail why ?   L2JHellas probably got the same issue, it's inherent to L2J if you don't rework Player intentions (and solving it with a Config < 500 attack is stupid, if it works for attack it works for other types of desires), also last time I checked L2JHellas he was using my changesets to fix its own stuff (which is ok, copy-paste my knownlist system which is 10y old is fine, but don't say it will act different since it's literally the same sub-system).   About Lucera code source isn't available so it's easy to say it's better, internally you got no clue what is happening and RU forks got the "feeling" to get everything, but everything is half done, everytime I put an eye on such sources (whatever based on l2ru, they only know how to copy-paste each other).   In the other hand, you seem to use aCis since years (I think I see your name since a decade, and you still use it since you made this topic :   Be a little more appreciative about the work done, it's not only mine but my community aswell, and if you find something, consider to report rather than getting such an idiotic behavior.   I understand you're not forced to share any type of fixes, and than people tend to feel superior when they fix something than aCis didn't yet fix. The thing is, for each bug you found, I found and fixed 10x more than you.   409 is way beyond 382 in all possible ways, if you believe the versus good for you, but don't make ppl believe it's the case, because it's not. There's at least 400+ fixed issues (and that's counting 10 issues by revision, which is kinda low) and entire new systems (spawns, SCHs, pathfind, whole AI implemented, Desire system,...).
    • better than using 409... Search for L2jHellas or Lucera and you won't have any headaches.
    • General Trackers :   IPTorrents invite IPTorrents account 1 tb TorrentLeech invite Torrentleech account 1 tb buffer  InTheShaDow ( ITS ) account Acid-lounge invite Torrentday invite Crnaberza account Abn.Lol account Limit-of-eden account Norbits account Xspeeds account Xspeeds invite Bemaniso invite Wigornot account Bithumen invite Filelist account Funfile invite AvistaZ invite Potuk.net invite ResurrectThe.Net invite GrabThe.Info 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 Finvip 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 Teracod 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 Torrentseeds 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 Blackhattorrent 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 invite 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 Xthor account Tctg.pm account Finelite invite Agsvpt.com account Pt.0ff.cc invite Qingwapt.com account Xingtan.one account Ptcafe.club invite Theoldschool.cc account 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 Capybarabr.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   Movies Trackers :   Anthelion account Pixelhd account Cinemageddon account DVDSeed account Cinemageddon account Cinemaz account Retroflix account Classix-unlimited - invite Movie-Torrentz (m2g.link) invite Punck-tracker.net account Tmghub account Tb-asian account Cathode-ray.tube account Greatposterwall account Telly 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   HD Trackers :   Hdf.world account Torrentland.li account HdSky account Hdchina account Chdbits account Totheglory account Hdroute account Hdhome account TorrentCCF aka et8.org account 3DTorrents invite HD-Torrents account Bit-HDTV account HDME.eu invite Hdarea.co account Asiancinema.me account JoyHD invite HDSpace invite CrazyHD 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 Anasch.cc invite Tigris-t account Nethd.org account Hd.ai invite 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   Music Trackers :   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   E-Learning Trackers :   BitSpyder invite Brsociety account Learnbits invite 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 :   Skipthecommericals Cryptichaven account TV-Vault invite Shazbat.TV account Myspleen account Tasmanit.es invite Tvstore.me account Tvchaosuk account Jptv.club account Tvroad.info   XXX - Porn Trackers :   FemdomCult account Pornbay 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   Gaming Trackers :   Mteam.fr account BitGamer invite Retrowithin invite Gamegamept account   Cartoon/Anime/Comic Trackers :   Animeworld account Oldtoons.world account U2.dmhy account CartoonChaos invite Animetorrents account 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   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   Software/Apps Trackers :   Brokenstones account Appzuniverse invite Teamos.xyz account Macbb.org account Graphics Trackers: Forum.Cgpersia account Gfxpeers account Forum.gfxdomain account Documentary Trackers: Forums.mvgroup account   Others   Fora.snahp.eu account Board4all.biz account Filewarez.tv 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 Militaryzone 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   NZB :   Drunkenslug account Drunkenslug invite Usenet-4all account Brothers-of-Usenet account Dognzb.cr invite Kleverig account Nzb.cat account Nzbplanet.net invite Ng4you.com account Nzbsa.co.za account Bd25.eu account NZB.to account Samuraiplace account Tabula-rasa.pw account Abhdtv.net account Abook.link account Comix.pw account House-of-usenet Secretbinaries.net account Vnext.to account Stockboxx.top account Prices start from 3 $ to 100 $   Payment methods: Crypto, Neteller, Webmoney, 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
  • 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