Jump to content

Recommended Posts

Posted

Well, a guy here was asking for this code (I explained at the title) and, since I decided to rework on Vago's one, I said "why don't I share it here, in case somebody else needs it too?"

And that's what I'm gonna do.

 

Explanation: Well, this is Vago's Color System but I have: Fixed his bugs, Fixed the patch (by creating a new one), Reworked on the second part by adding PvP settings instead of pk.

So now the whole system works with PvPs.

 

The following code is a rework at l2jteon's color system (as the guy in the topic requested), but of course you can add it in any project without errors.

 

Index: L2JTeon/java/net/sf/l2j/gameserver/model/actor/instance/L2PcInstance.java
===================================================================
--- L2JTeon/java/net/sf/l2j/gameserver/model/actor/instance/L2PcInstance.java	(revision 526)
+++ L2JTeon/java/net/sf/l2j/gameserver/model/actor/instance/L2PcInstance.java	(working copy)
@@ -3655,23 +3655,23 @@
	{
		if (Config.PVP_COLOR_SYSTEM_ENABLED)
		{
-			// Check if the character has GM access and if so, let them be.
+			//Check if the character has GM access and if so, let them be.
			if (isGM())
				return;
			{
-				if ((pvpKillAmount >= (Config.PVP_AMOUNT1)) && (pvpKillAmount < (Config.PVP_AMOUNT2)))
+				if ((pvpKillAmount >= (Config.PVP_AMOUNT1)) && (pvpKillAmount <= (Config.PVP_AMOUNT2)))
				{
					getAppearance().setNameColor(Config.NAME_COLOR_FOR_PVP_AMOUNT1);
				}
-				else if ((pvpKillAmount >= (Config.PVP_AMOUNT2)) && (pvpKillAmount < (Config.PVP_AMOUNT3)))
+				else if ((pvpKillAmount >= (Config.PVP_AMOUNT2)) && (pvpKillAmount <= (Config.PVP_AMOUNT3)))
				{
					getAppearance().setNameColor(Config.NAME_COLOR_FOR_PVP_AMOUNT2);
				}
-				else if ((pvpKillAmount >= (Config.PVP_AMOUNT3)) && (pvpKillAmount < (Config.PVP_AMOUNT4)))
+				else if ((pvpKillAmount >= (Config.PVP_AMOUNT3)) && (pvpKillAmount <= (Config.PVP_AMOUNT4)))
				{
					getAppearance().setNameColor(Config.NAME_COLOR_FOR_PVP_AMOUNT3);
				}
-				else if ((pvpKillAmount >= (Config.PVP_AMOUNT4)) && (pvpKillAmount < (Config.PVP_AMOUNT5)))
+				else if ((pvpKillAmount >= (Config.PVP_AMOUNT4)) && (pvpKillAmount <= (Config.PVP_AMOUNT5)))
				{
					getAppearance().setNameColor(Config.NAME_COLOR_FOR_PVP_AMOUNT4);
				}
@@ -3682,43 +3682,42 @@
			}
		}
	}
