Package l2p.gameserver.tables

Examples of l2p.gameserver.tables.ArmorSetsTable


        _itemTable = ItemTable.getInstance();
        if (!_itemTable.isInitialized()) {
            _log.severe("Could not find the >Items files. Please Check Your Data.");
            throw new Exception("Could not initialize the item table");
        }
        ArmorSetsTable _armorSetsTable = ArmorSetsTable.getInstance();
        if (!_armorSetsTable.isInitialized()) {
            _log.severe("Could not find the ArmorSets files. Please Check Your Data.");
            throw new Exception("Could not initialize the armorSets table");
        }
        events = new Events();
        TradeController.getInstance();
View Full Code Here

TOP

Related Classes of l2p.gameserver.tables.ArmorSetsTable

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.