Jump to content

Tessa

Members
  • Posts

    1,474
  • Joined

  • Last visited

  • Days Won

    4
  • Feedback

    0%

Everything posted by Tessa

  1. Have you tried an h5 server that uses l2off?
  2. l2off and h5? rofl :lol:
  3. I don't know if it's good or bad, but it's a legend along with Dragon Network.. still alive after more than 7 years :lol:
  4. You're terrible and just got one more -1 :lol:
  5. L2PcInstance doesn't have addLevel method.. look at head-src/com/l2jfrozen/gameserver/handler/admincommandhandlers/AdminLevel.java for example
  6. Add it to scripts.cfg like the other scripts
  7. So, what is your buffer actually... .py?
  8. Actually they use it to register python scripts. :lol:
  9. I mean data/scripts.cfg
  10. Actually i was wrong about antharas' and valakas' scripts... it's strange but they are in the core: head-src/com/l2jfrozen/gameserver/ai/special/
  11. Is it registered in scripts.cfg?
  12. I wish you good luck! :lol:
  13. The simplest answer is NO! Why no? Because the current l2 community is looking only for pvp, no matter if they play on x1 or x10000 servers. They don't want to farm, craft etc in order to reach the top.. they want everything on the moment! The whole idea about team play is dead, because most of the players have never seen the official servers in C3, C4, C5... where everything was a team play. So, what do you expect from a player that have never played this game?
  14. Don't pay attention to them, it's useless... Good luck! :)
  15. Get an clean system.. http://www.maxcheaters.com/topic/182405-c4-god-patched-systems-file-editors/
  16. It works the same way, just the code is optimized.. you can use only the check in your getHPBonus (com/l2jserver/gameserver/datatables/EnchantHPBonusData.java) method if you want, but it's not a good practice in the OOP :lol:
  17. That is why i suggest you to check their last revision.. The method in L2ItemInstance (com/l2jserver/gameserver/model/items/instance/L2ItemInstance.java): public int getOlyEnchantLevel() { L2PcInstance player = getActingPlayer(); int enchant = getEnchantLevel(); if (player == null) { return enchant; } if (player.isInOlympiadMode() && (Config.ALT_OLY_ENCHANT_LIMIT >= 0) && (enchant > Config.ALT_OLY_ENCHANT_LIMIT)) { enchant = Config.ALT_OLY_ENCHANT_LIMIT; } return enchant; } The method that takes care of the HP bonus (com/l2jserver/gameserver/datatables/EnchantItemHPBonusData.java): public final int getHPBonus(L2ItemInstance item) { final List<Integer> values = _armorHPBonuses.get(item.getItem().getItemGradeSPlus()); if ((values == null) || values.isEmpty() || (item.getOlyEnchantLevel() <= 0)) { return 0; } final int bonus = values.get(Math.min(item.getOlyEnchantLevel(), values.size()) - 1); if (item.getItem().getBodyPart() == L2Item.SLOT_FULL_ARMOR) { return (int) (bonus * fullArmorModifier); } return bonus; }
  18. Where in your example you check how many players are in the party?
  19. com/l2jserver/gameserver/datatables/EnchantHPBonusData.java In the latest revision of l2jserver there is a method getOlyEnchantLevel() located in the L2ItemInstance that does the job.. you can use it in your core to extend EnchantHPBonusData.java! :)
  20. getPartiesInside()?? What this method should do in the whole process of teleporting?
  21. You should create an teleport location with id 99999
  22. There are not too many server admins that says thanks to L2J Team. :) Good luck!
  23. There should be something like URL=jdbc:mysql://localhost/l2jdb Change it to URL=jdbc:mysql://localhost/loginserver_beta
  24. wrongly spelled db name... unknown database "loginserver_beta"
  25. I suggested this because he wants it to be attackable :lol:
×
×
  • 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..