Jump to content

[Share] .stat Voice Command - Info about target


Vago

Recommended Posts

As far as vent deleted his .stat voice command I will share mine...

 

Create a new file in net.sf.l2j.gameserver.handler.voicedcommandhandlers and call it stat.java

 

Open and insert this code :

 

/*

/*

* This program is free software; you can redistribute it and/or modify

* it under the terms of the GNU General Public License as published by

* the Free Software Foundation; either version 2, or (at your option)

* any later version.

*

* This program is distributed in the hope that it will be useful,

* but WITHOUT ANY WARRANTY; without even the implied warranty of

* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the

* GNU General Public License for more details.

*

* You should have received a copy of the GNU General Public License

* along with this program; if not, write to the Free Software

* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA

* 02111-1307, USA.

*

* http://www.gnu.org/copyleft/gpl.html

*/

package net.sf.l2j.gameserver.handler.voicedcommandhandlers;

 

import net.sf.l2j.gameserver.handler.IVoicedCommandHandler;

import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance;

 

 

/**

*

*

*/

public class Stat implements IVoicedCommandHandler

{

    private static final String[] VOICED_COMMANDS = { "stat" };

 

    public boolean useVoicedCommand(String command, L2PcInstance activeChar, String target)

    {   

        if (command.equalsIgnoreCase("stat"))

        {

            if (activeChar.getTarget()==null)

            {

                activeChar.sendMessage("You have no one targeted.");

                return false;

            }

            if (!(activeChar.getTarget() instanceof L2PcInstance))

            {

                activeChar.sendMessage("You can only get the info of a player.");

 

                return false;

            }

           

            L2PcInstance targetp = (L2PcInstance)activeChar.getTarget();

 

 

           

        activeChar.sendMessage("========="+ targetp.getName() +"=========");

            activeChar.sendMessage("Level: " + targetp.getLevel());

            if (targetp.getClan() != null)

            {

            activeChar.sendMessage("Clan: " + targetp.getClan().getName());

            activeChar.sendMessage("Alliance: " + targetp.getClan().getAllyName());

            }

            else

            {

            activeChar.sendMessage("Alliance: None");

            activeChar.sendMessage("Clan: None");

            }

           

           

           

           

           

           

           activeChar.sendMessage("Adena: " + targetp.getAdena());

           

           

           

        if(activeChar.getInventory().getItemByItemId(6393) == null)

    {

    activeChar.sendMessage("Medals : 0");

    }

        else

        {

        activeChar.sendMessage("Medals : " + targetp.getInventory().getItemByItemId(6393).getCount());

        }

           

           

        if(activeChar.getInventory().getItemByItemId(3470) == null)

    {

    activeChar.sendMessage("Gold Bars : 0");

    }

        else

        {

        activeChar.sendMessage("Gold Bars : " + targetp.getInventory().getItemByItemId(3470).getCount());

        }

                 

           

           

            activeChar.sendMessage("PvP Kills: " + targetp.getPvpKills());

            activeChar.sendMessage("PvP Flags: " + targetp.getPvpFlag());

            activeChar.sendMessage("PK Kills: " + targetp.getPkKills());

            activeChar.sendMessage("HP, CP, MP: " + targetp.getMaxHp() + ", " +targetp.getMaxCp() + ", " + targetp.getMaxMp());

            activeChar.sendMessage("Wep Enchant: " + targetp.getInventory().getPaperdollItem(9).getEnchantLevel());

            activeChar.sendMessage("=========<L2 Pure>=========");

 

        }

    return true;

    }

    public String[] getVoicedCommandList()

    {

        return VOICED_COMMANDS;

    }

 

}

       

       

 

Go to net.sf.l2j.gameserver and open GameServer.java

 

Add the fallowing 2 lines

import net.sf.l2j.gameserver.handler.voicedcommandhandlers.stats;

import net.sf.l2j.gameserver.handler.voicedcommandhandlers.stat;

import net.sf.l2j.gameserver.handler.voicedcommandhandlers.Wedding;

 

_voicedCommandHandler.registerVoicedCommandHandler(new stat());

_log.config("VoicedCommandHandler: Loaded .stat VoiceCommand handler.");

 

_log.config("VoicedCommandHandler: Loaded " + _voicedCommandHandler.size() + " handlers.");

 

 

 

 

 

===============================================

 

 

Other infos about the code :

 

           if (targetp.getInventory().getItemByItemId(6393).getCount() > 0)

This checks out how many 6393 items you got in your inventory. 6393 is the id of Glittering Medal. Feel free to change it. Same with GoldBars

 

 

 

            activeChar.sendMessage("PvP Kills: " + targetp.getPvpKills());

Your PvP count...

 

 

 

            activeChar.sendMessage("PvP Flags: " + targetp.getPvpFlag());

How many times you went purple.

 

==================================================================

 

It works by targeting a player or yourself and typing .stat in the main chat.

All credits to me ...

Report if there are any kind of bugs so I can fix right away...Didnt have so much time to test.

