Page 1 of 1

L2j C5 Raid Boss Map

Posted: Tue Oct 29, 2013 6:47 am
by Heroic
Good Morning all!

Log: 2013.10.29 07:40:41,812 INFO 53 net.sf.l2j.gameserver.clientpackets.RequestGetBossRecord C5: RequestGetBossRecord: d: 0


Image: Image


What can I do to avoid this type of error message on the log but work in Raid Map

Code: Select all

/* * 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.clientpackets; /** * Format: (ch) d * @author  -Wooden- */public class RequestGetBossRecord extends L2GameClientPacket{    private static final String _C__D0_18_REQUESTGETBOSSRECORD = "[C] D0:18 RequestGetBossRecord";    private int _bossId;     @Override    protected void readImpl()    {        _bossId = readD();    }        @Override    protected void runImpl()    {        // TODO        System.out.println("C5: RequestGetBossRecord: d: "+_bossId);    }        @Override    public String getType()    {        return _C__D0_18_REQUESTGETBOSSRECORD;    }}
This is RequestGetBossRecord.java

L2j C5 Raid Boss Map

Posted: Tue Oct 29, 2013 8:13 am
by Heroic
Good Morning all!

Log: 2013.10.29 07:40:41,812 INFO 53 net.sf.l2j.gameserver.clientpackets.RequestGetBossRecord C5: RequestGetBossRecord: d: 0


Image: Image


What can I do to avoid this type of error message on the log but work in Raid Map

Code: Select all

/* * 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.clientpackets; /** * Format: (ch) d * @author  -Wooden- */public class RequestGetBossRecord extends L2GameClientPacket{    private static final String _C__D0_18_REQUESTGETBOSSRECORD = "[C] D0:18 RequestGetBossRecord";    private int _bossId;     @Override    protected void readImpl()    {        _bossId = readD();    }        @Override    protected void runImpl()    {        // TODO        System.out.println("C5: RequestGetBossRecord: d: "+_bossId);    }        @Override    public String getType()    {        return _C__D0_18_REQUESTGETBOSSRECORD;    }}
This is RequestGetBossRecord.java

Re: L2j C5 Raid Boss Map

Posted: Tue Oct 29, 2013 3:17 pm
by Zoey76
Topics merged, not a contribution.

Please do not double post.