Package l2p.gameserver.model

Examples of l2p.gameserver.model.FakePc


        if (_cha instanceof L2DecoyInstance) {
            writeImpl_Decoy();
            return;
        }

        FakePc fpc = FakePcsTable.getInstance().getFakePc(_cha.getNpcId());
        if (fpc != null) {
            writeC(0x31);
            // richtige Packetreihenfolge für Epilogue CT2.4:
            // dddddsdddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddffffdddsdddddccccccchcdchdddccdcccddddddddddddddddd
            writeD(_loc.x);
View Full Code Here


        try {
            con = L2DatabaseFactory.getInstance().getConnection();
            statement = con.prepareStatement("SELECT * FROM `fake_pcs`");
            rs = statement.executeQuery();
            FakePc fpc = null;
            /**
             * Anzahl der "Fake Pc"-Einträgen
             */
            int count = 0;
            while (rs.next()) {

                fpc = new FakePc();
                int npcId = rs.getInt("npc_id");
                /**
                 * NPC Info
                 */
                fpc.name = rs.getString("name");
View Full Code Here

TOP

Related Classes of l2p.gameserver.model.FakePc

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.