Link to comment
Share on other sites

cool , also u can make it as html for a better interface when you hit enter after typing .stat ! good job anyway

Link to comment
Share on other sites

i tryed to fix it on my own and still get this eror:

http://www.failai.in/P/1224061903_eror4.JPG

my gameserver.java:

 

/*

* This program is free software; you can redistribute it and/or modify

* it under the terms of the GNU General Public License as published by

* the Free Software Foundation; either version 2, or (at your option)

* any later version.

*

* This program is distributed in the hope that it will be useful,

* but WITHOUT ANY WARRANTY; without even the implied warranty of

* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the

* GNU General Public License for more details.

*

* You should have received a copy of the GNU General Public License

* along with this program; if not, write to the Free Software

* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA

* 02111-1307, USA.

*

* http://www.gnu.org/copyleft/gpl.html

*/

package net.sf.l2j.gameserver;

 

import java.net.InetAddress;

import java.util.Calendar;

import net.sf.l2j.Config;

import net.sf.l2j.L2DatabaseFactory;

import net.sf.l2j.gameserver.admin.AdminSrv;

import net.sf.l2j.gameserver.boat.service.BoatService;

import net.sf.l2j.gameserver.cache.CrestCache;

import net.sf.l2j.gameserver.cache.HtmCache;

import net.sf.l2j.gameserver.datatables.ArmorSetsTable;

import net.sf.l2j.gameserver.datatables.AugmentationData;

import net.sf.l2j.gameserver.datatables.BuffTemplateTable;

import net.sf.l2j.gameserver.datatables.CharTemplateTable;

import net.sf.l2j.gameserver.datatables.ClanTable;

import net.sf.l2j.gameserver.datatables.DoorTable;

import net.sf.l2j.gameserver.datatables.EventDroplist;

import net.sf.l2j.gameserver.datatables.FishTable;

import net.sf.l2j.gameserver.datatables.GmListTable;

import net.sf.l2j.gameserver.datatables.HennaTable;

import net.sf.l2j.gameserver.datatables.HennaTreeTable;

import net.sf.l2j.gameserver.datatables.HeroSkillTable;

import net.sf.l2j.gameserver.datatables.ItemTable;

import net.sf.l2j.gameserver.datatables.LevelUpData;

import net.sf.l2j.gameserver.datatables.NobleSkillTable;

import net.sf.l2j.gameserver.datatables.NpcBufferSkillIdsTable;

import net.sf.l2j.gameserver.datatables.NpcTable;

import net.sf.l2j.gameserver.datatables.NpcWalkerRoutesTable;

import net.sf.l2j.gameserver.datatables.PetDataTable;

import net.sf.l2j.gameserver.datatables.SkillSpellbookTable;

import net.sf.l2j.gameserver.datatables.SkillTable;

import net.sf.l2j.gameserver.datatables.SkillTreeTable;

import net.sf.l2j.gameserver.datatables.SpawnTable;

import net.sf.l2j.gameserver.datatables.StaticObjects;

import net.sf.l2j.gameserver.datatables.SummonItemsData;

import net.sf.l2j.gameserver.datatables.TeleportLocationTable;

import net.sf.l2j.gameserver.datatables.TradeListTable;

import net.sf.l2j.gameserver.geoeditorcon.GeoEditorListener;

import net.sf.l2j.gameserver.handler.AdminCommandHandler;

import net.sf.l2j.gameserver.handler.ChatHandler;

import net.sf.l2j.gameserver.handler.ItemHandler;

import net.sf.l2j.gameserver.handler.SkillHandler;

import net.sf.l2j.gameserver.handler.UserCommandHandler;

import net.sf.l2j.gameserver.handler.VoicedCommandHandler;

import net.sf.l2j.gameserver.handler.voicedcommandhandlers.Stat;

import net.sf.l2j.gameserver.idfactory.IdFactory;

import net.sf.l2j.gameserver.instancemanager.FrintezzaManager;

import net.sf.l2j.gameserver.instancemanager.AntharasManager;

import net.sf.l2j.gameserver.instancemanager.AuctionManager;

import net.sf.l2j.gameserver.instancemanager.BaiumManager;

import net.sf.l2j.gameserver.instancemanager.CastleManager;

import net.sf.l2j.gameserver.instancemanager.CastleManorManager;

import net.sf.l2j.gameserver.instancemanager.ClanHallManager;

import net.sf.l2j.gameserver.instancemanager.CoupleManager;

import net.sf.l2j.gameserver.instancemanager.CrownManager;

import net.sf.l2j.gameserver.instancemanager.CursedWeaponsManager;

import net.sf.l2j.gameserver.instancemanager.DayNightSpawnManager;

import net.sf.l2j.gameserver.instancemanager.DimensionalRiftManager;

import net.sf.l2j.gameserver.instancemanager.FactionManager;

import net.sf.l2j.gameserver.instancemanager.FactionQuestManager;

