Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Recent content by B1ggBoss

  1. B

    L2J TvT event with rounds.

    TvTEventManager.TvTStartTask runnable class is the one who start registration, end registration, start event and end event. Break the code, so the last action that class make is to start the event, that, instead start it by calling a method, it will use the ThreadPoolManager to...
  2. B

    L2J Nickname Color

    When you use the code (Eg, red would be FF0000), invert the code: instead use RGB, use BGR, where red would be 0000FF
  3. B

    L2J just wondering

    modify the AttackRequest and RequestMagicSkillUse packets (Those client send when the player wanna attack something using melee attack or using any skill) In the method runImpl, add the condition: if(target instanceof L2PcInstance) { activeChar.sendMessage("Pvp isnt allowed!"); return; }
  4. B

    L2J How to make enchants to give +100

    net/sf/l2j/gameserver/clientpackets/RequestEnchantItem.java 1) Known the scrolls id. 2) Find: if (Rnd.get(100) < chance) { synchronized(item) { if (item.getOwnerId() != activeChar.getObjectId() // has just lost the item ||...
  5. B

    L2J Help how to do Quest without having to do the quest

    remove the quest from scripts.cfg
  6. B

    L2J Extarnal player can't join

    1) Open your 7777, 2106 and 9014 ports under TCP and UDP protocols 2) Restart your router! 3) Take your WAN IP (a.k.a. external ip) from You must be registered for see element. 4) Place it in externalhostname of loginserver and gameserver. 5) Give to your players a hosts file containing...
  7. B

    L2J Too Many Connections

    Tell us the serverpack and revision you are using, and overall, the custom mods you installed in your server cause theres database connections unclosed (which provokes your problem)
  8. B

    L2J All in one Item

    to make the item works you have to edit the core anyway, and the buffer (and all other stuff related with possible item actions) side is not hardcoded in the core
  9. B

    L2J [HELP] how to link skill to an icon

    hmm. i would need to make some test, maybe skill inventory could be modified to show a particula skill icon with a custom name and description. Ill be back when ill test it :)
  10. B

    L2J [HELP] how to link skill to an icon

    you must add it into skillgrp.dat (icon and data) and skillname-e.dat (name and description)
  11. B

    L2J Hide and Seek event

    of course, i always code under the GPL
  12. B

    L2J All in one Item

    AIO Item v3 released on first post
  13. B

    L2J L2j on ubuntu linux (server edition)

    1) Check that your .sh launcher contains the cmd -cp 2) If you still have such problem, set a evn variable (called CLASSPATH) to the path where the launcher its 3) Ofc, be sure you have all needed jars in your server folder
  14. B

    L2J Compile ?

    1) Create a free svn at assembla or sourceforge 2) Download the sources you wanna use 3) Using eclipe: Right Click over the project > export
  15. B

    L2J LoginServer Error

    to connect to your server go to Windows/system32/drivers/etc, open the file called "host" from same pc where the server is located add: 127.0.0.1 l2authd.lineage2.com 127.0.0.1 l2testauthd.lineage2.com from external pc: go to You must be registered for see element., take that ip and use it...
Back
Top