Jump to content

Recommended Posts

Posted

Kalispera paidia epsaxna sto L2j Gia to Salvation and Soul of The Phoenix pos mporw na to fix kai pistebw pos 8a fanei xrisimo

 

Credits:Faror

 

[Java Patch]

 

Index: C:/Documents and Settings/EdeN/Documenti/EclipseWorkspace/L2JServerCT1/L2_GameServer_T1/java/net/sf/l2j/gameserver/model/L2Effect.java
===================================================================
--- C:/Documents and Settings/EdeN/Documenti/EclipseWorkspace/L2JServerCT1/L2_GameServer_T1/java/net/sf/l2j/gameserver/model/L2Effect.java	(revision 1582)
+++ C:/Documents and Settings/EdeN/Documenti/EclipseWorkspace/L2JServerCT1/L2_GameServer_T1/java/net/sf/l2j/gameserver/model/L2Effect.java	(working copy)
@@ -74,6 +74,7 @@
         SILENCE_MAGIC_PHYSICAL,
         BETRAY,
         NOBLESSE_BLESSING,
+        PHOENIX_BLESSING,
         PETRIFICATION,
         BLUFF,
         BATTLE_FORCE,

Index: C:/Documents and Settings/EdeN/Documenti/EclipseWorkspace/L2JServerCT1/L2_GameServer_T1/java/net/sf/l2j/gameserver/model/actor/instance/L2PlayableInstance.java
===================================================================
--- C:/Documents and Settings/EdeN/Documenti/EclipseWorkspace/L2JServerCT1/L2_GameServer_T1/java/net/sf/l2j/gameserver/model/actor/instance/L2PlayableInstance.java	(revision 1582)
+++ C:/Documents and Settings/EdeN/Documenti/EclipseWorkspace/L2JServerCT1/L2_GameServer_T1/java/net/sf/l2j/gameserver/model/actor/instance/L2PlayableInstance.java	(working copy)
@@ -37,6 +37,7 @@

	private boolean _isNoblesseBlessed = false; // for Noblesse Blessing skill, restores buffs after death
	private boolean _getCharmOfLuck = false; // Charm of Luck - During a Raid/Boss war, decreased chance for death penalty