import net.sf.l2j.gameserver.instancemanager.FourSepulchersManager;

import net.sf.l2j.gameserver.instancemanager.IrcManager;

import net.sf.l2j.gameserver.instancemanager.ItemsOnGroundManager;

import net.sf.l2j.gameserver.instancemanager.MapRegionManager;

import net.sf.l2j.gameserver.instancemanager.MercTicketManager;

import net.sf.l2j.gameserver.instancemanager.PetitionManager;

import net.sf.l2j.gameserver.instancemanager.QuestManager;

import net.sf.l2j.gameserver.instancemanager.RaidBossSpawnManager;

import net.sf.l2j.gameserver.instancemanager.RaidPointsManager;

import net.sf.l2j.gameserver.instancemanager.SailrenManager;

import net.sf.l2j.gameserver.instancemanager.SiegeManager;

import net.sf.l2j.gameserver.instancemanager.TownManager;

import net.sf.l2j.gameserver.instancemanager.ValakasManager;

import net.sf.l2j.gameserver.instancemanager.VanHalterManager;

import net.sf.l2j.gameserver.instancemanager.ZoneManager;

import net.sf.l2j.gameserver.model.AutoChatHandler;

import net.sf.l2j.gameserver.model.AutoSpawnHandler;

import net.sf.l2j.gameserver.model.L2Manor;

import net.sf.l2j.gameserver.model.L2World;

import net.sf.l2j.gameserver.model.entity.Hero;

import net.sf.l2j.gameserver.network.L2GameClient;

import net.sf.l2j.gameserver.network.L2GamePacketHandler;

import net.sf.l2j.gameserver.pathfinding.geonodes.GeoPathFinding;

import net.sf.l2j.gameserver.registry.IServiceRegistry;

import net.sf.l2j.gameserver.script.faenor.FaenorScriptEngine;

import net.sf.l2j.gameserver.skills.SkillsEngine;

import net.sf.l2j.gameserver.taskmanager.TaskManager;

import net.sf.l2j.gameserver.util.DynamicExtension;

import net.sf.l2j.gameserver.util.FloodProtector;

import net.sf.l2j.gameserver.util.PathCreator;

import net.sf.l2j.gameserver.util.Util;

import net.sf.l2j.status.Status;

import net.sf.l2j.tools.L2Registry;

import net.sf.l2j.tools.versionning.model.Version;

import net.sf.l2j.tools.versionning.service.VersionningService;

import net.sf.l2j.util.RandomIntGenerator;

import org.apache.commons.logging.Log;

import org.apache.commons.logging.LogFactory;

import com.l2jserver.mmocore.network.SelectorServerConfig;

import com.l2jserver.mmocore.network.SelectorThread;

 

public class GameServer

{

    private static final Log _log = LogFactory.getLog(GameServer.class.getName());

    public static GameServer gameServer;

    private final IdFactory _idFactory;

    private final Shutdown _shutdownHandler;

    private final SelectorThread<L2GameClient> _selectorThread;

    private static Status _statusServer;

    public static final Calendar dateTimeServerStarted = Calendar.getInstance();

    private LoginServerThread _loginThread;

   

    public GameServer() throws Throwable

