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
There’s no way that could have happened with me. 🙂
I’m well protected,.. Facebook isn’t 🙂
I just spoke with Facebook support. Honestly.. i was surprised at how quickly they reacted to my report. Woman from India contacted me and told me to install a program so she could get into my computer. I was like, “Are you kidding me?”
She was even laughing on the phone and said, “No problem”
Facebook reviewed the case and told me they’ll give me my group back in a few days. So, good luck to that guy from Brazil or wherever he’s from.
Thanks!
Hello, I don't think someone hacked your FB account but gained remote access to your PC. Did you join any l2 server lately to check something etc? Running any Remote desktop service? Check windows logs.
Yeah sounds like session hijacking imho. Strange none the less. Did you open any suspecious websites where u needed to facebook login in the last 24-48h or opened weird .exe's ? or anything similar?
Meta support is a joke.
Lets assume someone has access to my account..
I havent seen any email notifications about it.. any sms /msgs, and there is no information in the activity logs on FB logins from other IPS or devices. It all seems very strange.
Ive reached out to FB regarding the restore form and the hacked group. Lets see what they say. 🙂
Question
Ethen
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