-
-	// Custom PVP Color System - End
-	// Custom Pk Color System - Start
-	public void updatePkColor(int pkKillAmount)
+	//Custom PVP Color System - End
+	
+	// Custom PVP Title Color System - Start
+	public void updatePvPTitleColor(int pvpKillAmount)
	{
		if (Config.PK_COLOR_SYSTEM_ENABLED)
		{
-			// Check if the character has GM access and if so, let them be, like above.
+			//Check if the character has GM access and if so, let them be, like above.
			if (isGM())
				return;
			{
-				if ((pkKillAmount >= (Config.PK_AMOUNT1)) && (pkKillAmount < (Config.PVP_AMOUNT2)))
+				if ((pvpKillAmount >= (Config.TITLE_COLOR_FOR_PVP_AMOUNT1)) && (pvpKillAmount <= (Config.PVP_AMOUNT2)))
				{
-					getAppearance().setTitleColor(Config.TITLE_COLOR_FOR_PK_AMOUNT1);
+					getAppearance().setTitleColor(Config.TITLE_COLOR_FOR_PVP_AMOUNT1);
				}
-				else if ((pkKillAmount >= (Config.PK_AMOUNT2)) && (pkKillAmount < (Config.PVP_AMOUNT3)))
+				else if ((pvpKillAmount >= (Config.TITLE_COLOR_FOR_PVP_AMOUNT2)) && (pvpKillAmount <= (Config.PVP_AMOUNT3)))
				{
-					getAppearance().setTitleColor(Config.TITLE_COLOR_FOR_PK_AMOUNT2);
+					getAppearance().setTitleColor(Config.TITLE_COLOR_FOR_PVP_AMOUNT2);
				}
-				else if ((pkKillAmount >= (Config.PK_AMOUNT3)) && (pkKillAmount < (Config.PVP_AMOUNT4)))
+				else if ((pvpKillAmount >= (Config.TITLE_COLOR_FOR_PVP_AMOUNT3)) && (pvpKillAmount <= (Config.PVP_AMOUNT4)))
				{
-					getAppearance().setTitleColor(Config.TITLE_COLOR_FOR_PK_AMOUNT3);
+					getAppearance().setTitleColor(Config.TITLE_COLOR_FOR_PVP_AMOUNT3);
				}
-				else if ((pkKillAmount >= (Config.PK_AMOUNT4)) && (pkKillAmount < (Config.PVP_AMOUNT5)))
+				else if ((pvpKillAmount >= (Config.TITLE_COLOR_FOR_PVP_AMOUNT4)) && (pvpKillAmount <= (Config.PVP_AMOUNT5)))
				{
-					getAppearance().setTitleColor(Config.TITLE_COLOR_FOR_PK_AMOUNT4);
+					getAppearance().setTitleColor(Config.TITLE_COLOR_FOR_PVP_AMOUNT4);
				}
-				else if (pkKillAmount >= (Config.PK_AMOUNT5))
+				else if (pvpKillAmount >= (Config.TITLE_COLOR_FOR_PVP_AMOUNT5))
				{
-					getAppearance().setTitleColor(Config.TITLE_COLOR_FOR_PK_AMOUNT5);
+					getAppearance().setTitleColor(Config.TITLE_COLOR_FOR_PVP_AMOUNT5);
				}
			}
		}
	}
+	//Custom PVP Title Color System - End