    {

        Config.load();

        Util.printSection("Database");

        L2DatabaseFactory.initInstance();

        Util.printSection("Preparations");

        new PathCreator();

        Util.printSection("World");

        RandomIntGenerator.getInstance();

        L2World.getInstance();

        Announcements.getInstance();

        _idFactory = IdFactory.getInstance();

        if (!_idFactory.isInitialized())

        {

            _log.fatal("Could not read object IDs from DB. Please Check Your Data.");

            throw new Exception("Could not initialize the ID factory");

        }

        _log.info("IdFactory: Free ObjectID's remaining: " + IdFactory.getInstance().size());

        ThreadPoolManager.getInstance();

        if (Config.GEODATA)

        {

            GeoData.getInstance();

            if ( _log.isDebugEnabled())_log.debug("GeoData initialized");

           

            if (Config.GEO_PATH_FINDING)

            {

                GeoPathFinding.getInstance();

                if ( _log.isDebugEnabled())_log.debug("GeoPathFinding initialized");

            }

        }

        MapRegionManager.getInstance();

        ZoneManager.getInstance();

        ClanHallManager.getInstance();

        DoorTable.getInstance();

        StaticObjects.getInstance();

        GameTimeController.getInstance();

        BoatService boatService =(BoatService)L2Registry.getBean(IServiceRegistry.BOAT);

        boatService.loadBoatDatas();

        TeleportLocationTable.getInstance();

        Util.printSection("Skills");

        SkillTreeTable.getInstance();

        SkillsEngine.getInstance();

        SkillTable.getInstance();

        NobleSkillTable.getInstance();

        _log.info("NobleSkills initialized");

        HeroSkillTable.getInstance();

NpcBufferSkillIdsTable.getInstance();

        _log.info("HeroSkills initialized");

        Util.printSection("Items");

        ItemTable.getInstance();

        ArmorSetsTable.getInstance();

        AugmentationData.getInstance();

        if(Config.SP_BOOK_NEEDED)

            SkillSpellbookTable.getInstance();

        SummonItemsData.getInstance();

        if(Config.ALLOW_FISHING)

            FishTable.getInstance();

        ItemsOnGroundManager.getInstance();

        if (Config.AUTODESTROY_ITEM_AFTER > 0 || Config.HERB_AUTO_DESTROY_TIME > 0)

            ItemsAutoDestroy.getInstance();

        Util.printSection("Characters");

        CharTemplateTable.getInstance();

        LevelUpData.getInstance();

        HennaTable.getInstance();

        HennaTreeTable.getInstance();

        if(Config.ALLOW_WEDDING)

            CoupleManager.getInstance();

        CursedWeaponsManager.getInstance();

        ClanTable.getInstance();

        CrestCache.getInstance();

        Hero.getInstance();

        Util.printSection("NPCs");

        NpcTable.getInstance();

        HtmCache.getInstance();

        BuffTemplateTable.getInstance();

        if(Config.ALLOW_NPC_WALKERS)

        NpcWalkerRoutesTable.getInstance().load();

        PetDataTable.getInstance().loadPetsData();

        Util.printSection("Spawns");

        SpawnTable.getInstance();

DayNightSpawnManager.getInstance().notifyChangeMode();

        RaidBossSpawnManager.getInstance();

        RaidPointsManager.getInstance();

        AutoChatHandler.getInstance();

        AutoSpawnHandler.getInstance();

        Util.printSection("Castles and Towns");

        CastleManager.getInstance();

        CrownManager.getInstance();

        MercTicketManager.getInstance();

        TownManager.getInstance();

        SiegeManager.getInstance();

        Util.printSection("Economy");

        TradeListTable.getInstance();

        CastleManorManager.getInstance();

        L2Manor.getInstance();

        AuctionManager.getInstance();

        Util.printSection("SevenSigns");

        SevenSigns.getInstance();

        SevenSignsFestival.getInstance();

        Util.printSection("Olympiad");

        Olympiad.getInstance();

        Util.printSection("DimensionalRift");

        DimensionalRiftManager.getInstance();

        Util.printSection("FourSepulchers");

        FourSepulchersManager.getInstance().init();

        Util.printSection("Bosses");

        SailrenManager.getInstance().init();

        FrintezzaManager.getInstance().init();

        AntharasManager.getInstance().init();

        BaiumManager.getInstance().init();

        ValakasManager.getInstance().init();

        VanHalterManager.getInstance().init();

        Util.printSection("Quests");

        QuestManager.getInstance();

        Util.printSection("Events/ScriptEngine");

        EventDroplist.getInstance();

        FaenorScriptEngine.getInstance();

        Util.printSection("Extensions");

        if(Config.FACTION_ENABLED)

        {

            Util.printSection("Factions");

            FactionManager.getInstance();

            FactionQuestManager.getInstance();

        }

        try {

            DynamicExtension.getInstance();

        } catch (Exception ex) {

            _log.warn( "DynamicExtension could not be loaded and initialized", ex);

        }

       

 

        Util.printSection("Handlers");

        ItemHandler.getInstance();

        SkillHandler.getInstance();

        AdminCommandHandler.getInstance();

        UserCommandHandler.getInstance();

        VoicedCommandHandler.getInstance();

        _VoicedCommandHandler.registervoicedcommandhandlers(new Stat()); 

        ChatHandler.getInstance();

 

        Util.printSection("Misc");

        TaskManager.getInstance();

        GmListTable.getInstance();

        PetitionManager.getInstance();

        if(Config.ONLINE_PLAYERS_ANNOUNCE_INTERVAL > 0)

            OnlinePlayers.getInstance();

        FloodProtector.getInstance();

       

        _shutdownHandler = Shutdown.getInstance();

        Runtime.getRuntime().addShutdownHook(_shutdownHandler);

 

        System.gc();

 

        Util.printSection("ServerThreads");

        _loginThread = LoginServerThread.getInstance();

        _loginThread.start();

       

        SelectorServerConfig ssc = new SelectorServerConfig(InetAddress.getByName(Config.GAMESERVER_HOSTNAME), Config.PORT_GAME);

        L2GamePacketHandler gph = new L2GamePacketHandler();

 

        _selectorThread = new SelectorThread<L2GameClient>(ssc, gph, gph, gph);

        _selectorThread.openServerSocket();

        _selectorThread.start();

 

        if(Config.IRC_ENABLED)

            IrcManager.getInstance().getConnection().sendChan("GameServer Started");

        if ( Config.IS_TELNET_ENABLED )

        {

            _statusServer = new Status();

            _statusServer.start();

        }

        else

            _log.info("Telnet server is currently disabled.");

        if ( Config.JMX_TCP_PORT != -1 ||  Config.JMX_HTTP_PORT != -1 )

            AdminSrv.getInstance().registerMbeans();

 

        if (Config.ACCEPT_GEOEDITOR_CONN)

            GeoEditorListener.getInstance();

 

        Util.printSection("l2jfree");

        _log.info("Revision: "+getVersionNumber());

        _log.info("Build date: "+getBuildDate());

        _log.info("Compiler version: "+getBuildJdk());

        _log.info("Maximum Numbers of Connected Players: " + Config.MAXIMUM_ONLINE_USERS);

        printMemUsage();

       

        Util.printSection("GameServerLog");

        if(Config.ENABLE_JYTHON_SHELL)

        {

            Util.printSection("JythonShell");

            Util.JythonShell();

        }

    }

   

