Jump to content

[Share]PvP Color system


Recommended Posts

  • 1 month later...

or this code is good when i want just custom title for all?

+	// Custom Pk Color System - Start
+	public void updatePkColor(int pkKillAmount)
+	{
+			//Check if the character has GM access and if so, let them be, like above.
+			if (isGM())
+				return;
+			{
+				if ((pkKillAmount >= (0)))
+				{
+					getAppearance().setTitleColor(#FFF333);
+				}
+			}
+		}
+	//Custom Pk Color System - End
+	
    @Override
    public final void updateEffectIcons(boolean partyOnly)
    {
        // Send a Server->Client UserInfo packet to attacker with its Karma and PK Counter
        sendPacket(new UserInfo(this));
    }
@@ -5047,6 +5120,10 @@
        setPkKills(getPkKills() + 1);
        setKarma(getKarma() + newKarma);

+        //Update the character's title color if they reached any of the 5 PK levels.
+        updatePkColor(getPkKills());
+        broadcastUserInfo();
+        
        // Send a Server->Client UserInfo packet to attacker with its Karma and PK Counter
        sendPacket(new UserInfo(this));
    }

Link to comment
Share on other sites

How can i know the color codes?

 

I wanna use this thing, but with other colors.

 

Can some one share the color codes?

 

Thx, and good share mate ;)

write html colors in google

take a little codes from here

http://www.w3schools.com/Html/html_colors.asp

Link to comment
Share on other sites

write html colors in google

take a little codes from here

http://www.w3schools.com/Html/html_colors.asp

 

Ok, thank you for the fast and eficience awnser.

 

I will repost some screens with the pvp colors :P

Link to comment
Share on other sites

well i already saw something (something) like that based on Python but without and pvp or pk point only give an item and take a color so it's more cool the whole code but it's to big if you can remake it with less codes

Link to comment
Share on other sites

  • 2 months later...

« Reply #116 on: December 31, 2009, 04:35:08 PM »

So I won't undig anything ^^

 


 

Anyway, this topic exists in my AIO, which means that people are using it.

BUT, Vago's patch has a few errors, and people cannot apply it, even if they try to set it manually.

So I made a new one (It would be lame to open a new topic for it).

 

Index: java/net/sf/l2j/gameserver/model/actor/instance/L2PcInstance.java
===================================================================
--- java/net/sf/l2j/gameserver/model/actor/instance/L2PcInstance.java	(revision 47)
+++ java/net/sf/l2j/gameserver/model/actor/instance/L2PcInstance.java	(working copy)
@@ -3583,6 +3583,74 @@
        	DuelManager.getInstance().broadcastToOppositTeam(this, update);
        }
	}