-	// Custom Pk Color System - End
-
	/**
	 * Send a Server->Client packet UserInfo to this L2PcInstance and CharInfo to all L2PcInstance in its _KnownPlayers.<BR>
	 * <B><U> Concept</U> :</B><BR>
@@ -4727,7 +4726,10 @@
         
		// Add to attacker and increase its PK counter
		setPvpKills(getPvpKills() + 1);
+		
		updatePvPColor(getPvpKills());
+		updatePvPTitleColor(getPvpKills());
+		
		// Send a Server->Client UserInfo packet to attacker with its Karma and PK Counter
		sendPacket(new UserInfo(this));
	}
@@ -4894,7 +4896,7 @@
		// Add karma to attacker and increase its PK counter
		setPkKills(getPkKills() + 1);
		setKarma(getKarma() + newKarma);
-		updatePkColor(getPkKills());
+		
		// Send a Server->Client UserInfo packet to attacker with its Karma and PK Counter
		sendPacket(new UserInfo(this));
	}
Index: L2JTeon/java/net/sf/l2j/gameserver/network/clientpackets/EnterWorld.java
===================================================================
--- L2JTeon/java/net/sf/l2j/gameserver/network/clientpackets/EnterWorld.java	(revision 526)
+++ L2JTeon/java/net/sf/l2j/gameserver/network/clientpackets/EnterWorld.java	(working copy)
@@ -267,14 +267,14 @@
		activeChar.checkBanChat(false);
		// restore info about auto herbs loot

-		// Color System checks - Start =====================================================
-		// Check if the custom PvP and PK color systems are enabled and if so ==============
-		// check the character's counters and apply any color changes that must be done. ===
-		if (activeChar.getPvpKills() >= (Config.PVP_AMOUNT1) && (Config.PVP_COLOR_SYSTEM_ENABLED))
-			activeChar.updatePvPColor(activeChar.getPvpKills());
-		if (activeChar.getPkKills() >= (Config.PK_AMOUNT1) && (Config.PK_COLOR_SYSTEM_ENABLED))
-			activeChar.updatePkColor(activeChar.getPkKills());
-		// Color System checks - End =======================================================
+		// ==========================================================================================================================================================
+        // Color System checks - Start ==============================================================================================================================
+        // Check if the custom PvP color systems are enabled and if so ==============================================================================================
+        // check the character's counters and apply any color changes that must be done. ============================================================================
+        if (activeChar.getPvpKills()>=(Config.PVP_AMOUNT1) && (Config.PVP_COLOR_SYSTEM_ENABLED)) activeChar.updatePvPColor(activeChar.getPvpKills());
+        if (activeChar.getPvpKills()>=(Config.PVP_TITLE_AMOUNT1) && (Config.PK_COLOR_SYSTEM_ENABLED)) activeChar.updatePvPTitleColor(activeChar.getPvpKills());
+        // Color System checks - End =================================================================================================================================
+        // ===========================================================================================================================================================

		if (Config.ALLOW_AUTOHERBS_CMD)
			activeChar.getAutoLootHerbs();
Index: L2JTeon/java/net/sf/l2j/Config.java
===================================================================
--- L2JTeon/java/net/sf/l2j/Config.java	(revision 526)
+++ L2JTeon/java/net/sf/l2j/Config.java	(working copy)
@@ -814,50 +814,29 @@
	public static int PK_REWARD_COUNT;

	// ** Colored pvp name system ** //
-	public static boolean PVP_COLOR_SYSTEM_ENABLED;
+	public static boolean		PVP_COLOR_SYSTEM_ENABLED;
+	public static int			PVP_AMOUNT1;
+	public static int			PVP_AMOUNT2;
+	public static int			PVP_AMOUNT3;
+	public static int			PVP_AMOUNT4;
+	public static int			PVP_AMOUNT5;
+	public static int			NAME_COLOR_FOR_PVP_AMOUNT1;
+	public static int			NAME_COLOR_FOR_PVP_AMOUNT2;
+	public static int			NAME_COLOR_FOR_PVP_AMOUNT3;
+	public static int			NAME_COLOR_FOR_PVP_AMOUNT4;
+	public static int			NAME_COLOR_FOR_PVP_AMOUNT5;
+	public static boolean		PK_COLOR_SYSTEM_ENABLED;
+	public static int			PVP_TITLE_AMOUNT1;
+	public static int			PVP_TITLE_AMOUNT2;
+	public static int			PVP_TITLE_AMOUNT3;
+	public static int			PVP_TITLE_AMOUNT4;
+	public static int			PVP_TITLE_AMOUNT5;
+	public static int			TITLE_COLOR_FOR_PVP_AMOUNT1;
+	public static int			TITLE_COLOR_FOR_PVP_AMOUNT2;
+	public static int			TITLE_COLOR_FOR_PVP_AMOUNT3;
+	public static int			TITLE_COLOR_FOR_PVP_AMOUNT4;
+	public static int			TITLE_COLOR_FOR_PVP_AMOUNT5;
	/** Colored pvp name system */