    public static void printMemUsage()

    {

        Util.printSection("Memory");

        for (String line : getMemUsage())

                _log.info(line);

    }

   

    public static String[] getMemUsage()

    {

        double maxMem = ((long)(Runtime.getRuntime().maxMemory() / 1024)); // maxMemory is the upper limit the jvm can use

        double allocatedMem = ((long)(Runtime.getRuntime().totalMemory() / 1024)); //totalMemory the size of the current allocation pool

        double nonAllocatedMem = maxMem - allocatedMem; //non allocated memory till jvm limit

        double cachedMem = ((long)(Runtime.getRuntime().freeMemory() / 1024)); // freeMemory the unused memory in the allocation pool

        double usedMem = allocatedMem - cachedMem; // really used memory

        double useableMem = maxMem - usedMem; //allocated, but non-used and non-allocated memory

        return new String[] {

                " - AllowedMemory: " +((int)(maxMem))+" KB",

                "Allocated: "+((int)(allocatedMem))+" KB ("+(((double)(Math.round(allocatedMem/maxMem*1000000)))/10000)+"%)",

                "Non-Allocated: "+((int)(nonAllocatedMem))+" KB ("+(((double)(Math.round(nonAllocatedMem/maxMem*1000000)))/10000)+"%)",

                "- AllocatedMemory: "+((int)(allocatedMem))+" KB",

                "Used: "+((int)(usedMem))+" KB ("+(((double)(Math.round(usedMem/maxMem*1000000)))/10000)+"%)",

                "Unused (cached): "+((int)(cachedMem))+" KB ("+(((double)(Math.round(cachedMem/maxMem*1000000)))/10000)+"%)",

                "- UseableMemory: "+((int)(useableMem))+" KB ("+(((double)(Math.round(useableMem/maxMem*1000000)))/10000)+"%)"

        };

    }

       

    /**

    * @return the revision number

    */

    public static String getVersionNumber()

    {

        VersionningService versionningService = (VersionningService)L2Registry.getBean(IServiceRegistry.VERSIONNING);

        Version version = versionningService.getVersion();

        if ( version != null )

            return version.getRevisionNumber();

        return "-1";

    }

   

    public static String getBuildDate()

    {

            VersionningService versionningService = (VersionningService)L2Registry.getBean(IServiceRegistry.VERSIONNING);

            Version version = versionningService.getVersion();

            if ( version != null )

                    return version.getBuildDate();

            return "-1";

    }

   

    /**

    * @return the build jdk

    */

    public static String getBuildJdk()

    {

        VersionningService versionningService = (VersionningService)L2Registry.getBean(IServiceRegistry.VERSIONNING);

        Version version = versionningService.getVersion();

        if ( version != null )

            return version.getBuildJdk();

        return "-1";

    }   

 

    public SelectorThread<L2GameClient> getSelectorThread()

    {

        return _selectorThread;

    }

   

    public long getUsedMemoryMB()

    {

        return (Runtime.getRuntime().totalMemory() - Runtime.getRuntime().freeMemory())/1048576; // 1024 * 1024 = 1048576;

    }

   

    public static void main(String[] args) throws Throwable

    {

        System.setProperty("python.cachedir", "../cachedir");

        gameServer = new GameServer();

    }

}

 

 

 

 

Link to comment
Share on other sites

  • 1 month later...

guys can this work for l2jfree?

 

cause i made almost everything work

 