+	
+	// Custom PVP Color System - Start
+	 	public void updatePvPColor(int pvpKillAmount)
+	 	{
+	 		if (Config.PVP_COLOR_SYSTEM_ENABLED)
+	 		{
+	 			//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)))
+	 				{
+	 					getAppearance().setNameColor(Config.NAME_COLOR_FOR_PVP_AMOUNT1);
+	 				}
+	 				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)))
+	 				{
+						getAppearance().setNameColor(Config.NAME_COLOR_FOR_PVP_AMOUNT3);
+	 				}
+	 				else if ((pvpKillAmount >= (Config.PVP_AMOUNT4)) && (pvpKillAmount <= (Config.PVP_AMOUNT5)))
+	 				{
+	 					getAppearance().setNameColor(Config.NAME_COLOR_FOR_PVP_AMOUNT4);
+	 				}
+	 				else if (pvpKillAmount >= (Config.PVP_AMOUNT5))
+	 				{
+	 					getAppearance().setNameColor(Config.NAME_COLOR_FOR_PVP_AMOUNT5);
+	 				}
+	 			}
+	 		}
+	 	}
+	 	//Custom PVP Color System - End
+	 	
+	 	// Custom Pk Color System - Start
+	 	public void updatePkColor(int pkKillAmount)
+	 	{
+	 		if (Config.PK_COLOR_SYSTEM_ENABLED)
+	 		{
+	 			//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)))
+					{
+	 					getAppearance().setTitleColor(Config.TITLE_COLOR_FOR_PK_AMOUNT1);
+	 				}
+	 				else if ((pkKillAmount >= (Config.PK_AMOUNT2)) && (pkKillAmount <= (Config.PVP_AMOUNT3)))
+	 				{
+	 					getAppearance().setTitleColor(Config.TITLE_COLOR_FOR_PK_AMOUNT2);
+	 				}
+	 				else if ((pkKillAmount >= (Config.PK_AMOUNT3)) && (pkKillAmount <= (Config.PVP_AMOUNT4)))
+	 				{
+	 					getAppearance().setTitleColor(Config.TITLE_COLOR_FOR_PK_AMOUNT3);
+	 				}
+	 				else if ((pkKillAmount >= (Config.PK_AMOUNT4)) && (pkKillAmount <= (Config.PVP_AMOUNT5)))
+	 				{
+	 					getAppearance().setTitleColor(Config.TITLE_COLOR_FOR_PK_AMOUNT4);
+	 				}
+	 				else if (pkKillAmount >= (Config.PK_AMOUNT5))
+	 				{
+	 					getAppearance().setTitleColor(Config.TITLE_COLOR_FOR_PK_AMOUNT5);
+	 				}
+	 			}
+	 		}
+	 	}
+	 	//Custom Pk Color System - End	

	/**
	 * Send a Server->Client packet UserInfo to this L2PcInstance and CharInfo to all L2PcInstance in its _KnownPlayers.<BR><BR>
@@ -4471,6 +4539,10 @@
        // Add karma to attacker and increase its PK counter
        setPvpKills(getPvpKills() + 1);
        
+      //Update the character's name color if they reached any of the 5 PvP levels.
+      updatePvPColor(getPvpKills());
+      broadcastUserInfo();
+        
        addExpAndSp(Config.ADD_EXP, Config.ADD_SP);
        {
        	sendMessage("You win Exp and Sp From Pvp Kills!");
@@ -4540,6 +4612,11 @@
			setPkKills(getPkKills() + 1);
			setKarma(getKarma() + newKarma);
		}
+        
+       //Update the character's title color if they reached any of the 5 PK levels.
+       updatePkColor(getPkKills());
+       broadcastUserInfo();
+        
		if(Config.CUSTOM_PK_SYSTEM)
		{
			setPvpKills(getPvpKills() + 1);
Index: java/net/sf/l2j/Config.java
===================================================================
--- java/net/sf/l2j/Config.java	(revision 48)
+++ java/net/sf/l2j/Config.java	(working copy)
@@ -882,6 +882,31 @@
    public static boolean L2JMOD_WEDDING_FORMALWEAR;
    public static int L2JMOD_WEDDING_DIVORCE_COSTS;
    
+    /** Custom PvP Color System - Start */
+    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			PK_AMOUNT1;
+    public static int			PK_AMOUNT2;
+    public static int			PK_AMOUNT3;
+    public static int			PK_AMOUNT4;
+    public static int			PK_AMOUNT5;
+    public static int			TITLE_COLOR_FOR_PK_AMOUNT1;
+    public static int			TITLE_COLOR_FOR_PK_AMOUNT2;
+    public static int			TITLE_COLOR_FOR_PK_AMOUNT3;
+    public static int			TITLE_COLOR_FOR_PK_AMOUNT4;
+    public static int			TITLE_COLOR_FOR_PK_AMOUNT5;
+    /** Custom PvP Color System - End */
+    
    /** Customs - Start            */
    public static boolean 	ALT_OLY_SAME_IP;
    public static boolean 	PACKET_HANDLER_DEBUG;
@@ -1884,6 +1909,30 @@
                L2JMOD_WEDDING_FORMALWEAR               = Boolean.parseBoolean(L2JModSettings.getProperty("WeddingFormalWear", "True"));
                L2JMOD_WEDDING_DIVORCE_COSTS            = Integer.parseInt(L2JModSettings.getProperty("WeddingDivorceCosts", "20"));

+                /** Custom PvP Color System */
+                PVP_COLOR_SYSTEM_ENABLED = Boolean.parseBoolean(L2JModSettings.getProperty("EnablePvPColorSystem", "false"));
+                PVP_AMOUNT1 = Integer.parseInt(L2JModSettings.getProperty("PvpAmount1", "500"));
+                PVP_AMOUNT2 = Integer.parseInt(L2JModSettings.getProperty("PvpAmount2", "1000"));
+                PVP_AMOUNT3 = Integer.parseInt(L2JModSettings.getProperty("PvpAmount3", "1500"));
+                PVP_AMOUNT4 = Integer.parseInt(L2JModSettings.getProperty("PvpAmount4", "2500"));
+                PVP_AMOUNT5 = Integer.parseInt(L2JModSettings.getProperty("PvpAmount5", "5000"));
+                NAME_COLOR_FOR_PVP_AMOUNT1 = Integer.decode("0x" + L2JModSettings.getProperty("ColorForAmount1", "00FF00"));
+                NAME_COLOR_FOR_PVP_AMOUNT2 = Integer.decode("0x" + L2JModSettings.getProperty("ColorForAmount2", "00FF00"));
+                NAME_COLOR_FOR_PVP_AMOUNT3 = Integer.decode("0x" + L2JModSettings.getProperty("ColorForAmount3", "00FF00"));
+                NAME_COLOR_FOR_PVP_AMOUNT4 = Integer.decode("0x" + L2JModSettings.getProperty("ColorForAmount4", "00FF00"));
+                NAME_COLOR_FOR_PVP_AMOUNT5 = Integer.decode("0x" + L2JModSettings.getProperty("ColorForAmount4", "00FF00"));
+                PK_COLOR_SYSTEM_ENABLED = Boolean.parseBoolean(L2JModSettings.getProperty("EnablePkColorSystem", "false"));
+                PK_AMOUNT1 = Integer.parseInt(L2JModSettings.getProperty("PkAmount1", "500"));
+                PK_AMOUNT2 = Integer.parseInt(L2JModSettings.getProperty("PkAmount2", "1000"));
+                PK_AMOUNT3 = Integer.parseInt(L2JModSettings.getProperty("PkAmount3", "1500"));
+                PK_AMOUNT4 = Integer.parseInt(L2JModSettings.getProperty("PkAmount4", "2500"));
+                PK_AMOUNT5 = Integer.parseInt(L2JModSettings.getProperty("PkAmount5", "5000"));
+                TITLE_COLOR_FOR_PK_AMOUNT1 = Integer.decode("0x" + L2JModSettings.getProperty("TitleForAmount1", "00FF00"));
+                TITLE_COLOR_FOR_PK_AMOUNT2 = Integer.decode("0x" + L2JModSettings.getProperty("TitleForAmount2", "00FF00"));
+                TITLE_COLOR_FOR_PK_AMOUNT3 = Integer.decode("0x" + L2JModSettings.getProperty("TitleForAmount3", "00FF00"));
+                TITLE_COLOR_FOR_PK_AMOUNT4 = Integer.decode("0x" + L2JModSettings.getProperty("TitleForAmount4", "00FF00"));
+                TITLE_COLOR_FOR_PK_AMOUNT5 = Integer.decode("0x" + L2JModSettings.getProperty("TitleForAmount5", "00FF00"));
+                
				/**  Custom Features        */
				ALT_OLY_SAME_IP 						= Boolean.parseBoolean(L2JModSettings.getProperty("AltOlySameIp", "False"));
				PACKET_HANDLER_DEBUG 					= Boolean.parseBoolean(L2JModSettings.getProperty("PacketHandlerDebug", "False"));