-	public static int PVP_AMOUNT1;
-	/** Colored pvp name system */
-	public static int PVP_AMOUNT2;
-	/** Colored pvp name system */
-	public static int PVP_AMOUNT3;
-	/** Colored pvp name system */
-	public static int PVP_AMOUNT4;
-	/** Colored pvp name system */
-	public static int PVP_AMOUNT5;
-	/** Colored pvp name system */
-	public static int NAME_COLOR_FOR_PVP_AMOUNT1;
-	/** Colored pvp name system */
-	public static int NAME_COLOR_FOR_PVP_AMOUNT2;
-	/** Colored pvp name system */
-	public static int NAME_COLOR_FOR_PVP_AMOUNT3;
-	/** Colored pvp name system */
-	public static int NAME_COLOR_FOR_PVP_AMOUNT4;
-	/** Colored pvp name system */
-	public static int NAME_COLOR_FOR_PVP_AMOUNT5;
-	/** Colored pvp name system */
-	public static boolean PK_COLOR_SYSTEM_ENABLED;
-	/** Colored pk name system */
-	public static int PK_AMOUNT1;
-	/** Colored pk name system */
-	public static int PK_AMOUNT2;
-	/** Colored pk name system */
-	public static int PK_AMOUNT3;
-	/** Colored pk name system */
-	public static int PK_AMOUNT4;
-	/** Colored pk name system */
-	public static int PK_AMOUNT5;
-	/** Colored pk name system */
-	public static int TITLE_COLOR_FOR_PK_AMOUNT1;
-	/** Colored pk name system */
-	public static int TITLE_COLOR_FOR_PK_AMOUNT2;
-	/** Colored pk name system */
-	public static int TITLE_COLOR_FOR_PK_AMOUNT3;
-	/** Colored pk name system */
-	public static int TITLE_COLOR_FOR_PK_AMOUNT4;
-	/** Colored pk name system */
-	public static int TITLE_COLOR_FOR_PK_AMOUNT5;
-	/** Colored pk name system */

	// * Baby Pets Customizations *//
	/** Can Baby Pets Grow Up? * */
@@ -2659,30 +2638,30 @@
				BANKING_SYSTEM_ADENA = Integer.parseInt(L2JTeonCustom.getProperty("BankingSystemAdena", "0"));
				BANKING_SYSTEM_GOLDBARS = Integer.parseInt(L2JTeonCustom.getProperty("BankingSystemGoldBars", "0"));
				// ************************//
-				/* PvP E Pk Color System */
+				/* PvP Color System       */
				// **********************//