dunno how to add this     

 

      _voicedCommandHandler.registerVoicedCommandHandler(new stat()); 

      _log.config("VoicedCommandHandler: Loaded .stat VoiceCommand handler.");

     

      _log.config("VoicedCommandHandler: Loaded " + _voicedCommandHandler.size() + " handlers.");

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.



  • Posts

    • WTB Site Developer services.
    • @TZANEEN BUY UNIVERSAL SSD CHEMICAL SOLUTION  +27833928661 in South Africa, Gauteng, KwaZulu-Natal, Limpopo, Free State, Mpumalanga, North West, Western Cape, Eastern Cape, Northern Cape, Benoni, Boksburg, Brakpan, Carletonville, Germiston, Johannesburg, Krugersdorp, Mafikeng, Pretoria, Randburg, Randfontein, Roodepoort, Soweto, Springs, Vanderbijlpark, Vereeniging, Durban,  +27833928661Empangeni, Ladysmith, Newcastle, Pietermaritzburg, Pinetown, Ulundi, Umlazi, Bethlehem, Bloemfontein, Jagersfontein, Kroonstad, Odendaalsrus, Parys, Phuthaditjhaba, Sasolburg, Virginia, Welkom, Giyani, Lebowakgomo, Musina, Phalaborwa, Polokwane, Seshego, Sibasa, Emalahleni, Nelspruit, Secunda, Standerton, Klerksdorp, Mahikeng, Mmabatho, Potchefstroom, Rustenburg, Bellville, Cape Town, Constantia, George, Hopefield, Oudtshoorn, Paarl, Simon’s Town, Stellenbosch, Swellendam, Worcester, Alice, Butterworth, East London, Graaff-Reinet, Grahamstown, King William’s Town, Mthatha, Port Elizabeth, Queenstown, Uitenhage, Zwelitsha. +27833928661 Call For Ssd Chemical Solution for Cleaning All Notes +27833928661. Please inform us immediately on Email: Kennroger77@gmail.com Or Call: +27833928661. https://Kennroger7.Blogspot.com/website https://Kennroger7.Blogspot.com/techniciankenn https://Kennroger7.blogspot.com/   We Clean all types of Currencies call  +27833928661 Ssd Solution Chemical for Cleaning Black Money Notes Call +27833928661 Ssd Solution Used to Clean all type of Blackened +27833928661, Tainted and Defaced Bank Notes  +27833928661. We Sell Ssd Chemical Solution Used to Clean All type of Black Money 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. Automatic Ssd Solution for Sale +27833928661 Rustenburg, Mafikeng, Polokwane Durban/east London, Pretoria, Johannesburg, Mpumalanga. Ssd chemical Solution for Sale in Johannesburg  +27833928661 in Zimbabwe, Mozambique, Angola, Namibia, Botswana, Lesotho and Swaziland Call and Buy Ssd Chemical Solution for Defaced Banknotes +27833928661 in Mozambique, South Africa, Lesotho, Swaziland, Namibia, Angola, Botswana, Mauritius, Zambia, Zimbabwe, Mauritania, Mauritius, Congo Call For 100% Pure Ssd Chemical Solution +27833928661 in Finland and USA.   Ssd Chemical Solution for all Defaced Bank Notes in Bloemfontein +27833928661 in Johannesburg, Cape town, Polokwane, Rustenburg, Kimberley, Durban, Pietermaritzburg, Klerksdorp, Mafikeng, Belgium, Honduras, Brazil, Argentina.  +27833928661 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 Call +27833928661. We also sale chemicals like tourmaline,  +27833928661 Ssd Chemical solution 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 it's full range is the best chemical in the market for cleaning anti breeze bank notes, defaced currency and marked notes. Others for damaged notes. +27833928661 Please inform us immediately on Email: Kennroger77@gmail.com or Call: +27833928661. https://Kennroger7.Blogspot.com/website https://Kennroger7.Blogspot.com/techniciankenn https://Kennroger7.blogspot.com/
    • @ (3 IN 1, WORKING 100%) SSD CHEMICAL SOLUTIONS +27833928661 AND ACTIVATION POWDER FOR CLEANING OF BLACK NOTES @BUY SSD CHEMICAL SOLUTIONS ON GOOD PRICE +27833928661, +27833928661 @ CLEANING BLACK NOTES WITH SSD CHEMICALUTUTIONS @BEST SUPPLIERS OF SSD CHEMICAL SOLUTIONS +27833928661 IN Qatar, New York, Limpopo, London, Venezuela, Chile, Sweden, Denmark, Rwanda, Oman ,, Dubai, Poland New Castle, Namibia, Botswana, Mozambique, South Africa, Limpo¬po, JORDAN, Turkey, Belgium, Saudi Arabia, Australia, Malaysia, to Johannesbu Zambia, Swaziland, Madagascar, Zimbabwe, Lesotho, Uganda, rg, Lebanon, Berhrain USA, California, Dallas, England, German, Spain, Jamaica, Brazil, Germany, Austria, Vancouver, Denmark, Hong Kong, China ,, Pretoria, Durban, Australia, Wales, France, Cairo, Namibia, Botswana, China, Norway, Sweden, Capet own, Tanzania, Northern Cape, Canada ,, Soshanguve, Pietermaritzburg Pinetown, Vaal, Polokwane Pretoria Randburg Roodepoort Rustenburg Sebokeng Soweto Springbok Stellenbosch Thohoyandou Umlazi Upington Vanderbijlpark Vereeniging Welkom Tembisa Kempton Park Port Elizabeth Bellville Boksburg Benoni Bloemfontein Cape Town Centurion Durban East London George Empangeni Katlehong Germiston Johannesburg Port Elizabeth Khayelitsha Kimberley Klerksdorp Mamelodi Mitchells Plain Mthatha Nelspruit Newcastle Witbank Eastern cape, Free State Gauteng KwaZulu-Natal Limpopo Mpumalanga Do you have black currency in form of Dollars, Pounds or Euros or any other currency? I have the most powerful and Universal cleaning chemical you are looking for. I sell SSD automatic solution, Vetrol paste 0.2A and so many others. I also have a variety of Powders needed when doing the large cleanings such as Activation powder. We specialize in cleaning all types of defaced notes, black notes, anti-breeze bank notes, stamp coated and stained currency. We melt and re-activate frozen chemicals and offer 100% cleaning for bills like dollar, euro, pounds, RANDS and transferring of colors from used note to new white bills. We offer machines for large cleaning and also deliver products to any location desired by buyers. Laboratory staff are available to demonstrate to clients how the work is done. Are you looking for: — call+27833928661 SSD Chemical Solution Chemical Solution for Cleaning Black Money call+27833928661 SSD Chemical Company SSD Chemical Solution for Cleaning Black Money SSD Preserving Company SSD Chemical Solution for Cleaning Black Money Activation Powder SSD Chemical Solution for Cleaning Black notes 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 DEAL IN HIGH QUALITY SSD CHEMICALS SOLUTION FOR CLEANING BLACK MONEY We are manufacturers and sellers of all sort of chemicals like SUPER AUTOMATIC SSD SOLUTION ZWV8 MODEL ACTIVATION POWDER AND REACTIVATION POWDER, ANTI AIR POWDER, MERCURY POWDER, AUTOMATED MONEY DEVELOPER MACHINES CONGEAL CHEMICAL MELTING EQUIPMENT, TEMPERATURE CONTROLLERS AND AUTOMATIC CLEANING MACHINE. WE ARE SELLING SSD CHEMICAL SOLUTION FOR CLEANING BLACK MONEY AND POWDER CALL+27833928661 purchase Best SSD Solution Clean Black Notes Dollars WE ALSO SELL CHEMICALS LIKE SSD AUTOMATIC SOLUTION FORM CLEANING BLACK DOLLARS CURRENCIES We clean all black and green money and stamped money Infinity labs pty (since 2000) *: We can help you clean your money, (+27833928661) *, we supply a high quality of the ssd solution with machi * ne and it comes with a full package of instructions and accessories. It is the ultimate anti- * breeze solution used in cleaning defaced currency. It can be referred to as black dollar etc… *. or bank stained currency. PRODUCTS AVAILABLE: * SSD SOLUTION SSD Supreme Solution SSD universal solution SSD Tourmaline solution SSD SOLUTION PK 58 SSD Topix solution SSD Castro X Oxide solution D6 SSD universal Solution D7 SSD SOLUTION PK 58 SSD MECURY DIOSINE AUTOMATIC SOLUTION SSD NSERVATION, ACTIVATION AND RE-ACTIVATION, PARACIENT POWDER, VECTROL PASTE, ZUTA S4, CASTROX OXIDE AUTOMATED MONEY DEVELOPER MACHINES CONGEAL CHEMICAL MELTING EQUIPMENTS * TEMPERATURE CONTROLLERS Our agent will meet with you in any part of the world. CALL OR WATSUPP US @+27833928661 Email: Kennroger77@gmail.com
    • World’s Best Technician for Supplying Universal Ssd Chemical Solution in Limpopo,Sasolburg,Witbank,Standarton,Secunda,Middelburg,Vanderbijlpark,Johannesburg,Secunda,Cape Town,Burgersfort, Polokwane, Thohoyandou, phalaborwa, mokopane, bochum, +27833928661lebowakgomo, mankweng, Seshego, dendron, Giyani, Lephalale, musina,Alexandra +27833928661Johannesburg Lenasia Midrand Randburg+27833928661 Roodepoort Sandton Soweto Alberton Germiston Benoni Boksburg ,rakpan Daveyton,Duduza ,edenvale ,germiston Impumelelo Isando Katlehong Kempton Park KwaThema Nigel Reiger Park Springs Tembisa Thokoza Tsakane Vosloorus Wattville Atteridgaeville Centurion Hammanskraal Irene Mamelodi Pretoria Soshanguve Boipatong Bophelong Evaton Sebokeng Sharpeville, Vereeniging,Meyerton Heidelberg Ratanda Bronkhorstspruit Ekangala Kungwini Bronberg,Cullinan Refilwe,Zithobeni ,Carletonville,Khutsong Kagiso Kromdraai KrugersdorpMagaliesburg Muldersdrift Mohlaken,Randfontein Bekkersdal,testonaria Kimberley Upington Kuruman Sprinbok Kathu Ritchie Postmasburg,Bellville Bloemfontein.+27833928661 To purchase Best SSD Chemical Solution to Clean Black Notes Dollars.WE ALSO SALE +27833928661CHEMICALS 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 Dollars, 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, Contact Dr.Elvis+27833928661 OR Email Kennroger77@gmail.com for more Information…Chemical Solution in Limpopo,Sasolburg,Witbank,Standarton,Secunda,Middelburg,Vanderbijlpark,Johannesburg,Secunda,Cape Town,Burgersfort, Polokwane, Thohoyandou, phalaborwa, mokopane, bochum, lebowakgomo, mankweng, Seshego, dendron, Giyani, Lephalale, musina,Alexandra Johannesburg Lenasia Midrand Randburg Roodepoort Sandton Soweto Alberton Germiston Benoni Boksburg ,rakpan Daveyton,Duduza ,edenvale ,germiston Impumelelo Isando Katlehong Kempton Park KwaThema Nigel Reiger Park Springs Tembisa Thokoza Tsakane Vosloorus Wattville Atteridgaeville Centurion Hammanskraal Irene Mamelodi Pretoria Soshanguve Boipatong Bophelong Evaton Sebokeng Sharpeville, Vereeniging,Meyerton Heidelberg Ratanda Bronkhorstspruit Ekangala Kungwini Bronberg,Cullinan Refilwe,Zithobeni ,Carletonville,Khutsong Kagiso Kromdraai KrugersdorpMagaliesburg Muldersdrift Mohlaken,Randfontein Bekkersdal,testonaria Kimberley Upington Kuruman Sprinbok Kathu Ritchie Postmasburg,Bellville Bloemfontein. To purchase Best SSD Chemical Solution to Clean Black Notes Dollars.WE ALSO SALE CHEMICALS 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 Dollars, 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, Contact Dr.Elvis+27833928661 OR Email Kennroger77@gmail.com for more Information… in Limpopo,Sasolburg,Witbank,Standarton,Secunda,Middelburg,Vanderbijlpark,Johannesburg,Secunda,Cape Town,Burgersfort, Polokwane, Thohoyandou, phalaborwa, mokopane, bochum, lebowakgomo, mankweng, Seshego, dendron, Giyani, Lephalale, musina,Alexandra Johannesburg Lenasia Midrand Randburg Roodepoort Sandton Soweto Alberton Germiston Benoni Boksburg ,rakpan Daveyton,Duduza ,edenvale ,germiston Impumelelo Isando Katlehong Kempton Park KwaThema Nigel Reiger Park Springs Tembisa Thokoza Tsakane Vosloorus Wattville Atteridgaeville Centurion Hammanskraal Irene Mamelodi Pretoria Soshanguve Boipatong Bophelong Evaton Sebokeng Sharpeville, Vereeniging,Meyerton Heidelberg Ratanda Bronkhorstspruit Ekangala Kungwini Bronberg,Cullinan Refilwe,Zithobeni ,Carletonville,Khutsong Kagiso Kromdraai KrugersdorpMagaliesburg Muldersdrift Mohlaken,Randfontein +27833928661Bekkersdal,testonaria Kimberley Upington Kuruman Sprinbok Kathu Ritchie Postmasburg,Bellville Bloemfontein.+27833928661 To purchase Best SSD Chemical Solution to Clean Black Notes Dollars.WE ALSO SALE CHEMICALS 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, +27833928661(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 Dollars, Euro, Pound, and all local currencies, even if your defaced note is 25 years old.+27833928661 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,+27833928661 Contact Dr.Elvis +27833928661 OR Email Kennroger77@gmail.com for more Information…
    • Cleaning black money +27833928661 with ssd chemical solution  +27 833928661  vanderbijlpark- nairobi, East London Tembisa ,Cape Town Durban Johannesburg Soweto Pretoria Port Elizabeth Pietermaritzburg Benoni Vereeniging Bloemfontein Boksburg Welkom Newcastle Krugersdorp Diepsloot Botshabelo Brakpan Witbank Richards Bay Vanderbijlpark Centurion Uitenhage Roodepoort Paarl Springs Carletonville Klerksdorp Midrand Westonaria Middelburg Vryheid Orkney Kimberley eMbalenhle Nigel Mpumalanga Bhisho Randfontein DR MBONYE has powerful lottery spells to help you win the lottery jackpot and make you rich beyond your wildest dreams I have used lottery spells and won in my personal capacity.Money Spells to eradicat Change your life For information CONTACTWhatsapp +27 833928661 EMAIL: kennrogger77@gmail.com cleaning black money with ssd chemical solution in Uganda,South sudan,Kemya,South Africa,Dubai,UAE,Kuwait,Tanzanai +27 833928661 Our vision to be the leading premier high-value and high security chemicals producer in the world and offering our services to everyone who knocks at our door step. SSD CHEMICAL SOLUTIONS LTD is uniquely positioned to consistently provide high-value solutions and world-changing chemicals and services to our clients. +27 833928661 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 AS YOU CAN SEE BELOW. Anti-freezing Preparations and Prepared De-icing Fluids, SSD Solution. Vectrol paste, Tebi-Manetic solution, Defaced currency, Cleaning chemical. Darkened currency, Black coated notes, Cleaning black money, super automatic SSD solution, anti-breeze bank notes. please contact Linda for more information on +27 833928661
  • 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