Jump to content
  • 0

Raidboss Shout When Killed


Question

Recommended Posts

  • 0
Posted

If you're using Pride's shared pack, its already up and working. (because of the screen you linked)

Otherwise, just get to your L2RaidBossInstance, create in a variable your custom messages, then create a method which will start making the announces.

  • 0
Posted

If you're using Pride's shared pack, its already up and working. (because of the screen you linked)

 

Otherwise, just get to your L2RaidBossInstance, create in a variable your custom messages, then create a method which will start making the announces.

i use pride shared pack...you can help me more? in tv or skype,etc?

  • 0
Posted

l2raidbossinstance

 

public boolean doDie(L2Character killer)
 
 
 
RaidBossPointsManager.addPoints(player, getNpcId(), (getLevel() / 2) + Rnd.get(-5, 5));
 
+int npcId = getNpcId();
 
+switch (npcId)
+{
+case 244248:
+broadcastPacket(new CreatureSay(25286, 1, "Tiat: Argghhh!", null));
+break;
 
 
  • 0
Posted

onAttack script with a Rnd.get(100) == 1 check to avoid to spam. You can also limit it once, or based on current HPs.

 

Avoid to touch to the core for such thing notably if it's limited to one or few npc ids.

  • 0
Posted

onAttack script with a Rnd.get(100) == 1 check to avoid to spam. You can also limit it once, or based on current HPs.

 

Avoid to touch to the core for such thing notably if it's limited to one or few npc ids.

I dont understand you...:/

  • 0
Posted (edited)

Check Gordon Ai if you want onattack ondie or w/e.. I told you.. Else this crappy pride like pack is so shitty and doesnt support those methods.

 

Your title and first post say "on kill". So why everyone say "on attack"!?

Edited by SweeTs
  • 0
Posted (edited)
L2RaidBossInstance.java

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

import net.sf.l2j.gameserver.Announcements;
import net.sf.l2j.gameserver.ThreadPoolManager;
import net.sf.l2j.gameserver.instancemanager.RaidBossPointsManager;
import net.sf.l2j.gameserver.instancemanager.RaidBossSpawnManager;
import net.sf.l2j.gameserver.model.L2Effect;
import net.sf.l2j.gameserver.model.L2Skill;
import net.sf.l2j.gameserver.model.L2Spawn;
import net.sf.l2j.gameserver.model.actor.L2Character;
import net.sf.l2j.gameserver.model.actor.L2Playable;
import net.sf.l2j.gameserver.model.actor.L2Summon;
import net.sf.l2j.gameserver.network.SystemMessageId;
import net.sf.l2j.gameserver.network.serverpackets.SystemMessage;
import net.sf.l2j.gameserver.templates.chars.L2NpcTemplate;
import net.sf.l2j.gameserver.templates.chars.L2NpcTemplate.AIType;
import net.sf.l2j.gameserver.util.Broadcast;
import net.sf.l2j.util.Rnd;

public class L2RaidBossInstance extends L2MonsterInstance
{
private static final int RAIDBOSS_MAINTENANCE_INTERVAL = 15000; // 15 sec

/*private static List<L2RaidBossInstance> _alive85Raids = new ArrayList<L2RaidBossInstance>();
	private static List<L2RaidBossInstance> _alive91Raids = new ArrayList<L2RaidBossInstance>();
	public static int _rbCounter = 0;*/
private boolean _dead = true;

/*private ScheduledFuture<?> _announceRBSpawnTask = null;
	
	private class announceRBSpawnTask implements Runnable
	{
		L2RaidBossInstance _boss;
		
		public announceRBSpawnTask(L2RaidBossInstance boss)
		{
			_boss = boss;
		}
		
		public void run()
		{
			if (_boss != null && !_boss.isDead() && !_boss.isInCombat() && _boss.getCurrentHp() > _boss.getMaxHp() * 0.92 && _boss.isLevelOneRaidboss())
			{
				try
				{
					SystemMessage sm = new SystemMessage(SystemMessageId.A_RAIDBOSS_SPAWNED_IN_S1_REGION);
					sm.addZoneName(_boss.getX(), _boss.getY(), _boss.getZ()); // Region Name
					Announcements.getInstance().announceToAll(sm);
				}
				catch (Throwable t)
				{
				}
			}
		}
	}
	
	private ScheduledFuture<?> _announceRBSpawnTaskClan = null;
	
	private class announceRBSpawnTaskClan implements Runnable
	{
		L2RaidBossInstance _boss;
		
		public announceRBSpawnTaskClan(L2RaidBossInstance boss)
		{
			_boss = boss;
		}
		
		public void run()
		{
			if (_boss != null && !_boss.isDead() && !_boss.isInCombat()
			        && _boss.getCurrentHp() > _boss.getMaxHp() * 0.92)
			{
				try
				{
					final Castle castle = CastleManager.getInstance().getCastleById(MapRegionTable.getInstance().getAreaCastle(_boss));
					if (castle == null)
						return;
					
					final L2Clan clan = ClanTable.getInstance().getClan(castle.getOwnerId());
					if (clan == null)
						return;
					
					CreatureSay say = new CreatureSay(0, Say2.PARTYROOM_ALL, castle.getName()
					        + " Castle", _boss.getName()
					        + " has appeared in a region controlled by your castle.");
					clan.broadcastToOnlineMembers(say);
					
				}
				catch (Throwable t)
				{
				}
			}
		}
	}*/

private RaidBossSpawnManager.StatusEnum _raidStatus;

/**
 * Constructor of L2RaidBossInstance (use L2Character and L2NpcInstance constructor).<BR>
 * <BR>
 * 
 * <B><U> Actions</U> :</B><BR>
 * <BR>
 * <li>Call the L2Character constructor to set the _template of the L2RaidBossInstance (copy
 * skills from template to object and link _calculators to NPC_STD_CALCULATOR)</li> <li>Set the
 * name of the L2RaidBossInstance</li> <li>Create a RandomAnimation Task that will be launched
 * after the calculated delay if the server allow it</li><BR>
 * <BR>
 * 
 * @param objectId
 *            Identifier of the object to initialized
 * @param L2NpcTemplate
 *            Template to apply to the NPC
 */
public L2RaidBossInstance(int objectId, L2NpcTemplate template)
{
	super(objectId, template);
}

@Override
public synchronized void onSpawn()
{
	if (!_dead)
		return;
	
	_dead = false;
	
	setIsRaid(true);
	setIsNoRndWalk(true);
	super.onSpawn();
	
	/*		if (isLevelOneRaidboss())
		{
			_alive85Raids.add(this);
			_rbCounter++;
			
			if (_announceRBSpawnTask != null)
				_announceRBSpawnTask.cancel(true);
			
			_announceRBSpawnTask = ThreadPoolManager.getInstance().scheduleGeneral(new announceRBSpawnTask(this), 3800000); // 1hrs
			
			if (_announceRBSpawnTaskClan != null)
				_announceRBSpawnTaskClan.cancel(true);
			
			_announceRBSpawnTaskClan = ThreadPoolManager.getInstance().scheduleGeneral(new announceRBSpawnTaskClan(this), 3480000); // 2hrs
		}
		else if (isLevelTwoRaidboss())
		{
			_alive91Raids.add(this);
			
			if (_announceRBSpawnTaskClan != null)
				_announceRBSpawnTaskClan.cancel(true);
			
			_announceRBSpawnTaskClan = ThreadPoolManager.getInstance().scheduleGeneral(new announceRBSpawnTaskClan(this), 3480000); // 1.36hrs
		}*/
}

@Override
protected int getMaintenanceInterval()
{
	return RAIDBOSS_MAINTENANCE_INTERVAL;
}

@Override
public synchronized boolean doDie(L2Character killer)
{
	if (!super.doDie(killer))
		return false;
	
	if (_dead)
		return true;
	
	_dead = true;
	
	L2PcInstance player = null;
	if (killer instanceof L2PcInstance)
		player = (L2PcInstance) killer;
	else if (killer instanceof L2Summon)
		player = ((L2Summon) killer).getOwner();
	
	if (player != null)
	{
		broadcastPacket(new SystemMessage(SystemMessageId.RAID_WAS_SUCCESSFUL));
		if (player.getParty() != null)
		{
			for (L2PcInstance member : player.getParty().getPartyMembers())
			{
				RaidBossPointsManager.addPoints(member, getNpcId(), (getLevel() / 2)
						+ Rnd.get(-5, 5));
			}
		}
		else
			RaidBossPointsManager.addPoints(player, getNpcId(), (getLevel() / 2)
					+ Rnd.get(-5, 5));
	}
	
	if (getInstanceId() < 1000)
	{
		if (getLevel() >= 87)
		{
			String clan = "";
			if (player.getClan() != null)
				clan = " of clan "+player.getClan().getName();
			
			Announcements.getInstance().announceToAll(getName() + " has been defeated by " + player.getDisplayName() + clan);
		}
		
		if (!isTempSpawn())
			RaidBossSpawnManager.getInstance().updateStatus(this, true);
	}
	
	/*if (isLevelOneRaidboss())
		{
			_alive85Raids.remove(this);
			_rbCounter--;
			
			if (_announceRBSpawnTask != null)
				_announceRBSpawnTask.cancel(true);
			
			if (_announceRBSpawnTaskClan != null)
				_announceRBSpawnTaskClan.cancel(true);
			
			if (!player.isGM())
			{
				FastList<Integer> clans = new FastList<Integer>();
				
				if (player.getClan() != null)
				{
					player.getClan().incRBkills();
					clans.add(player.getClanId());
				}
				
				if (player.getParty() != null)
				{
					for (L2PcInstance noob : player.getParty().getPartyMembers())
					{
						if (noob != null && !noob.isGM() && noob.getClan() != null && !clans.contains(noob.getClanId()) && Util.checkIfInRange(1800, player, noob, true))
						{
							noob.getClan().incRBkills();
							clans.add(noob.getClanId());
						}
					}
				}
			}
		}
		else if (isLevelTwoRaidboss())
		{
			_alive91Raids.remove(this);
			
			if (_announceRBSpawnTaskClan != null)
				_announceRBSpawnTaskClan.cancel(true);
			
			if (!player.isGM())
			{
				FastList<Integer> clans = new FastList<Integer>();
				
				if (player.getClan() != null)
				{
					player.getClan().incRBkills();
					clans.add(player.getClanId());
				}
				
				if (player.getParty() != null)
				{
					for (L2PcInstance noob : player.getParty().getPartyMembers())
					{
						if (noob != null && !noob.isGM() && noob.getClan() != null && !clans.contains(noob.getClanId()) && Util.checkIfInRange(1800, player, noob, true))
						{
							noob.getClan().incRBkills();
							clans.add(noob.getClanId());
						}
					}
				}
			}
		}*/
	
	return true;
}

/**
 * Spawn all minions at a regular interval Also if boss is too far from home location at the
 * time of this check, teleport it home
 * 
 */
@Override
protected void manageMinions()
{
	if (_minionList != null)
		_minionList.spawnMinions();
	
	_minionMaintainTask = ThreadPoolManager.getInstance().scheduleGeneralAtFixedRate(new Runnable()
	{
		public void run()
		{
			// teleport raid boss home if it's too far from home location
			final L2Spawn bossSpawn = getSpawn();
			
			int radius = 3500;
			
			if (L2RaidBossInstance.this.isAPC())
				radius = 5000;
			
			if (L2RaidBossInstance.this.getTemplate().AI == AIType.MAGE || L2RaidBossInstance.this.getTemplate().AI == AIType.ARCHER)
				radius += 5000;
			
			if (L2RaidBossInstance.this.getInstanceId() > 0)
				radius *= 4;
			
			if (!isInsideRadius(bossSpawn.getCurX(), bossSpawn.getCurY(), bossSpawn.getCurZ(), radius, true, false))
			{
				teleToLocation(bossSpawn.getCurX(), bossSpawn.getCurY(), bossSpawn.getCurZ(), false);
				healFull(); // prevents minor exploiting with it
				_minionList.recallMinions();
				_minionList.maintainMinions();
				return;
			}
			
			_minionList.maintainMinions();
			
			for (L2PcInstance player : getKnownList().getKnownPlayers().values())
			{
				if (player == null || player.isGM())
					continue;
				
				for (L2Effect e : player.getAllEffects())
				{
					if (e == null)
						continue;
					
					int id = e.getSkill().getId();
					
					if (id == 176 || id == 292 || id == 538 || id == 929 || id == 930 || id == 931) // frenzy, bison, final form, summoner transforms
						e.exit();
				}
			}
			
			int val = 5;
			
			if (getLevel() > 85)
				val = 3;
			
			if (getNpcId() != 25325)
			{
				if (getTarget() instanceof L2Playable && getTarget().getActingPlayer() != null)
				{
					if (getTarget().getActingPlayer().getClan() != null)
					{
						if (getTarget().getActingPlayer().getClan().getLevel() < 6)
							val -= 1;
					}
					else
						val -= 1;
				}
				
				if (Rnd.get(98) < val && (getAI().getAttackTarget() != null || getAI().getFollowTarget() != null) && L2RaidBossInstance.this.getInstanceId() == 0)
					taunt();
			}
		}
	}, 60000, getMaintenanceInterval() + Rnd.get(5000));
}

protected void taunt()
{
	L2PcInstance target = getAI().getAttackTarget().getActingPlayer();
	
	if (target == null)
		target = getAI().getFollowTarget().getActingPlayer();
	
	if (target == null)
		target = getTarget().getActingPlayer();
	
	if (target == null)
		return;
	
	if (target.isGM())
		return;
	
	final String name = target.getDisplayName();
	
	final String[] msgs = {
			name + "! You think you can defeat me?",
			"Enjoy the hells " + name + "!",
			name
			+ "! I will show you my power, and then you can tremble before my might as I crush your puny bones to bits!",
			"You are really stupid to have challenged me... " + name + "!" + " Get ready!",
			"I really have no items, I swear!",
			name + "! I will destroy you!",
			name + "! I will make you realize what true power is!",
			name + ", You are on the way to destruction.",
			name + "! You have no chance to survive make your time.",
			"So we meet again, " + name + "! This time you die!",
			"Vegeta! What does the scouter say about " + name + "'s powerlevel?",
			"How brave of you to walk straight into death, " + name,
			name
			+ "! I've braved the fires of hell, stood against the attrition of time, and single-handedly unified this region, you think a little scrub like you can defeat me?",
			name + "! How inconsiderate of you, won't your friends miss you after you die?",
			"Start the clock! " + name + ", you will die in 5 minutes!",
			"It's time to sharpen my blade with human flesh!",
			name + "! You will not win! Get out of here while you can!",
			name + "! Even with all this zerg here I will still kill you all by myself!",
			"This one here named " + name + " will be no more soon...",
			name + "! You will die here like the rest before you!",
			name + "! I will show you the punishment that follows folly!",
			"Why do you attempt the futile, " + name + "?"
					+ " Throwing your life away carelessly like this...",
					"Today is a sad day for you! " + name + "!",
					"Today is a good day to die!... for " + name + "!",
					"Haha! The ant is trying to fight the lion!",
					name + " is a fool! Fools die!",
					"Death looms near for " + name,
					"I **** YOUR MOTHER " + name.toUpperCase() +"!",
					name + "! You should be proud that you will die by my hands!",
					name + "! What is the meaning of death? well, I'll show it to you!",
					name + ", I think you need more healers!",
					name + ", You sure the loot is set on finders keepers?",
					name + "! I will kill you with my left hand and your friends with my right! Muhahaha!",
					"Brethren prior to WENCHES!",
					"I hath ninety-nine difficulties, nary a wench among them!",
					"HALT! The hour of the hammer has begun!",
					"Compelling tale, male sibling.",
					"Bare thy bosoms or make hasty egress!",
					"Relocate yourself, hound of the female gender. Be certain not to block the direction of which I am travelling.",
					"Fornicate this excrement!",
					"Cease all activities thou art engaged in - The hour of the hammer is upon us.",
					"Female canine I beg of you!",
					"Allow the carcasses to make contact with the ground!",
					"Advance towards me in an aggressive manner, male sibling!",
					"I so happen to be attracted to large posteriors, and I am inclined to be completely factual on the matter.",
					"Make thy brethren a priority before enjoying the company of loose women.",
					"Fecal matter tends to occur...",
					"Insert thy reproductive organ into thine own self!"
	};
	
	if (target.getName().equalsIgnoreCase("smalls"))
	{
		if (Rnd.get(100) < 100)
			Broadcast.shoutChat("I'll take care of you Smalls", getName(), this);
		else
			Broadcast.shoutChat(msgs[Rnd.get(msgs.length)], getName(), this);
	}
	else
	{
		Broadcast.shoutChat(msgs[Rnd.get(msgs.length)], getName(), this);
	}
}

public void setRaidStatus(RaidBossSpawnManager.StatusEnum status)
{
	_raidStatus = status;
}

public RaidBossSpawnManager.StatusEnum getRaidStatus()
{
	return _raidStatus;
}

/**
 * Reduce the current HP of the L2Attackable, update its _aggroList and launch the doDie Task if
 * necessary.<BR>
 * <BR>
 * 
 */
@Override
public void reduceCurrentHp(double damage, L2Character attacker, boolean awake, boolean isDOT,
		L2Skill skill)
{
	super.reduceCurrentHp(damage, attacker, awake, isDOT, skill);
}

public void healFull()
{
	super.setCurrentHp(super.getMaxHp());
	super.setCurrentMp(super.getMaxMp());
}

public static void showRaidsThatAreUp(final L2PcInstance activeChar)
{
	/*		int count = 0;
		
		for (L2RaidBossInstance boss : _alive85Raids)
		{
			if (boss == null)
				continue;
			
			activeChar.sendMessage(count + ": " + boss.getName() + " (" + boss.getLevel() + ")");
			count++;
		}
		for (L2RaidBossInstance boss : _alive91Raids)
		{
			if (boss == null)
				continue;
			
			activeChar.sendMessage(count + ": " + boss.getName() + " (" + boss.getLevel() + ")");
			count++;
		}*/
}

public static void goToRaid(final L2PcInstance activeChar, final int number)
{
	/*		int count = 0;
		
		for (L2RaidBossInstance boss : _alive85Raids)
		{
			if (boss == null)
				continue;
			
			if (count == number)
			{
				activeChar.teleToLocation(boss.getX(), boss.getY(), boss.getZ());
				return;
			}
			
			count++;
		}
		for (L2RaidBossInstance boss : _alive91Raids)
		{
			if (boss == null)
				continue;
			
			if (count == number)
			{
				activeChar.teleToLocation(boss.getX(), boss.getY(), boss.getZ());
				return;
			}
			
			count++;
		}*/
}

@Override
public float getVitalityPoints(int damage)
{
	return -super.getVitalityPoints(damage) / 100;
}

@Override
public boolean useVitalityRate()
{
	return false;
}
}

I find shout's but is not 100%....some rb's dont make shout...how i make it 100% ???

Edited by GastOne
  • 0
Posted (edited)

What's the part you added...? Such a messy file with many useless, commented code..

Edited by SweeTs
  • 0
Posted (edited)

What's the part you added...? Such a messy file with many useless, commented code..

I Find...soz

final String[] msgs = {
            name + "! You think you can defeat me?",
            "Enjoy the hells " + name + "!",
            name
            + "! I will show you my power, and then you can tremble before my might as I crush your puny bones to bits!",
            "You are really stupid to have challenged me... " + name + "!" + " Get ready!",
            "I really have no items, I swear!",
            name + "! I will destroy you!",
            name + "! I will make you realize what true power is!",
            name + ", You are on the way to destruction.",
            name + "! You have no chance to survive make your time.",
            "So we meet again, " + name + "! This time you die!",
            "Vegeta! What does the scouter say about " + name + "'s powerlevel?",
            "How brave of you to walk straight into death, " + name,
            name
            + "! I've braved the fires of hell, stood against the attrition of time, and single-handedly unified this region, you think a little scrub like you can defeat me?",
            name + "! How inconsiderate of you, won't your friends miss you after you die?",
            "Start the clock! " + name + ", you will die in 5 minutes!",
            "It's time to sharpen my blade with human flesh!",
            name + "! You will not win! Get out of here while you can!",
            name + "! Even with all this zerg here I will still kill you all by myself!",
            "This one here named " + name + " will be no more soon...",
            name + "! You will die here like the rest before you!",
            name + "! I will show you the punishment that follows folly!",
            "Why do you attempt the futile, " + name + "?"
                    + " Throwing your life away carelessly like this...",
                    "Today is a sad day for you! " + name + "!",
                    "Today is a good day to die!... for " + name + "!",
                    "Haha! The ant is trying to fight the lion!",
                    name + " is a fool! Fools die!",
                    "Death looms near for " + name,
                    "I **** YOUR MOTHER " + name.toUpperCase() +"!",
                    name + "! You should be proud that you will die by my hands!",
                    name + "! What is the meaning of death? well, I'll show it to you!",
                    name + ", I think you need more healers!",
                    name + ", You sure the loot is set on finders keepers?",
                    name + "! I will kill you with my left hand and your friends with my right! Muhahaha!",
                    "Brethren prior to WENCHES!",
                    "I hath ninety-nine difficulties, nary a wench among them!",
                    "HALT! The hour of the hammer has begun!",
                    "Compelling tale, male sibling.",
                    "Bare thy bosoms or make hasty egress!",
                    "Relocate yourself, hound of the female gender. Be certain not to block the direction of which I am travelling.",
                    "Fornicate this excrement!",
                    "Cease all activities thou art engaged in - The hour of the hammer is upon us.",
                    "Female canine I beg of you!",
                    "Allow the carcasses to make contact with the ground!",
                    "Advance towards me in an aggressive manner, male sibling!",
                    "I so happen to be attracted to large posteriors, and I am inclined to be completely factual on the matter.",
                    "Make thy brethren a priority before enjoying the company of loose women.",
                    "Fecal matter tends to occur...",
                    "Insert thy reproductive organ into thine own self!"
    };

thats is the shout's

Edited by GastOne
  • 0
Posted

There is no hope for you. Where to fack did you added it.. Full page of replies where you have to add it and still.. :rage:

 

I'm out.

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 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 TreZzoR account 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 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   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   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 invite 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   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   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   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 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   Software/Apps Trackers :   Brokenstones account Appzuniverse invite Teamos.xyz 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   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   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
    • always wondered by that, but we should not judge a book by the cover on this case     (i holded back enough) fuck i cant... !signature move:
    • Messed with configs for hours, but nothing changed until I tried splitting the slots differently and testing with just a few items first. Kind of like checking what actually works before going full scale. Came across https://www.mega888reviews.com/ while taking a break, and reading through their simple, clear tips made me think maybe less complicated approaches often work best.
  • 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