Jump to content

Ethen

Members
  • Posts

    72
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

About Ethen

Profile Information

  • Gender
    Not Telling

Ethen's Achievements

Newbie

Newbie (1/16)

0

Reputation

  1. I installed this last night and it worked great, also worked this morning and now I can't get it to authenticate. Anyone having this problem? Thanks
  2. Okay, thanks man.
  3. Hello, i'm able to connect to l2 null with this guide http://www.maxcheaters.com/forum/index.php?topic=156922.0 but as soon as i get in i get disconnected. Anywork around ? Thanks
  4. Ingame works great ! For some reason oog disconnects right after I log in. As long as ingame works I have no complaints. Thanks for the share !
  5. Hi all, I added the rebirth system to the newest revision of l2j manually and received no errors. My question is when I'm in game do I have to spawn the rebirth manager or is this some window that pops up when you hit lvl 80? If you have to spawn something what is the id ? Thanks.
  6. Thanks for the info.
  7. 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){ + } + +}
  8. Hello, do you have to spawn the rebirth manager or is it automatic when you hit lvl 80 ? Thanks
  9. Oh, so if they get back up to 1000 pvp's they can't get another reward ? It's just a 1 time thing ?
  10. I like the pvp top list, but can players just kill their own toons and exploit this for rewards ? Thanks for the shares man.
  11. I have a heroes table, it has this information. Charid, classid, count, played. In that order. I need to add to this column ?
  12. I'm using this hero script http://www.maxcheaters.com/forum/index.php?topic=33864.0. I get this error: Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in C:\Program Files\Abyss Web Server\htdocs\system\scripts\db_scripts\statuscripts\hero.php on line 23 Anyone know how to fix this or have a working hero script I could try ? Thanks
  13. Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in C:\Program Files\Abyss Web Server\htdocs\system\scripts\db_scripts\statuscripts\hero.php on line 23 I get this error with the hero script. Anyone know how to fix this ?
  14. I had this problem and went to l2server/sql/updates and run the 20090824update file and worked for me.
×
×
  • Create New...