|
@@ -18,6 +18,28 @@
|
|
*/
|
|
*/
|
|
package handlers;
|
|
package handlers;
|
|
|
|
|
|
|
|
+import java.lang.reflect.Method;
|
|
|
|
+import java.util.HashMap;
|
|
|
|
+import java.util.Map;
|
|
|
|
+import java.util.Map.Entry;
|
|
|
|
+import java.util.logging.Level;
|
|
|
|
+import java.util.logging.Logger;
|
|
|
|
+
|
|
|
|
+import com.l2jserver.Config;
|
|
|
|
+import com.l2jserver.gameserver.handler.ActionHandler;
|
|
|
|
+import com.l2jserver.gameserver.handler.ActionShiftHandler;
|
|
|
|
+import com.l2jserver.gameserver.handler.AdminCommandHandler;
|
|
|
|
+import com.l2jserver.gameserver.handler.BypassHandler;
|
|
|
|
+import com.l2jserver.gameserver.handler.ChatHandler;
|
|
|
|
+import com.l2jserver.gameserver.handler.CommunityBoardHandler;
|
|
|
|
+import com.l2jserver.gameserver.handler.IHandler;
|
|
|
|
+import com.l2jserver.gameserver.handler.ItemHandler;
|
|
|
|
+import com.l2jserver.gameserver.handler.PunishmentHandler;
|
|
|
|
+import com.l2jserver.gameserver.handler.TargetHandler;
|
|
|
|
+import com.l2jserver.gameserver.handler.TelnetHandler;
|
|
|
|
+import com.l2jserver.gameserver.handler.UserCommandHandler;
|
|
|
|
+import com.l2jserver.gameserver.handler.VoicedCommandHandler;
|
|
|
|
+
|
|
import handlers.actionhandlers.L2ArtefactInstanceAction;
|
|
import handlers.actionhandlers.L2ArtefactInstanceAction;
|
|
import handlers.actionhandlers.L2DecoyAction;
|
|
import handlers.actionhandlers.L2DecoyAction;
|
|
import handlers.actionhandlers.L2DoorInstanceAction;
|
|
import handlers.actionhandlers.L2DoorInstanceAction;
|
|
@@ -158,6 +180,7 @@ import handlers.communityboard.HomepageBoard;
|
|
import handlers.communityboard.MailBoard;
|
|
import handlers.communityboard.MailBoard;
|
|
import handlers.communityboard.MemoBoard;
|
|
import handlers.communityboard.MemoBoard;
|
|
import handlers.communityboard.RegionBoard;
|
|
import handlers.communityboard.RegionBoard;
|
|
|
|
+import handlers.custom.CustomAnnouncePkPvP;
|
|
import handlers.itemhandlers.BeastSoulShot;
|
|
import handlers.itemhandlers.BeastSoulShot;
|
|
import handlers.itemhandlers.BeastSpiritShot;
|
|
import handlers.itemhandlers.BeastSpiritShot;
|
|
import handlers.itemhandlers.BlessedSpiritShot;
|
|
import handlers.itemhandlers.BlessedSpiritShot;
|
|
@@ -256,28 +279,6 @@ import handlers.voicedcommandhandlers.Lang;
|
|
import handlers.voicedcommandhandlers.StatsVCmd;
|
|
import handlers.voicedcommandhandlers.StatsVCmd;
|
|
import handlers.voicedcommandhandlers.Wedding;
|
|
import handlers.voicedcommandhandlers.Wedding;
|
|
|
|
|
|
-import java.lang.reflect.Method;
|
|
|
|
-import java.util.HashMap;
|
|
|
|
-import java.util.Map;
|
|
|
|
-import java.util.Map.Entry;
|
|
|
|
-import java.util.logging.Level;
|
|
|
|
-import java.util.logging.Logger;
|
|
|
|
-
|
|
|
|
-import com.l2jserver.Config;
|
|
|
|
-import com.l2jserver.gameserver.handler.ActionHandler;
|
|
|
|
-import com.l2jserver.gameserver.handler.ActionShiftHandler;
|
|
|
|
-import com.l2jserver.gameserver.handler.AdminCommandHandler;
|
|
|
|
-import com.l2jserver.gameserver.handler.BypassHandler;
|
|
|
|
-import com.l2jserver.gameserver.handler.ChatHandler;
|
|
|
|
-import com.l2jserver.gameserver.handler.CommunityBoardHandler;
|
|
|
|
-import com.l2jserver.gameserver.handler.IHandler;
|
|
|
|
-import com.l2jserver.gameserver.handler.ItemHandler;
|
|
|
|
-import com.l2jserver.gameserver.handler.PunishmentHandler;
|
|
|
|
-import com.l2jserver.gameserver.handler.TargetHandler;
|
|
|
|
-import com.l2jserver.gameserver.handler.TelnetHandler;
|
|
|
|
-import com.l2jserver.gameserver.handler.UserCommandHandler;
|
|
|
|
-import com.l2jserver.gameserver.handler.VoicedCommandHandler;
|
|
|
|
-
|
|
|
|
/**
|
|
/**
|
|
* Master handler.
|
|
* Master handler.
|
|
* @author UnAfraid
|
|
* @author UnAfraid
|
|
@@ -580,6 +581,10 @@ public class MasterHandler
|
|
StatusHandler.class,
|
|
StatusHandler.class,
|
|
ThreadHandler.class,
|
|
ThreadHandler.class,
|
|
},
|
|
},
|
|
|
|
+ {
|
|
|
|
+ // Custom Handlers
|
|
|
|
+ CustomAnnouncePkPvP.class
|
|
|
|
+ }
|
|
};
|
|
};
|
|
|
|
|
|
public static void main(String[] args)
|
|
public static void main(String[] args)
|