/* This file is part of the ZeroFusion MapleStory Server Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc> Matthias Butz <matze@odinms.de> Jan Christian Meyer <vimes@odinms.de> ZeroFusion organized by "RMZero213" <RMZero213@hotmail.com> This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License version 3 as published by the Free Software Foundation. You may not use, modify or distribute this program under any other version of the GNU Affero General Public License. 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 Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ package server.events; public enum MapleEventType { Coconut(new int[]{109080000}), //just using one CokePlay(new int[]{109080010}), //just using one Fitness(new int[]{109040000, 109040001, 109040002, 109040003, 109040004}), OlaOla(new int[]{109030001, 109030002, 109030003}), OxQuiz(new int[]{109020001}), Survival(new int[]{809040000, 809040100}), Snowball(new int[]{109060000}); //just using one public int[] mapids; private MapleEventType(int[] mapids) { this.mapids = mapids; } public static MapleEventType getByString(final String splitted) { for (MapleEventType t : MapleEventType.values()) { if (t.name().equalsIgnoreCase(splitted)) { return t; } } return null; } }