Jump to content
  • 0

Adding patch manually


Question

Posted

Hi all, I'm trying to add the rebirth patch to the newest revision of l2j manually. The problem I have is that when I try to add this code in eclipse WorldHandler.java does not exist. Do I have to create a new java source file named Worldhandler.java ? If so how to I add it ?  Thanks

 

===================================================================

--- java/net/sf/l2j/gameserver/handler/WorldHandler.java (revision 0)

+++ java/net/sf/l2j/gameserver/handler/WorldHandler.java (revision 0)

-0,0 +1,38 @@

+package net.sf.l2j.gameserver.handler;

+

+import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance;

+

+import net.sf.l2j.gameserver.model.entity.RebirthManager;

+

+/**

+ *This will simply manage any custom 'Enter World callers' needed.<br>

+ *Rather then having to add them to the core's. (yuck!)

+ *

+ * @author  JStar

+ */

+public class WorldHandler{

+

+ private static WorldHandler _instance = null;

+

+ private WorldHandler(){

+ //Do Nothing ^_-

+ }

+

+ /** Receives the non-static instance of the RebirthManager.*/

+ public static WorldHandler getInstance(){

+ if(_instance == null){

+ _instance = new WorldHandler();

+ }

+ return _instance;

+ }

+

+ /** Requests entry into the world - manages appropriately. */

+ public void enterWorld(L2PcInstance player){

+ RebirthManager.getInstance().grantRebirthSkills(player);

+ }

+

+ /** Requests removal from the world - manages appropriately. */

+ public void exitWorld(L2PcInstance player){

+ }

+

+}

2 answers to this question

Recommended Posts

Guest
This topic is now closed to further replies.


×
×
  • Create New...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue..