123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- /*
- * Copyright (C) 2004-2015 L2J Server
- *
- * This file is part of L2J Server.
- *
- * L2J Server 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 3 of the License, or
- * (at your option) any later version.
- *
- * L2J Server 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, see <http://www.gnu.org/licenses/>.
- */
- package com.l2jserver.gameserver.network.serverpackets;
- /**
- * Special event info packet.
- * @author Kerberos
- * @author mrTJO
- */
- public class ExBrBroadcastEventState extends L2GameServerPacket
- {
- private final int _eventId;
- private final int _eventState;
- private int _param0;
- private int _param1;
- private int _param2;
- private int _param3;
- private int _param4;
- private String _param5;
- private String _param6;
-
- public static final int APRIL_FOOLS = 20090401;
- public static final int EVAS_INFERNO = 20090801; // event state (0 - hide, 1 - show), day (1-14), percent (0-100)
- public static final int HALLOWEEN_EVENT = 20091031; // event state (0 - hide, 1 - show)
- public static final int RAISING_RUDOLPH = 20091225; // event state (0 - hide, 1 - show)
- public static final int LOVERS_JUBILEE = 20100214; // event state (0 - hide, 1 - show)
-
- public ExBrBroadcastEventState(int eventId, int eventState)
- {
- _eventId = eventId;
- _eventState = eventState;
- }
-
- public ExBrBroadcastEventState(int eventId, int eventState, int param0, int param1, int param2, int param3, int param4, String param5, String param6)
- {
- _eventId = eventId;
- _eventState = eventState;
- _param0 = param0;
- _param1 = param1;
- _param2 = param2;
- _param3 = param3;
- _param4 = param4;
- _param5 = param5;
- _param6 = param6;
- }
-
- @Override
- protected final void writeImpl()
- {
- writeC(0xFE);
- writeH(0xBC);
- writeD(_eventId);
- writeD(_eventState);
- writeD(_param0);
- writeD(_param1);
- writeD(_param2);
- writeD(_param3);
- writeD(_param4);
- writeS(_param5);
- writeS(_param6);
- }
- }
|