Jump to content
  • 0

L2J C5 Raid Boss Map


Heroic9614

Question

Good Morning all!

 

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

 

 

Image: Shot00000_www.kepfeltoltes.hu_.jpg

 

 

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

 

 



/*
 * 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

Link to comment
Share on other sites

7 answers to this question

Recommended Posts

  • 0

You can take aCis free rev (added since rev 72) or latest L2J to find the code.

 

You have to add RaidBossPointsManager, the associated SQL, and don't forget to add method uses aswell from that class (in the packet you talk about for exemple, but there are more locations like a global task).

Edited by Tryskell
Link to comment
Share on other sites

  • 0

? What do you want to do? Remove the log from the console? -> remove this line  System.out.println("C5: RequestGetBossRecord: d: "+_bossId);

Edited by ^Wyatt
Link to comment
Share on other sites

  • 0

l2frozen go pack because I looked but I do not want to use now are trying to copy

Could you write better, please? I can't understand a single word of what are you saying about l2jfrozen, now.

Or someone translate it, coz I need a decrypt program to understand that.

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.


×
×
  • Create New...