Package net.citizensnpcs.npcdata

Examples of net.citizensnpcs.npcdata.ItemData


        for (String s : current.split(",")) {
            if (!s.contains(":")) {
                s += ":0";
            }
            String[] parts = s.split(":");
            items.add(new ItemData(Integer.parseInt(parts[0]), Short.parseShort(parts[1])));
        }
        return items;
    }
View Full Code Here

TOP

Related Classes of net.citizensnpcs.npcdata.ItemData

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.