无限天堂

标题: 看不到盟徽 如此解决???? [打印本页]

作者: 冲天炮    时间: 2012-5-25 17:14
标题: 看不到盟徽 如此解决????
License
* THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS  
* CREATIVE COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE").
* THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW.  
* ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR  
* COPYRIGHT LAW IS PROHIBITED.
*
* BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND  
* AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. TO THE EXTENT THIS LICENSE  
* MAY BE CONSIDERED TO BE A CONTRACT, THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED
* HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS.
*
*/
package l1j.server.server.serverpackets;

import java.io.BufferedInputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;

import l1j.server.server.Opcodes;

// Referenced classes of package l1j.server.server.serverpackets:
// ServerBasePacket

public class S_Emblem extends ServerBasePacket {
        private static final String S_EMBLEM = "[S] S_Emblem";

        public S_Emblem(int clanid) {
                BufferedInputStream bis = null;
                try {
                        String emblem_file = String.valueOf(clanid);
                        File file = new File("emblem/" + emblem_file);
                        if (file.exists()) {
                                int data = 0;
                                bis = new BufferedInputStream(new FileInputStream(file));
                                writeC(Opcodes.S_OPCODE_EMBLEM);
                                writeD(clanid);
                                while ((data = bis.read()) != -1) {
                                        writeP(data);
                                }
                                 writeC(0x00); // 3.5C 于盟徽封包末未知的值
                                 writeH(0x0000);
                        }
                }
                catch (Exception e) {}
                finally {
                        if (bis != null) {
                                try {
                                        bis.close();
                                }
                                catch (IOException ignore) {
                                        // ignore
                                }
                        }
                }
        }

        @Override
        public byte[] getContent() {
                return getBytes();
        }

        @Override
        public String getType() {
                return S_EMBLEM;
        }
}

作者: 妖精    时间: 2012-5-25 18:50
傻逼炮~~~~~~
作者: 甜咖啡    时间: 2012-5-25 19:20
不像C  不像VB,如果是,我才疏学浅!!!
作者: 红舞半支烟    时间: 2012-5-25 19:38
这个看不懂
作者: 马纳隔壁    时间: 2012-5-25 21:04
看得到所有盟标的路过。。。
作者: a53644704    时间: 2012-5-25 22:25
貌似我什么都看不懂
作者: 红舞半支烟    时间: 2012-5-26 10:08
我就看不到盟徽
作者: 破坏盔甲    时间: 2012-5-26 18:39
什么东西啊英文看不懂的路过




欢迎光临 无限天堂 (http://156.236.70.90/) Powered by Discuz! X2.5