Index: java/config/l2jmods.properties
===================================================================
--- java/config/l2jmods.properties	(revision 48)
+++ java/config/l2jmods.properties	(working copy)
@@ -201,3 +201,61 @@

# Your Level Must Be Over
LevelNeededToUseNobleCustomItem = 76
+
+# ---------------------------------------
+# Section: PvP Title Color Change System by Level
+# ---------------------------------------
+# 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 RBG format
+EnablePvPColorSystem = false
+
+# Pvp Amount & Name color level 1.
+PvpAmount1 = 500
+ColorForAmount1 = CCFF00
+
+# Pvp Amount & Name color level 2.
+PvpAmount2 = 1000
+ColorForAmount2 = 00FF00
+
+# Pvp Amount & Name color level 3.
+PvpAmount3 = 1500
+ColorForAmount3 = 00FF00
+
+# Pvp Amount & Name color level 4.
+PvpAmount4 = 2500
+ColorForAmount4 = 00FF00
+
+# Pvp Amount & Name color level 5.
+PvpAmount5 = 5000
+ColorForAmount5 = 00FF00
+
+# ---------------------------------------
+# Section: PvP Nick Color System by Level
+# ---------------------------------------
+# 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 RBG format
+EnablePkColorSystem = false
+
+# Pk Amount & Title color level 1.
+PkAmount1 = 500
+TitleForAmount1 = 00FF00
+
+# Pk Amount & Title color level 2.
+PkAmount2 = 1000
+TitleForAmount2 = 00FF00
+
+# Pk Amount & Title color level 3.
+PkAmount3 = 1500
+TitleForAmount3 = 00FF00
+
+# Pk Amount & Title color level 4.
+PkAmount4 = 2500
+TitleForAmount4 = 00FF00
+
+# Pk Amount & Title color level 5.
+PkAmount5 = 5000
+TitleForAmount5 = 00FF00
Index: java/net/sf/l2j/gameserver/clientpackets/EnterWorld.java
===================================================================
--- java/net/sf/l2j/gameserver/clientpackets/EnterWorld.java	(revision 47)
+++ java/net/sf/l2j/gameserver/clientpackets/EnterWorld.java	(working copy)
@@ -259,6 +259,15 @@
		Quest.playerEnter(activeChar);
		activeChar.sendPacket(new QuestList());

+		// =================================================================================
+		// 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 =======================================================
+		// =================================================================================
+		
		if (Config.NAME_COLOR_SYSTEM)
		{
			activeChar.getAppearance().setNameColor(Config.NAME_COLOR);

 

 

Tested and works w/o errors.

 

Regards.

Link to comment
Share on other sites

tested it on l2jInterlude  ..... FAILED dude ....... and btw this is so complicated .....

 

1) L2jInterlude? ahahahahahah you've got to be kidding me. The project where you tested it was a failure, not the patch ;)

2) What's so complicated in a normal patch? o.O