+	private boolean _isPhoenixBlessed = false; // for Soul of The PPhoenix or Salvation buffs
	/**
	 * Constructor of L2PlayableInstance (use L2Character constructor).<BR><BR>
	 *
@@ -173,7 +174,28 @@
     	setIsNoblesseBlessed(false);
     	updateAbnormalEffect();
     }
-
+    
+    // Support for Soul of the Phoenix and Salvation skills
+    public final boolean isPhoenixBlessed() { return _isPhoenixBlessed; }
+    public final void setIsPhoenixBlessed(boolean value) { _isPhoenixBlessed = value; }
+      
+    public final void startPhoenixBlessing()
+    {
+       	setIsPhoenixBlessed(true);
+       	updateAbnormalEffect();
+    }
+       
+    public final void stopPhoenixBlessing(L2Effect effect)
+    {
+      	if (effect == null)
+      		stopEffects(L2Effect.EffectType.PHOENIX_BLESSING);
+       	else
+       		removeEffect(effect);
+       			
+       	setIsPhoenixBlessed(false);
+       	updateAbnormalEffect();
+    }
+        
	public abstract boolean destroyItemByItemId(String process, int itemId, int count, L2Object reference, boolean sendMessage);
	public abstract boolean destroyItem(String process, int objectId, int count, L2Object reference, boolean sendMessage);

Index: C:/Documents and Settings/EdeN/Documenti/EclipseWorkspace/L2JServerCT1/L2_GameServer_T1/java/net/sf/l2j/gameserver/model/L2Character.java
===================================================================
--- C:/Documents and Settings/EdeN/Documenti/EclipseWorkspace/L2JServerCT1/L2_GameServer_T1/java/net/sf/l2j/gameserver/model/L2Character.java	(revision 1582)
+++ C:/Documents and Settings/EdeN/Documenti/EclipseWorkspace/L2JServerCT1/L2_GameServer_T1/java/net/sf/l2j/gameserver/model/L2Character.java	(working copy)
@@ -1581,6 +1581,12 @@
			if (((L2PlayableInstance)this).getCharmOfLuck()) //remove Lucky Charm if player have Nobless blessing buff 
				((L2PlayableInstance)this).stopCharmOfLuck(null); 
		} 
+		//Same thing if the Character is affected by Soul of The Phoenix or Salvation
+		else if (this instanceof L2PlayableInstance && ((L2PlayableInstance)this).isPhoenixBlessed())
+		{
+			if (((L2PlayableInstance)this).getCharmOfLuck()) //remove Lucky Charm if player has SoulOfThePhoenix/Salvation buff
+				((L2PlayableInstance)this).stopCharmOfLuck(null);
+		}
		else
			stopAllEffects();

@@ -1603,6 +1609,12 @@
		getNotifyQuestOfDeath().clear();

		getAttackByList().clear();
+		
+		//If character is PhoenixBlessed a resurrection popup will show up
+		if (this instanceof L2PlayableInstance && ((L2PlayableInstance)this).isPhoenixBlessed())
+		{
+			((L2PcInstance)this).reviveRequest(((L2PcInstance)this),null,false);
+		}
		return true;
	}

@@ -1616,16 +1628,21 @@
		if (!isTeleporting())
		{
			setIsPendingRevive(false);
-
+			
+			if (this instanceof L2PlayableInstance && ((L2PlayableInstance)this).isPhoenixBlessed())
+			{
+				((L2PlayableInstance)this).stopPhoenixBlessing(null);
+			}
+			
			_status.setCurrentCp(getMaxCp() * Config.RESPAWN_RESTORE_CP);
			_status.setCurrentHp(getMaxHp() * Config.RESPAWN_RESTORE_HP);
			//_Status.setCurrentMp(getMaxMp() * Config.RESPAWN_RESTORE_MP);
-
-			// Start broadcast status
-			broadcastPacket(new Revive(this));
-			if (getWorldRegion() != null)
-				getWorldRegion().onRevive(this);			
		}
+		// Start broadcast status
+		broadcastPacket(new Revive(this));
+		if (getWorldRegion() != null)
+			getWorldRegion().onRevive(this);			
+		
		else
			setIsPendingRevive(true);
	}

Index: C:/Documents and Settings/EdeN/Documenti/EclipseWorkspace/L2JServerCT1/L2_GameServer_T1/java/net/sf/l2j/gameserver/model/actor/instance/L2PcInstance.java
===================================================================
--- C:/Documents and Settings/EdeN/Documenti/EclipseWorkspace/L2JServerCT1/L2_GameServer_T1/java/net/sf/l2j/gameserver/model/actor/instance/L2PcInstance.java	(revision 1582)
+++ C:/Documents and Settings/EdeN/Documenti/EclipseWorkspace/L2JServerCT1/L2_GameServer_T1/java/net/sf/l2j/gameserver/model/actor/instance/L2PcInstance.java	(working copy)
@@ -9224,7 +9224,10 @@
		if((Pet && getPet() != null && getPet().isDead()) || (!Pet && isDead()))
		{
			_reviveRequested = 1;
-			_revivePower = Formulas.getInstance().calculateSkillResurrectRestorePercent(skill.getPower(), Reviver.getWIT());
+			if (isPhoenixBlessed())
+				_revivePower=100;
+			else
+				_revivePower = Formulas.getInstance().calculateSkillResurrectRestorePercent(skill.getPower(), Reviver.getWIT());
			_revivePet = Pet;
			sendPacket(new ConfirmDlg(SystemMessageId.RESSURECTION_REQUEST.getId(),Reviver.getName()));
		}
@@ -9234,6 +9237,12 @@
	{
		if (_reviveRequested != 1 || (!isDead() && !_revivePet) || (_revivePet && getPet() != null && !getPet().isDead()))
			return;
+		//If character refuse a PhoenixBlessed autoress, cancel all buffs he had
+		if (answer == 0 && ((L2PlayableInstance)this).isPhoenixBlessed()) 
+		{
+			((L2PlayableInstance)this).stopPhoenixBlessing(null);
+			stopAllEffects();
+		}
		if (answer == 1)
		{
			if (!_revivePet)

 

 

[DataPack Modifications]

 

<skill id="438" levels="1" name="Soul of the Phoenix">
<!--
  Description(s):
      Revives target from death and restores them to full health, retaining all buff/debuff effects except for Noblesse Blessing and Lucky Charm. Consumes 1 Blood of the Phoenix.
-->
  <set name="magicLvl" val="79"/>
  <set name="mpConsume" val="250"/>
  <set name="itemConsumeId" val="8873"/>
  <set name="itemConsumeCount" val="1"/>
  <set name="power" val="0.0"/>
  <set name="target" val="TARGET_SELF"/>
  <set name="reuseDelay" val="3600000"/>
  <set name="hitTime" val="4000"/>
  <set name="skillType" val="BUFF"/>
  <set name="isMagic" val="true"/>
  <set name="operateType" val="OP_ACTIVE"/>
  <set name="buffDuration" val="1800000"/>
  <set name="castRange" val="400"/>
  <set name="effectRange" val="900"/>
  <for>
<effect count="1" name="PhoenixBless" time="1800" val="0"/>
  </for>
</skill>

 

<skill id="1410" levels="1" name="Salvation">
<!--
   Some values need to be confirmed
-->  
  <set name="magicLvl" val="79"/>
  <set name="mpConsume" val="87"/>
  <set name="itemConsumeId" val="8874"/>
  <set name="itemConsumeCount" val="2"/>
  <set name="power" val="0.0"/>
  <set name="target" val="TARGET_ONE"/>
  <set name="reuseDelay" val="3600000"/>
  <set name="hitTime" val="4000"/> <!--guessing-->
  <set name="skillType" val="BUFF"/>
  <set name="isMagic" val="true"/>
  <set name="operateType" val="OP_ACTIVE"/>
  <set name="buffDuration" val="3600000"/>
  <set name="castRange" val="400"/>
  <set name="effectRange" val="900"/>
  <for>
<effect count="1" name="PhoenixBless" time="3600" val="0"/>
  </for>
</skill>

Posted

wraios zero...an dn kanw la8os ola ta pack exoun auta ta skils..apla 8eloun kapia fix malon..

afto einai fix swsta?

wraio share telos panton...sinexise etsi :)

Posted

Nai koita...ola se ola ta pack einai afta ta skill alla sta pio pola dn doulebei...Pistebw me afto to share 8a boi8isei na to fix ;)

 

EDIT : 800 posts done :D :D

Posted

Thanks alla dn ekanes share ena simantiko kommati. To effect. EffectPhoenixBless.java

 

Auto prepei na kanei ti douleia, alla DEN TO DOKIMASA!

 

package net.sf.l2j.gameserver.skills.effects;

import net.sf.l2j.gameserver.model.L2Effect;
import net.sf.l2j.gameserver.model.actor.instance.L2PlayableInstance;
import net.sf.l2j.gameserver.skills.Env;

final class EffectPhoenixBless extends L2Effect
{

    public EffectPhoenixBless(Env env, EffectTemplate template)
    {
        super(env, template);
    }

    public net.sf.l2j.gameserver.model.L2Effect.EffectType getEffectType()
    {
        return net.sf.l2j.gameserver.model.L2Effect.EffectType.PHOENIX_BLESSING;
    }

    public void onStart()
    {
        if(getEffected() instanceof L2PlayableInstance)
            ((L2PlayableInstance)getEffected()).startPhoenixBlessing();
    }

    public void onExit()
    {
        if(getEffected() instanceof L2PlayableInstance)
            ((L2PlayableInstance)getEffected()).stopPhoenixBlessing(this);
    }

    public boolean onActionTime()
    {
        return false;
    }
}

  • 10 months later...
Posted

Kalispera paidia epsaxna sto L2j Gia to Salvation and Soul of The Phoenix pos mporw na to fix kai pistebw pos 8a fanei xrisimo

 

Credits:Faror

 

[Java Patch]

 

Index: C:/Documents and Settings/EdeN/Documenti/EclipseWorkspace/L2JServerCT1/L2_GameServer_T1/java/net/sf/l2j/gameserver/model/L2Effect.java
===================================================================
--- C:/Documents and Settings/EdeN/Documenti/EclipseWorkspace/L2JServerCT1/L2_GameServer_T1/java/net/sf/l2j/gameserver/model/L2Effect.java	(revision 1582)
+++ C:/Documents and Settings/EdeN/Documenti/EclipseWorkspace/L2JServerCT1/L2_GameServer_T1/java/net/sf/l2j/gameserver/model/L2Effect.java	(working copy)
@@ -74,6 +74,7 @@
         SILENCE_MAGIC_PHYSICAL,
         BETRAY,
         NOBLESSE_BLESSING,
+        PHOENIX_BLESSING,
         PETRIFICATION,
         BLUFF,
         BATTLE_FORCE,

Index: C:/Documents and Settings/EdeN/Documenti/EclipseWorkspace/L2JServerCT1/L2_GameServer_T1/java/net/sf/l2j/gameserver/model/actor/instance/L2PlayableInstance.java
===================================================================
--- C:/Documents and Settings/EdeN/Documenti/EclipseWorkspace/L2JServerCT1/L2_GameServer_T1/java/net/sf/l2j/gameserver/model/actor/instance/L2PlayableInstance.java	(revision 1582)
+++ C:/Documents and Settings/EdeN/Documenti/EclipseWorkspace/L2JServerCT1/L2_GameServer_T1/java/net/sf/l2j/gameserver/model/actor/instance/L2PlayableInstance.java	(working copy)
@@ -37,6 +37,7 @@

	private boolean _isNoblesseBlessed = false; // for Noblesse Blessing skill, restores buffs after death
	private boolean _getCharmOfLuck = false; // Charm of Luck - During a Raid/Boss war, decreased chance for death penalty
+	private boolean _isPhoenixBlessed = false; // for Soul of The PPhoenix or Salvation buffs
	/**
	 * Constructor of L2PlayableInstance (use L2Character constructor).<BR><BR>
	 *
@@ -173,7 +174,28 @@
     	setIsNoblesseBlessed(false);
     	updateAbnormalEffect();
     }
-
+    
+    // Support for Soul of the Phoenix and Salvation skills
+    public final boolean isPhoenixBlessed() { return _isPhoenixBlessed; }
+    public final void setIsPhoenixBlessed(boolean value) { _isPhoenixBlessed = value; }
+      
+    public final void startPhoenixBlessing()
+    {
+       	setIsPhoenixBlessed(true);
+       	updateAbnormalEffect();
+    }
+       
+    public final void stopPhoenixBlessing(L2Effect effect)
+    {
+      	if (effect == null)
+      		stopEffects(L2Effect.EffectType.PHOENIX_BLESSING);
+       	else
+       		removeEffect(effect);
+       			
+       	setIsPhoenixBlessed(false);
+       	updateAbnormalEffect();
+    }
+        
	public abstract boolean destroyItemByItemId(String process, int itemId, int count, L2Object reference, boolean sendMessage);
	public abstract boolean destroyItem(String process, int objectId, int count, L2Object reference, boolean sendMessage);

Index: C:/Documents and Settings/EdeN/Documenti/EclipseWorkspace/L2JServerCT1/L2_GameServer_T1/java/net/sf/l2j/gameserver/model/L2Character.java
===================================================================
--- C:/Documents and Settings/EdeN/Documenti/EclipseWorkspace/L2JServerCT1/L2_GameServer_T1/java/net/sf/l2j/gameserver/model/L2Character.java	(revision 1582)
+++ C:/Documents and Settings/EdeN/Documenti/EclipseWorkspace/L2JServerCT1/L2_GameServer_T1/java/net/sf/l2j/gameserver/model/L2Character.java	(working copy)
@@ -1581,6 +1581,12 @@
			if (((L2PlayableInstance)this).getCharmOfLuck()) //remove Lucky Charm if player have Nobless blessing buff 
				((L2PlayableInstance)this).stopCharmOfLuck(null); 
		} 
+		//Same thing if the Character is affected by Soul of The Phoenix or Salvation
+		else if (this instanceof L2PlayableInstance && ((L2PlayableInstance)this).isPhoenixBlessed())
+		{
+			if (((L2PlayableInstance)this).getCharmOfLuck()) //remove Lucky Charm if player has SoulOfThePhoenix/Salvation buff
+				((L2PlayableInstance)this).stopCharmOfLuck(null);
+		}
		else
			stopAllEffects();

@@ -1603,6 +1609,12 @@
		getNotifyQuestOfDeath().clear();

		getAttackByList().clear();
+		
+		//If character is PhoenixBlessed a resurrection popup will show up
+		if (this instanceof L2PlayableInstance && ((L2PlayableInstance)this).isPhoenixBlessed())
+		{
+			((L2PcInstance)this).reviveRequest(((L2PcInstance)this),null,false);
+		}
		return true;
	}

@@ -1616,16 +1628,21 @@
		if (!isTeleporting())
		{
			setIsPendingRevive(false);
-
+			
+			if (this instanceof L2PlayableInstance && ((L2PlayableInstance)this).isPhoenixBlessed())
+			{
+				((L2PlayableInstance)this).stopPhoenixBlessing(null);
+			}
+			
			_status.setCurrentCp(getMaxCp() * Config.RESPAWN_RESTORE_CP);
			_status.setCurrentHp(getMaxHp() * Config.RESPAWN_RESTORE_HP);
			//_Status.setCurrentMp(getMaxMp() * Config.RESPAWN_RESTORE_MP);
-
-			// Start broadcast status
-			broadcastPacket(new Revive(this));
-			if (getWorldRegion() != null)
-				getWorldRegion().onRevive(this);			
		}
+		// Start broadcast status
+		broadcastPacket(new Revive(this));
+		if (getWorldRegion() != null)
+			getWorldRegion().onRevive(this);			
+		
		else
			setIsPendingRevive(true);
	}

Index: C:/Documents and Settings/EdeN/Documenti/EclipseWorkspace/L2JServerCT1/L2_GameServer_T1/java/net/sf/l2j/gameserver/model/actor/instance/L2PcInstance.java
===================================================================
--- C:/Documents and Settings/EdeN/Documenti/EclipseWorkspace/L2JServerCT1/L2_GameServer_T1/java/net/sf/l2j/gameserver/model/actor/instance/L2PcInstance.java	(revision 1582)
+++ C:/Documents and Settings/EdeN/Documenti/EclipseWorkspace/L2JServerCT1/L2_GameServer_T1/java/net/sf/l2j/gameserver/model/actor/instance/L2PcInstance.java	(working copy)
@@ -9224,7 +9224,10 @@
		if((Pet && getPet() != null && getPet().isDead()) || (!Pet && isDead()))
		{
			_reviveRequested = 1;
-			_revivePower = Formulas.getInstance().calculateSkillResurrectRestorePercent(skill.getPower(), Reviver.getWIT());
+			if (isPhoenixBlessed())
+				_revivePower=100;
+			else
+				_revivePower = Formulas.getInstance().calculateSkillResurrectRestorePercent(skill.getPower(), Reviver.getWIT());
			_revivePet = Pet;
			sendPacket(new ConfirmDlg(SystemMessageId.RESSURECTION_REQUEST.getId(),Reviver.getName()));
		}
@@ -9234,6 +9237,12 @@
	{
		if (_reviveRequested != 1 || (!isDead() && !_revivePet) || (_revivePet && getPet() != null && !getPet().isDead()))
			return;
+		//If character refuse a PhoenixBlessed autoress, cancel all buffs he had
+		if (answer == 0 && ((L2PlayableInstance)this).isPhoenixBlessed()) 
+		{
+			((L2PlayableInstance)this).stopPhoenixBlessing(null);
+			stopAllEffects();
+		}
		if (answer == 1)
		{
			if (!_revivePet)

 

 

[DataPack Modifications]

 

<skill id="438" levels="1" name="Soul of the Phoenix">
<!--
  Description(s):
      Revives target from death and restores them to full health, retaining all buff/debuff effects except for Noblesse Blessing and Lucky Charm. Consumes 1 Blood of the Phoenix.
-->
  <set name="magicLvl" val="79"/>
  <set name="mpConsume" val="250"/>
  <set name="itemConsumeId" val="8873"/>
  <set name="itemConsumeCount" val="1"/>
  <set name="power" val="0.0"/>
  <set name="target" val="TARGET_SELF"/>
  <set name="reuseDelay" val="3600000"/>
  <set name="hitTime" val="4000"/>
  <set name="skillType" val="BUFF"/>
  <set name="isMagic" val="true"/>
  <set name="operateType" val="OP_ACTIVE"/>
  <set name="buffDuration" val="1800000"/>
  <set name="castRange" val="400"/>
  <set name="effectRange" val="900"/>
  <for>
<effect count="1" name="PhoenixBless" time="1800" val="0"/>
  </for>
</skill>

 

<skill id="1410" levels="1" name="Salvation">
<!--
   Some values need to be confirmed
-->  
  <set name="magicLvl" val="79"/>
  <set name="mpConsume" val="87"/>
  <set name="itemConsumeId" val="8874"/>
  <set name="itemConsumeCount" val="2"/>
  <set name="power" val="0.0"/>
  <set name="target" val="TARGET_ONE"/>
  <set name="reuseDelay" val="3600000"/>
  <set name="hitTime" val="4000"/> <!--guessing-->
  <set name="skillType" val="BUFF"/>
  <set name="isMagic" val="true"/>
  <set name="operateType" val="OP_ACTIVE"/>
  <set name="buffDuration" val="3600000"/>
  <set name="castRange" val="400"/>
  <set name="effectRange" val="900"/>
  <for>
<effect count="1" name="PhoenixBless" time="3600" val="0"/>
  </for>
</skill>

 

Please helpme. How insert this values into my Java files.

I have L2j Interlude revision 2741.

Thanks!

Posted

Please helpme. How insert this values into my Java files.

I have L2j Interlude revision 2741.

Thanks!

 

Is it so hard to read patches?

If yes, read guides..

  • 3 weeks later...
  • 2 weeks later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Posts

    • SPECIAL OFFER UNTIL 31 JUNE.   150euro, don't miss it.
    • OFFER UNTIL 31 JUNE   Complete Server Pack + Source Files:   C4 Scions Of Destiny: P656 Retail X1 L2OFF Server Pack + Source: Price: 100EUR   C4 Scions Of Destiny: P656 ESL2 Athena x45 L2OFF Server Pack + Source: Price: 100EUR Screenshots: https://imgur.com/a/eternal-sin-l2-athena-x45-c4-WYCpbjl   C6 Interlude: P746 ESL2 Athena x45 L2OFF Server Pack + Source: Price: 100EUR The same as C4 but in C6 Client so the Screenshots is the same: https://imgur.com/a/eternal-sin-l2-athena-x45-c4-WYCpbjl   C6 Interlude: P746 L2Gold L2OFF Server Pack + Source: Price: 100EUR Screenshots: https://imgur.com/a/9kB3oA9   C6 - Classic Interlude: P110 ESL2 Athena x45 L2OFF Server Pack + Source: Price: 200EUR Screenshots: https://imgur.com/a/Z2kZxuv   Contact me here via PM (only serious buyers).    Payments via: - Paypal (Friends and Family)
    • Hey everyone! I’m giving away 5 lifetime licenses for my newly developed pixel bot – perfect for Lineage 2 and similar games. The bot automates combat, buffing, and other in-game actions with an easy GUI and advanced Telegram-based license control.   NOTE: You’ll need an Arduino Leonardo (or compatible HID device) for this bot to work! This is what makes the keypresses undetectable and safe from game protection. ✅ Features: Fully external (no memory injection, no bans) Works with Arduino Leonardo as HID keyboard Easy step-by-step GUI (no coding needed) Buffs, attack, targeting automation Bypasses most modern kernel anticheats Lifetime license, Telegram-based anti-piracy 💡 How To Get A Free License? Just reply here or send me a PM with: Why you want to try the bot What server you’ll use it on First 5 users get a free lifetime license! 💬 Contact: Telegram: @LetoKanaleto Questions? Ask here or PM me. Setup help provided!   VirusTotal https://www.virustotal.com/gui/file/472510b9271a31908bd29a620988e74f67e1f1c783ac1cac80f89cc187c3793d/detection https://www.virustotal.com/gui/file/006a5a4b5c4fc369300ed44f250df5776f0b2a863de44242d2916c0b455772c5/detection   Mega: https://mega.nz/file/m8MzRbLR#VUZ21msDcwfk5o_5CtCBC7KL6iZkXAlUSPLb5kw3v0A Google: https://drive.google.com/file/d/11X0eISEFa63EhKcZwaVwDAMibAWbzaQv/view?usp=sharing
    • 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  Xthor 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 Bithorlo 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 Hellastz 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 Casa-Torrent (Teamctgame) 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 Megamixtracker account T.ceskeforum account Peeratiko.org account Zamunda.se account Central-torrent.eu account h-o-d.org account Hdturk.club 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 Jme-reunit3d account Ptchina invite Lesaloon account Exyusubs account Therebels.tv account Ubits.club invite Zmpt.cc account Turktorrent.us account Dasunerwarte account Funsharing account Hawke.uno account Monikadesign account Theoldschool.cc invite Fearnopeer account Alpharatio account Wukongwendao.top account Chinapyg account Azusa.wiki account Yggtorrent.top account Movies Trackers : 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 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 Blutopia 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 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 Gaming Trackers : Mteam.fr account BitGamer invite Retrowithin invite Gamegamept invite Cartoon/Anime/Comic Trackers : U2.dmhy account CartoonChaos invite Animetorrents account Nyaa.si 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 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 : Ianon account 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 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
    • L2 AARON - ADVERTISTING BANNERS     L2 AMBROSIAL - ANIMATED BORDER Portfolio - protojahdesigns.com You can also join Protojah Designs Discord
  • 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