-				PVP_COLOR_SYSTEM_ENABLED = Boolean.parseBoolean(L2JTeonCustom.getProperty("EnablePvPColorSystem", "False"));
-				PVP_AMOUNT1 = Integer.parseInt(L2JTeonCustom.getProperty("PvpAmount1", "500"));
-				PVP_AMOUNT2 = Integer.parseInt(L2JTeonCustom.getProperty("PvpAmount2", "1000"));
-				PVP_AMOUNT3 = Integer.parseInt(L2JTeonCustom.getProperty("PvpAmount3", "1500"));
-				PVP_AMOUNT4 = Integer.parseInt(L2JTeonCustom.getProperty("PvpAmount4", "2500"));
-				PVP_AMOUNT5 = Integer.parseInt(L2JTeonCustom.getProperty("PvpAmount5", "5000"));
-				NAME_COLOR_FOR_PVP_AMOUNT1 = Integer.decode("0x" + L2JTeonCustom.getProperty("ColorForAmount1", "00FF00"));
-				NAME_COLOR_FOR_PVP_AMOUNT2 = Integer.decode("0x" + L2JTeonCustom.getProperty("ColorForAmount2", "00FF00"));
-				NAME_COLOR_FOR_PVP_AMOUNT3 = Integer.decode("0x" + L2JTeonCustom.getProperty("ColorForAmount3", "00FF00"));
-				NAME_COLOR_FOR_PVP_AMOUNT4 = Integer.decode("0x" + L2JTeonCustom.getProperty("ColorForAmount4", "00FF00"));
-				NAME_COLOR_FOR_PVP_AMOUNT5 = Integer.decode("0x" + L2JTeonCustom.getProperty("ColorForAmount4", "00FF00"));
-				PK_COLOR_SYSTEM_ENABLED = Boolean.parseBoolean(L2JTeonCustom.getProperty("EnablePkColorSystem", "False"));
-				PK_AMOUNT1 = Integer.parseInt(L2JTeonCustom.getProperty("PkAmount1", "500"));
-				PK_AMOUNT2 = Integer.parseInt(L2JTeonCustom.getProperty("PkAmount2", "1000"));
-				PK_AMOUNT3 = Integer.parseInt(L2JTeonCustom.getProperty("PkAmount3", "1500"));
-				PK_AMOUNT4 = Integer.parseInt(L2JTeonCustom.getProperty("PkAmount4", "2500"));
-				PK_AMOUNT5 = Integer.parseInt(L2JTeonCustom.getProperty("PkAmount5", "5000"));
-				TITLE_COLOR_FOR_PK_AMOUNT1 = Integer.decode("0x" + L2JTeonCustom.getProperty("TitleForAmount1", "00FF00"));
-				TITLE_COLOR_FOR_PK_AMOUNT2 = Integer.decode("0x" + L2JTeonCustom.getProperty("TitleForAmount2", "00FF00"));
-				TITLE_COLOR_FOR_PK_AMOUNT3 = Integer.decode("0x" + L2JTeonCustom.getProperty("TitleForAmount3", "00FF00"));
-				TITLE_COLOR_FOR_PK_AMOUNT4 = Integer.decode("0x" + L2JTeonCustom.getProperty("TitleForAmount4", "00FF00"));
-				TITLE_COLOR_FOR_PK_AMOUNT5 = Integer.decode("0x" + L2JTeonCustom.getProperty("TitleForAmount5", "00FF00"));
+				PVP_COLOR_SYSTEM_ENABLED = Boolean.parseBoolean(L2JTeonCustom.getProperty("EnablePvPColorSystem", "false"));
+    			PVP_AMOUNT1 = Integer.parseInt(L2JTeonCustom.getProperty("PvpAmount1", "500"));
+    			PVP_AMOUNT2 = Integer.parseInt(L2JTeonCustom.getProperty("PvpAmount2", "1000"));
+    			PVP_AMOUNT3 = Integer.parseInt(L2JTeonCustom.getProperty("PvpAmount3", "1500"));
+    			PVP_AMOUNT4 = Integer.parseInt(L2JTeonCustom.getProperty("PvpAmount4", "2500"));
+    			PVP_AMOUNT5 = Integer.parseInt(L2JTeonCustom.getProperty("PvpAmount5", "5000"));
+    			NAME_COLOR_FOR_PVP_AMOUNT1 = Integer.decode("0x" + L2JTeonCustom.getProperty("ColorForAmount1", "00FF00"));
+    			NAME_COLOR_FOR_PVP_AMOUNT2 = Integer.decode("0x" + L2JTeonCustom.getProperty("ColorForAmount2", "00FF00"));
+    			NAME_COLOR_FOR_PVP_AMOUNT3 = Integer.decode("0x" + L2JTeonCustom.getProperty("ColorForAmount3", "00FF00"));
+    			NAME_COLOR_FOR_PVP_AMOUNT4 = Integer.decode("0x" + L2JTeonCustom.getProperty("ColorForAmount4", "00FF00"));
+    			NAME_COLOR_FOR_PVP_AMOUNT5 = Integer.decode("0x" + L2JTeonCustom.getProperty("ColorForAmount4", "00FF00"));
+    			PK_COLOR_SYSTEM_ENABLED = Boolean.parseBoolean(L2JTeonCustom.getProperty("EnablePvPTitleColorSystem", "false"));
+    			PVP_TITLE_AMOUNT1 = Integer.parseInt(L2JTeonCustom.getProperty("PvPTitleAmount1", "500"));
+    			PVP_TITLE_AMOUNT2 = Integer.parseInt(L2JTeonCustom.getProperty("PvPTitleAmount2", "1000"));
+    			PVP_TITLE_AMOUNT3 = Integer.parseInt(L2JTeonCustom.getProperty("PvPTitleAmount3", "1500"));
+    			PVP_TITLE_AMOUNT4 = Integer.parseInt(L2JTeonCustom.getProperty("PvPTitleAmount4", "2500"));
+    			PVP_TITLE_AMOUNT5 = Integer.parseInt(L2JTeonCustom.getProperty("PvPTitleAmount5", "5000"));
+    			TITLE_COLOR_FOR_PVP_AMOUNT1 = Integer.decode("0x" + L2JTeonCustom.getProperty("TitleForAmount1", "00FF00"));
+    			TITLE_COLOR_FOR_PVP_AMOUNT2 = Integer.decode("0x" + L2JTeonCustom.getProperty("TitleForAmount2", "00FF00"));
+    			TITLE_COLOR_FOR_PVP_AMOUNT3 = Integer.decode("0x" + L2JTeonCustom.getProperty("TitleForAmount3", "00FF00"));
+    			TITLE_COLOR_FOR_PVP_AMOUNT4 = Integer.decode("0x" + L2JTeonCustom.getProperty("TitleForAmount4", "00FF00"));
+    			TITLE_COLOR_FOR_PVP_AMOUNT5 = Integer.decode("0x" + L2JTeonCustom.getProperty("TitleForAmount5", "00FF00"));
				// PvP and PK Reward
				ALLOW_PVP_REWARD = Boolean.parseBoolean(L2JTeonCustom.getProperty("AllowPvpRewardSystem", "False"));
				PVP_REWARD_ITEM = Integer.parseInt(L2JTeonCustom.getProperty("PvpRewardItem", "57"));