Link to comment
Share on other sites

  • 4 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.

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

    • NEW ACTIVATION POWDER +27717507286, INDIA, DUBAI @BEST SSD CHEMICAL SOLUTION SELLERS FOR CLEANING BLACK MONEY IN USA, UK, DUBAI, CANADA, GERMANY, AUSTRALIA, CALIFONIA, FRANCE` SSD SOLUTION CHEMICAL FOR CLEANING BLACK MONEY NOTES +27717507286 AND AUTOMATIC BLACK MONEY CLEANING MACHINE CALL OR WHATSAPP : +27717507286 Email : drmark396@gmail.com. BEST SUPPLIERS OF SSD CHEMICAL SOLUTION FOR CLEANING BLACK MONEY | Activation Powder ))  call or Whatsapp +27717507286 Email : drmark396@gmail.com  in Oman, Pakistan, South Africa, Namibia, Swaziland, Zambia, CANADA , USA, DENMARK , UK , NETHERLANDS , Zakariyya Park for cleaning black money notes  call or Whatsapp +27717507286 Email : drmark396@gmail.com  SSD solution used to clean all type of blackened, tainted and defaced bank notes. We sell SSD chemical solution used to clean an all type of black money and any color currency, stain and defaced bank notes with any other equipment being bad. Our technicians are highly qualified and are always ready to handle the cleaning perfectly. Our chemical is 100% pure. call or Whatsapp +27717507286 Email : drmark396@gmail.com  Automatic SSD solution for sale  call or Whatsapp +27717507286 Email : drmark396@gmail.com  Rustenburg, Mafikeng, Polokwane Durban/east London, Pretoria, Johannesburg, Mpumalanga. +27717507286 SSD chemical solution for sale in Johannesburg, Zimbabwe, Mozambique, Maputo, Angola Namibia, Botswana, Lesotho, Swaziland SSD chemical solution for defaced black notes call or Whatsapp +27717507286 Email : drmark396@gmail.com in Mozambique, South Africa, Lesotho, Swaziland, Namibia, Angola, Botswana, Mauritius, Zambia, Zimbabwe. SSD chemical solution for all defaced bank notes in Bloemfontein, Johannesburg, Cape town, Polokwane, Rustenburg, Kimberley, Durban, we are specialized in chemistry for anti-breeze bank notes. We also do chemicals melting and recovering of all type of bad money from black to white. We also sale chemicals like tourmaline ,SSD Chemical solution,  x oxide, a4. And many other activation powder. About SSD solution for cleaning black money chemical and allied product incorporated is a major manufacturer of industrial and pharmaceutical products with key specialization in the production of SSD automatic solution used in the cleaning of black money and defaced money and stained bank notes with anti-breeze quality . The SSD solution in its full range is the best chemical in the market for cleaning anti breeze bank notes, defaced currency, and mar For more information  call or Whatsapp +27717507286 Email : drmark396@gmail.com  About SSD solution for cleaning black money chemical and allied product incorporated is a major manufacturer of industrial and pharmaceutical products with key specialization in the production of SSD automatic solution used in the cleaning of black money and defaced money and stained bank notes with anti-breeze quality . The SSD solution in its full range is the best chemical in the market for cleaning anti breeze bank notes, defaced currency, and mar For more information call or Whatsapp +27717507286 Email : drmark396@gmail.com About SSD solution for cleaning black money chemical and allied product incorporated is a major manufacturer of industrial and pharmaceutical products with key specialization in the production of SSD automatic solution used in the cleaning of black money and defaced money and stained bank notes with anti-breeze quality . The SSD solution in its full range is the best chemical in the market for cleaning anti breeze bank notes, defaced currency, and mar For more information call or Whatsapp +27717507286  Email : drmark396@gmail.com
    • PURCHASE SSD CHEMICAL SOLUTION +27717507286 AND ACTIVATION POWDER TO CLEAN NOTES IN SOUTH AFRICA +27717507286 , SSD CHEMICAL SOLUTION&ACTIVATION POWDER FOR SALE +27717507286 IN BOTSWANA GABORONE, SSD CHEMICAL SOLUTION FOR SALE IN +27717507286 IN JOHANNESBURG, SSD CHEMICAL SOLUTION&ACTIVATION POWDER FOR SALE +27717507286 IN NAMIBIA WINDHOEK,SSD CHEMICAL SOLUTION FOR SALE IN +27717507286 IN POLOKWANE, SSD CHEMICAL SOLUTION&ACTIVATION POWDER FOR SALE +27717507286 IN ZAMBIA LUSAKA, SSD CHEMICAL SOLUTION FOR SALE IN +27717507286 IN DURBAN, SSD CHEMICAL SOLUTION&ACTIVATION POWDER FOR SALE +27717507286 IN MOZAMBIQUE MAPUTO, SSD CHEMICAL SOLUTION FOR SALE IN +27717507286 IN LE CAP, SSD CHEMICAL SOLUTION&ACTIVATION POWDER FOR SALE +27717507286 IN LISOTHO, SSD CHEMICAL SOLUTION FOR SALE IN +27717507286 IN MIDRAND, SSD CHEMICAL SOLUTION&ACTIVATION POWDER FOR SALE +27717507286 IN ZIMBABWE HARARE, SSD CHEMICAL SOLUTION FOR SALE +27717507286 IN BLOEMFONTEIN, SSD CHEMICAL SOLUTION FOR SALE IN +27717507286 IN PIETERMARTZBURG, SSD CHEMICAL SOLUTION FOR SALE IN +27717507286 IN KIMBERLEY,SSD CHEMICAL SOLUTION FOR SALE IN +27717507286 IN CAPE TOWN, SSD CHEMICAL SOLUTION FOR SALE IN +27717507286 IN MBOMBELA, SSD CHEMICAL SOLUTION FOR SALE IN +27717507286 IN MAHIKENG, SSD CHEMICAL SOLUTION&ACTIVATION POWDER FOR SALE+27717507286 IN BHISHO. BLACK CLEANING SOLUTION%ACTIVATION POWDER, TEMPERATURE CONTROLLERS ACTIVATION POWDER, BLACK CURRENCY CLEANING MACHINE, BLACK CURRENCY CLEANING, BLACK CLEANING AGENT, CURRENCY CLEANING SOLUTION FOR SALE, GENUINE CURRENCY CLEANING SOLUTIONS, LABORATORY&PARTNERSHIP, CLEANING BLACK CURRENCY FOR COMPANIES WORKING SSD CHEMICAL SOLUTION TO CLEAN BLACK&WHITE NOTES IN Alberton, Benoni, Bethal, Bisho, Bloemfontein, Boksburg, Batshabelo, Brakpan, Brits, Cerletonville, Centurion, Delmas, Dundee, East London, Embalenhle, Emnambithi, Empulanga, George, Kierksdorp, Kroonstand, Krugersdorp, Kutlwanong, Le Cap, Mabopane, Middelburg, Midrand, Nelspriut, Newcastle, Nigel, Orkney, Paarl, Phalaborwa, Piet Retief, Pietermaritzburg, Port Elizabeth, Potchefstroom, Potgietersrus, Queenstown, Randfontein, Richards Bay, Rustenburg, Samerset West, Soweto, Springs, Stellenbosch, Stilfontein, Tembisa, Uitenhage, Vanderbijlpark, Vereeniging, Virginia, Vryheld, Warmbath, Welkom, westonaria, Witbank, Worcester, Johannesburg, Durban, Polokwane, Pretoria,Bloemfontein, Kimberley Johannesberg. WORKING SSD CHEMICAL SOLUTION TO CLEAN BLACK&WHITE NOTES IN Gaborone, Molepolole, Maun, Serowe, Palapye, Kasane, Jwaneng, Shakawe. WORKING SSD CHEMICAL SOLUTION TO CLEAN BLACK&WHITE NOTES IN Windhoek, Rundu, Swakopmund, Walvis Bay, Okahandja, Omaruru, Gobabis, Luderitz. WORKING SSD CHEMICAL SOLUTION TO CLEAN BLACK&WHITE NOTES IN Luanda, Benguela, Kissama, Huambo, Lobito, Cabinda, Malanje, Lubango. This is solution for anti-breeze bank notes, designed to remove excess coated substance. This universal solution work better when combine with activation powder. You will be amazed by the power and rapidity of this solution. It is capable of cleaning notes currency with breeze capacity SSD Solution is the main chemical used in cleaning stained and coated currency. It is mainly found in 1 litre, 1,5litre and two litre metal insulated containers. it is necessary to keep it in such SSD Solution is a milky white liquid chemical Compound used in the cleaning of black stained notes, this chemical compound can be enhanced by adding other catalyst oxides and can be diluted with paste to increase its pool of cleaning, to increase the number of bills you are to clean. We lead the industry in cleaning bank stained currency. We have great Automatic laser V-Q 375 Machines to do the large cleaning and delivery of products to buyers destinations after a consultation fee Countries like, American, united kingdom, Europe, Africa, Middle east And Many More. Black currency cleaning machine suppliers, Full Automatic Curency Cleaning Machine For All Currencies, black money cleaning machine for sale, money cleaning machine price, black dollar cleaning machine for sale, black dollar cleaning machine in india, how to clean black money with vitamin c, how to wash black money, black dollar cleaning chemical formula, Activation powder & ssd solution, Black money cleaning machine ssd chemical solution laboratory contact or call directly on we supply the latest automatic ssd, universal chemicals, activating powders and specialize in cleaning all types of defaced notes, black notes Black currency cleaning material, We sell this Solution used to clean all type of black and any color currency, stain and defaced bank notes with any others equipment being bad. Our technicians are highly qualified and are always ready to handle the cleaning perfectly. Our Chemical is 100% pure. Black currency cleaning chemical We clean all currencies like the Euro, USD, GBP and many other currencies. We are the major SSD solution suppliers in South African Region for black dollar cleaning, black money cleaning chemicals. We have in stock, 100% concentrated SSD solution for sale and our SSD solution price is affordable based on company rates. We are renowned as a worldwide certified manufacturer for SSD solution chemical for sale purposes that provides a quality cleaning solution. We are the largest provider of cleaning chemical solutions which are used for black dollar cleaning chemicals recommended by all the qualified and skilled technicians in cleaning black money Call/Whatsapp: +27717507286 Email : drmark396@gmail.com
    • SSD CHEMICAL SOLUTION AND ACTIVATION POWDER USED FOR CLEANING BLACK MONEY+27717507286 in SOUTH AFRICA, Botswana, AUTOMATIC SSD CHEMICAL SOLUTION UNIVERSAL AND ACTIVATING POWDER FOR SALE +27717507286 in SOUTH AFRICA, GHANA, Namibia, Botswana, Mozambique, Zambia, Swaziland, Madagascar, Zimbabwe, Lesotho, Uganda, Limpo­po, Bellv­ille, Benon­i, Bloem­fonte­in, Boksb­urg, Cape Town, Cen­turio­n, Durba­n East Londo­n Empan­geni Georg­e Germi­ston Ibhay­i­rg Katle­hong Kempt­on Park Kha­yelit­sa Pol­okwan­e Port Eliza­beth. Potch­efstr­oom, Preto­ria, Randb­urg, Roode­poort, Ruste­nburg, Seb­okeng, Sosha­nguve, Sowet­o Sprin­gbok, Stell­enbos­ch, Tembi­sa, Thoho­yando­u Umlaz­i Uping­ton Vande­rbijl­park ,Ver­eenig­ing, Welko­m Witba­nk, Easte­rn Cape, Free State, Gaute­ng, KwaZu­lu-Na­tal, Mpuma­langa, Zambi­a, Zimba­bawe.+27717507286 To purch­ase Best SSD Solut­ion Clean Black Notes Dolla­rs WE ALSO? SALE CHEMI­CALS LIKE SSD AUTOA­MATIC SOL­UTION­ FORM CLEAN­ING BLACK DOLLA­RS CURRE­NCIES­. I hereb­y use this media to infor­m you, that our compa­ny can clean out black­ def­ace curre­ncy, (stai­ned money­) bank notes­, We have all kinds of chemi­cals used for clean­ing of black money or stain­ed money in curre­ncies such as U.S Dolla­r, Euro, Pound­, and all local curre­ncies­, even if your defac­ed note is 25 years old,+27717507286 WE SALE CHEMI­CALS LIKE TOURM­ALINE­, S.S.D­. Chemi­cal / Solut­ion , CASTR­O X OX­IDE, A4. AND MANY Like ACTIV­ATION POWDE­R & SSD SOLUT­ION FOR CLEAN­ING BLACK MONEY Chemi­cal and Allie­d produ­ct incor­porat­ed is a major­ man­ufact­urer of indus­trial and pharm­aceut­ical produ­cts with key speci­aliza­tion in the produ­ction of S.S.D Autom­atic solut­ion used in the clean­ing of black money , defac­ed money and stain­ed bank notes with anti bree­ze quali­ty. OTHER­S FOR DAMAG­ED NOTES­, BILLS LIKE USD,E­URO, POUND­S, T­RANSF­ERRIN­G COLOR­S FROM USE NOTE TO NEW WHITE BILLS­,AND BLACK NOTES ,WE WORK ON COMMI­SSION WE ALSO OFFER MACHI­NES TO DO THE BIG CLEAN­INGS, AND WE D­O DELIV­ERY OF PRODU­CTS TO BUYER­S DESTI­NATIO­NS AFTER A CONSU­LTATI­ON FEE. DEPE­NDING ON DIFFE­RENT CASES­. FOR MORE INFOR­MATIO­N PLEAS­E DO CONTA­CT US IN O­UR DIFFE­RENT OFFIC­ES.SP­AIN, INDIA­, CHINA­, THAIL­AND, CAMBO­DIA. ENGLA­ND, SWEDE­N, MALAY­SIA.D­UBAI, DR BAT PODOL­SKI KLOSE Are you looki­ng for:-­ SSD Chemi­cal Solut­ion Chemi­cal Solut­ion for Clean­ing Black Money­ SSD Chemi­cal Compa­ny SSD Chemi­cal Solut­ion for Clean­ing Black Money­ SSD Prese­rving Compa­ny SSD Chemi­cal Solut­ion for Clean­ing Black­ Mon­ey Activ­ation Powde­r S.S.D­. Chemi­cal Solut­ion for Clean­ing Black­ US Dolla­rs Activ­e Powde­r Activ­ation Powde­r for Clean­ing Black Notes­ Bla­ck Money Clean­ing Clean Black Money Best SSD Solut­ion Clean Black Notes Clean­ing Black Notes Clean­ing Black Money­ PLE­ASE NOTE: WE ONLY DEALS ON HIGH QUALI­TY S.S.D­. CHEMI­CALS SOLUT­ION FOR CLEAN­ING BLACK MONEY We are manuf­actur­er and selle­r of all sort of chemi­cals like SUPER­ AUT­OMATI­C SSD SOLUT­ION Z.W.V­.8 MODEL ACTIV­ATION POWDE­R AND REACT­IVATI­ON P­OWDER­, ANTI AIR POWDE­R, MERCU­RY POWDE­R , AUTOM­ATED MONEY DEVEL­OPER MACHI­NES CONGE­AL CHEMI­CAL MELTI­NG EQUIP­MENTS­, TEMPE­RATUR­E CONTR­OLLER­S AND AUTOM­ATIC. +27717507286 Call or whatsapp Dr Mark +27717507286 Email : drmark396@gmail.com
    • SSD CHEMICAL SOLUTION AND ACTIVATION POWDER USED FOR CLEANING BLACK MONEY+27717507286 in SOUTH AFRICA, Botswana, AUTOMATIC SSD CHEMICAL SOLUTION UNIVERSAL AND ACTIVATING POWDER FOR SALE +27717507286 in SOUTH AFRICA, GHANA, Namibia, Botswana, Mozambique, Zambia, Swaziland, Madagascar, Zimbabwe, Lesotho, Uganda, Limpo­po, Bellv­ille, Benon­i, Bloem­fonte­in, Boksb­urg, Cape Town, Cen­turio­n, Durba­n East Londo­n Empan­geni Georg­e Germi­ston Ibhay­i­rg Katle­hong Kempt­on Park Kha­yelit­sa Pol­okwan­e Port Eliza­beth. Potch­efstr­oom, Preto­ria, Randb­urg, Roode­poort, Ruste­nburg, Seb­okeng, Sosha­nguve, Sowet­o Sprin­gbok, Stell­enbos­ch, Tembi­sa, Thoho­yando­u Umlaz­i Uping­ton Vande­rbijl­park ,Ver­eenig­ing, Welko­m Witba­nk, Easte­rn Cape, Free State, Gaute­ng, KwaZu­lu-Na­tal, Mpuma­langa, Zambi­a, Zimba­bawe.+27717507286 To purch­ase Best SSD Solut­ion Clean Black Notes Dolla­rs WE ALSO? SALE CHEMI­CALS LIKE SSD AUTOA­MATIC SOL­UTION­ FORM CLEAN­ING BLACK DOLLA­RS CURRE­NCIES­. I hereb­y use this media to infor­m you, that our compa­ny can clean out black­ def­ace curre­ncy, (stai­ned money­) bank notes­, We have all kinds of chemi­cals used for clean­ing of black money or stain­ed money in curre­ncies such as U.S Dolla­r, Euro, Pound­, and all local curre­ncies­, even if your defac­ed note is 25 years old,+27717507286 WE SALE CHEMI­CALS LIKE TOURM­ALINE­, S.S.D­. Chemi­cal / Solut­ion , CASTR­O X OX­IDE, A4. AND MANY Like ACTIV­ATION POWDE­R & SSD SOLUT­ION FOR CLEAN­ING BLACK MONEY Chemi­cal and Allie­d produ­ct incor­porat­ed is a major­ man­ufact­urer of indus­trial and pharm­aceut­ical produ­cts with key speci­aliza­tion in the produ­ction of S.S.D Autom­atic solut­ion used in the clean­ing of black money , defac­ed money and stain­ed bank notes with anti bree­ze quali­ty. OTHER­S FOR DAMAG­ED NOTES­, BILLS LIKE USD,E­URO, POUND­S, T­RANSF­ERRIN­G COLOR­S FROM USE NOTE TO NEW WHITE BILLS­,AND BLACK NOTES ,WE WORK ON COMMI­SSION WE ALSO OFFER MACHI­NES TO DO THE BIG CLEAN­INGS, AND WE D­O DELIV­ERY OF PRODU­CTS TO BUYER­S DESTI­NATIO­NS AFTER A CONSU­LTATI­ON FEE. DEPE­NDING ON DIFFE­RENT CASES­. FOR MORE INFOR­MATIO­N PLEAS­E DO CONTA­CT US IN O­UR DIFFE­RENT OFFIC­ES.SP­AIN, INDIA­, CHINA­, THAIL­AND, CAMBO­DIA. ENGLA­ND, SWEDE­N, MALAY­SIA.D­UBAI, DR BAT PODOL­SKI KLOSE Are you looki­ng for:-­ SSD Chemi­cal Solut­ion Chemi­cal Solut­ion for Clean­ing Black Money­ SSD Chemi­cal Compa­ny SSD Chemi­cal Solut­ion for Clean­ing Black Money­ SSD Prese­rving Compa­ny SSD Chemi­cal Solut­ion for Clean­ing Black­ Mon­ey Activ­ation Powde­r S.S.D­. Chemi­cal Solut­ion for Clean­ing Black­ US Dolla­rs Activ­e Powde­r Activ­ation Powde­r for Clean­ing Black Notes­ Bla­ck Money Clean­ing Clean Black Money Best SSD Solut­ion Clean Black Notes Clean­ing Black Notes Clean­ing Black Money­ PLE­ASE NOTE: WE ONLY DEALS ON HIGH QUALI­TY S.S.D­. CHEMI­CALS SOLUT­ION FOR CLEAN­ING BLACK MONEY We are manuf­actur­er and selle­r of all sort of chemi­cals like SUPER­ AUT­OMATI­C SSD SOLUT­ION Z.W.V­.8 MODEL ACTIV­ATION POWDE­R AND REACT­IVATI­ON P­OWDER­, ANTI AIR POWDE­R, MERCU­RY POWDE­R , AUTOM­ATED MONEY DEVEL­OPER MACHI­NES CONGE­AL CHEMI­CAL MELTI­NG EQUIP­MENTS­, TEMPE­RATUR­E CONTR­OLLER­S AND AUTOM­ATIC. +27717507286 Call or whatsapp Dr Mark +27717507286 Email : drmark396@gmail.com
    • +27717507286 0ukrainwar##666{{%%!}}((##3كيل الحر..BEST SSD CHEMICAL SOLUTION AND ACTIVATION POWDER+27717507286 +27717507286 {{{@}} B2B BEST SSD CHEMICAL SOLUTION AND ACTIVATION POWDER AND REACTIVATION POWDER, ANTI AIR POWDER ,MERCURY POWDER, AUTOMATED FOR Abu Dhabi, Dubai, Sharjah, Ajman, Umm Al-Quwain, and Fujairah, while the seventh emirate, Ras Al Khaimah Al Dhafrah has seven main cities: Liwa, Madinat Zayed, Ghayathi, Ruwais, Mirfa, Sila and Delma Island. The city of Abu Dhabi is connected to the mainland by four bridges: Maqta bridge, Mussafah bridge, Sheikh Zayed bridge and Sheikh Khalifa bridge. Bahrain,Iraq,Kuwait,Oman,Qatar,Saudi Arabia,UAE ,Australia,New Zealand Durban East London Empangeni George Germiston Ibhayi Johannesburg Katlehong Kempton Park Khayelitsha Kimberley Klerksdorp Mamelodi Mitchells Plain Mthatha Nelspruit Newcastle Pietermaritzburg Pinetown Polokwane Port Elizabeth Potchefstroom Pretoria Randburg Roodepoort Rustenburg Sebokeng Soshanguve Soweto Springbok Stellenbosch Tembisa Thohoyandou Umlazi Upington Vanderbijlpark Vereeniging Welkom Witbank Eastern Cape Free State Gauteng KwaZulu-Natal Limpopo Mpumalanga North West Northern Cape Western SouthAfrica,Namibia,Botswana,Mozambique,Zambia,Swaziland,Madagascar,Zimbabwe,Lesotho,Uganda ,Limpo­po Bellv­ille Benon­i Bloem­fonte­in Boksb­urg Cape Town Cen­turio­n Durba­n East Londo­n Empan­geni Georg­e Germi­ston Ibhay­i­rg Katle­hong Kempt­on Park Kha­yelit­sa Pol­okwan­e Port Eliza­beth Potch­efstr­oom Preto­ria Randb­urg Roode­poort Ruste­nburg Seb­okeng Sosha­nguve Sowet­o Sprin­gbok Stell­enbos­ch Tembi­sa Thoho­yando­u Umlaz­i Uping­ton Vande­rbijl­park Ver­eenig­ing Welko­m Witba­nk Easte­rn Cape Free State Gaute­ng KwaZu­lu-Na­tal Mpuma­langa Zambi­a, Zimba­bawe Cape Call or whatsapp +27717507286 BEST UNIVERSAL SSD CHEMICAL SOLUTION MONEY CLEANING BLACK 🙂 Best SSD Solution Clean Black Notes Dollars WE ALSO? SALE CHEMICALS LIKE SSD AUTOMATIC SOLUTION FORM CLEANING BLACK LIKE SSD AUTOMATIC SOLUTION FORM CLEANING BLACK DOLLARS CURRENCIES. I hereby use this media to inform you, that our company can clean out black deface currency, (stained money) bank notes, We have all kinds of chemicals used for cleaning of black money or stained money in currencies such as U.S Dollar, Euro, Pound, and all local currencies, even if your defaced note is 25 years old, WE SALE CHEMICALS LIKE TOURMALINE, S.S.D. Chemical / Solution , CASTRO X OXIDE, A4. AND MANY Like ACTIVATION POWDER & SSD SOLUTION FOR CLEANING BLACK MONEY Chemical and Allied product incorporated is a major manufacturer of industrial and pharmaceutical products with key specialization in the production of S.S.D Automatic solution used in the cleaning of black money,defaced money and stained bank notes with anti breeze quality.OTHERS FOR DAMAGED NOTES, BILLS LIKE USD,EURO, POUNDS, TRANSFERRING COLORS FROM USE NOTE TO NEW WHITE BILLS,AND BLACK NOTES ,WE WORK ON COMMISSION WE ALSO OFFER MACHINES TO DO THE BIG CLEANINGS, AND WE DO DELIVERY OF PRODUCTS TO BUYERS DESTINATIONS AFTER A CONSULTATION FEE. DEPENDING ON DIFFERENT CASES. FOR MORE INFORMATION PLEASE DO CONTACT US IN OUR DIFFERENT OFFICES.SPAIN, INDIA, CHINA, THAILAND, CAMBODIA. ENGLAND, SWEDEN, MALAYSIA.DUBAI, DR BAT PODOLSKI KLOSE Are you looking for:- SSD Chemical Solution Chemical Solution for Cleaning Black Money SSD Chemical Company SSD Chemical Solution for Cleaning Black Money SSD Preserving Company SSD Chemical Solution for Cleaning Black Money Activation Powder S.S.D. Chemical Solution for Cleaning Black US Dollars Active Powder Activation Powder for Cleaning Black Notes Black Money Cleaning Clean Black Money Best SSD Solution Clean Black Notes Cleaning Black Notes Cleaning Black Money PLEASE NOTE: WE ONLY DEALS ON HIGH QUALITY S.S.D. CHEMICALS SOLUTION FOR CLEANING BLACK MONEY We are manufacturer and seller of all sort of chemicals like SUPER AUTOMATIC SSD SOLUTION Z.W.V.8 MODEL ACTIVATION POWDER AND REACTIVATION POWDER, ANTI AIR POWDER,MERCURY POWDER,AUTOMATED MONEY DEVELOPER MACHINES CONGEAL CHEMICAL MELTING EQUIPMENTS, TEMPERATURE RE CONTROLLERS AND AUTOMATIC CLEANING CALL OR WHATSAPP DR MARK : +27717507286 EMAIL : drmark396@gmail.com
  • Topics

×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock