Jump to content

Ethen

Members
  • Posts

    72
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by Ethen

  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.
  15. Ok thanks man.
  16. So I can pick any zone delete the mobs that are there, then spawn whatever I want and change the drops ? That sounds pretty easy. Is there a way to make all the mobs in the zone champion mobs ? Thanks man.
  17. I been searching on guides for making custom farm zones and can't find any. Can someone send me links to such guides if you have any ? Thanks
  18. Thanks guys ! Oh yeah, when you make the changes in game are they permanent ? Or do you have to change them after every restart ? Thanks again.
  19. Hi all, how do I change the item drop of a raid boss ? Also, whatever item I change I would like to make it 100% drop. Thanks
  20. Thanks man.
  21. I followed this guide http://www.maxcheaters.com/forum/index.php?topic=47248.0 . I made these changes to eclipse to get olympiad to one week and it did not work. Anyone see what is wrong ? 1 week has past and no heros yet. Calendar currentTime = Calendar.getInstance(); //currentTime.add(Calendar.MONTH, 1); currentTime.add(Calendar.HOUR, 168); //currentTime.set(Calendar.DAY_OF_MONTH, 1); currentTime.set(Calendar.DAY_OF_WEEK, Calendar.SUNDAY); currentTime.set(Calendar.AM_PM, Calendar.AM); currentTime.set(Calendar.HOUR, 12); currentTime.set(Calendar.MINUTE, 0); currentTime.set(Calendar.SECOND, 0); _olympiadEnd = currentTime.getTimeInMillis();
  22. Well I already new about this but that doesn't answer my question. I know how to use the SEARCH BUTTON TO. I usually just update with the update option and have no problems. I wanted to know if I use my old sql file from the previous version if it overides the new changes to any updated sql files from the new revision. Thanks anyway.
  23. I want to update to the newest l2j revision. If I dump my sql database then execute the sql database file after I update will it overide new sql changes ? I want to dump the sql file because it is so much easier to do this than manually add all my custom sql files again. Thanks for any info.
  24. Thanks for the share.
×
×
  • Create New...