Index: L2JTeon/java/config/Custom/L2JTeonCustom.properties
===================================================================
--- L2JTeon/java/config/Custom/L2JTeonCustom.properties	(revision 526)
+++ L2JTeon/java/config/Custom/L2JTeonCustom.properties	(working copy)
@@ -528,62 +528,62 @@
L2WalkerProtection = False

# ---------------------------------------
-# Change Name's Color Via PvP's
+# PvP Name Color Change System by VaGo
# ---------------------------------------
# Each Amount will change the name color to the values defined here.
# Example: PvpAmmount1 = 500, when a character's PvP counter reaches 500, their name color will change
# according to the ColorForAmount value.
-# Note: Colors Must Use RGB format
-EnablePvPColorSystem = False
+# Note: Colors Must Use RBG format
+EnablePvPColorSystem = false

# Pvp Amount & Name color level 1.
-PvpAmount1 = 50
-ColorForAmount1 = B5B5B5
+PvpAmount1 = 500
+ColorForAmount1 = CCFF00

# Pvp Amount & Name color level 2.
-PvpAmount2 = 100
-ColorForAmount2 = B5B5B5
+PvpAmount2 = 1000
+ColorForAmount2 = 00FF00

# Pvp Amount & Name color level 3.
-PvpAmount3 = 200
-ColorForAmount3 = B5B5B5
+PvpAmount3 = 1500
+ColorForAmount3 = 00FF00

# Pvp Amount & Name color level 4.
-PvpAmount4 = 300
-ColorForAmount4 = B5B5B5
+PvpAmount4 = 2500
+ColorForAmount4 = 00FF00

# Pvp Amount & Name color level 5.
-PvpAmount5 = 400
-ColorForAmount5 = B5B5B5
+PvpAmount5 = 5000
+ColorForAmount5 = 00FF00

# ---------------------------------------
-# Change Title's Color Via Pk's
+# PvP Title Color System Reworked by Coyote
# ---------------------------------------
# Same as above, with the difference that the PK counter changes the title color.
# Example:  PkAmmount1 = 500, when a character's PK counter reaches 500, their title color will change
# according to the Title For Amount
-# WAN: Colors Must Use RGB format
-EnablePkColorSystem = False
+# WAN: Colors Must Use RBG format
+EnablePvPTitleColorSystem = false

