L2j C5 Raid Boss Map

Find the proper support area, Saga-Version.
Forum rules
READ NOW: L2j Forums Rules of Conduct
Post Reply
Heroic
Posts: 10
Joined: Sun Jul 21, 2013 2:09 am

L2j C5 Raid Boss Map

Post 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
Heroic
Posts: 10
Joined: Sun Jul 21, 2013 2:09 am

L2j C5 Raid Boss Map

Post 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
User avatar
Zoey76
L2j Inner Circle
L2j Inner Circle
Posts: 7005
Joined: Tue Aug 11, 2009 3:36 am

Re: L2j C5 Raid Boss Map

Post by Zoey76 »

Topics merged, not a contribution.

Please do not double post.
Powered by Eclipse 4.30 🌌 | Eclipse Temurin 21 ☕ | MariaDB 11.2.2 🗃️ | L2J Server 2.6.3.0 - High Five 🚀

🔗 Join our Discord! 🎮💬
Post Reply