-# Pk Amount & Title color level 1.
-PkAmount1 = 50
-TitleForAmount1 = B5B5B5
+# PvP Amount & Title color level 1.
+PvPTitleAmount1 = 500
+TitleForAmount1 = 00FF00

-# Pk Amount & Title color level 2.
-PkAmount2 = 100
-TitleForAmount2 = B5B5B5
+# PvP Amount & Title color level 2.
+PvPTitleAmount2 = 1000
+TitleForAmount2 = 00FF00

-# Pk Amount & Title color level 3.
-PkAmount3 = 200
-TitleForAmount3 = B5B5B5
+# PvP Amount & Title color level 3.
+PvPTitleAmount3 = 1500
+TitleForAmount3 = 00FF00

-# Pk Amount & Title color level 4.
-PkAmount4 = 300
-TitleForAmount4 = B5B5B5
+# PvP Amount & Title color level 4.
+PvPTitleAmount4 = 2500
+TitleForAmount4 = 00FF00

-# Pk Amount & Title color level 5.
-PkAmount5 = 400
-TitleForAmount5 = B5B5B5
+# PvP Amount & Title color level 5.
+PvPTitleAmount5 = 5000
+TitleForAmount5 = 00FF00

# -------------------------------------------------------------
# Custom PVP/PK settings									  -

 

 

DO NOT ASK ME HOW TO PUT THIS IN YOUR SERVER! THERE HAVE BEEN MADE TONS OF GUIDES!

 

Status: Tested and works w/o compile errors. hf.

 

Credits: Vago for the starting erroneous code, and Coyote for fixing it, and reworking the other part.

 

 

Bye bye.

Posted

Edit: Compile Ok

 

Edit 2: Fixed for the client?? i dont know i will try tomorrow GOOD NIGHT OR DAY

 

What do you mean the client?

I do not touch the client for this modification..

Posted

what bugs did you found and fix?

coz isnt so hard to add pvp title system (when you take it from one other)

 

a/w thank you!

 

well, if you ever be able to read java (no need to be able to code it, im a "beginner" too), then you'll see that it's not something that I took from another =]

and btw the patch that vago had given, showed to put everything at enterworld, lol.

Posted

I try and this code is OK.

 

Caution: blue color = red color  and red color = blue color

 

This happens with almost all the colors in lineage =P

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 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 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 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 BJ-Share.info account Infinitylibrary.net account Beload.org account Emuwarez.com account Yhpp.cc account Funsharing ( FSC ) 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 Capybarabr account Media.slo-bitcloud.eu account   Movies Trackers :   Secret-cinema account Anthelion account Pixelhd account Cinemageddon account Cinemaz account Retroflix account Classix-unlimited - invite Movie-Torrentz (m2g.link) invite 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 HD Trackers :   Blutopia buffered account Hd-olimpo buffered account 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 Hdzero account Novahd account Hdtorrents.eu 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 Jungleland.dnsalias.com account Naftamusic 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 :   Skipthecommericals Cryptichaven account TV-Vault invite Shazbat.TV account Myspleen account Tasmanit.es invite Tvstore.me account Tvchaosuk account Jptv.club account   XXX - Porn Trackers :   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 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 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 Software/Apps Trackers : Brokenstones account Appzuniverse invite Teamos.xyz account Macbb.org account   Graphics Trackers:   Forum.Cgpersia account Cgfxw account   Others   Hduse.net account Fora.snahp.eu account Board4all.biz 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   NZB :   Ninjacentral.co.za 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 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
    • Don't the Classic (even before 3.0) versions have some BS like one type of shots, instead of graded ones (D, C, A, etc.), and some weird runes instead of SA options? If that is the case, adjusting Classic to Interlude just because of the client will be very hard for someone alone. It's better to buy it 😄
    • 이 HTML 테이블에 TooltipInfo 태그와 항목 ID를 추가해야 합니다. 저에게 연락 주세요. 제가 도와드리겠습니다.
  • 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..