Jump to content

Solomun

Legendary Member
  • Posts

    1,402
  • Credits

  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    0%

Community Answers

  1. Solomun's post in L2j Acis starting adena was marked as the answer   
    Copy the source code from an l2jserver pack and add it to your pack. Client package: CharacterCreate.java. Find it by searchig the keyword "adena", and you will get the config.
  2. Solomun's post in Add/Update PvP point in Arena was marked as the answer   
    Locked.
     
    Just for marking the answer (since i can't mark as answer the first topic):
     
    sendPacket(new UserInfo(this));
  3. Solomun's post in Cannot Start The Gameserver Directly From Eclipse was marked as the answer   
    Error is pretty clear i think, file not found in config/log.cfg. Which means, you have to create a .cfg file inside config folder.
  4. Solomun's post in Remove Kamael Classes was marked as the answer   
    I have done it this way: (Client packets - CharacterCreate.java)
    // Last Verified: May 30, 2009 - Gracia Final if (!Util.isAlphaNumeric(_name) || !isValidName(_name)) { if (Config.DEBUG) { _log.fine("Character Creation Failure: Character name " + _name + " is invalid. Message generated: Incorrect name. Please try again."); } sendPacket(new CharCreateFail(CharCreateFail.REASON_INCORRECT_NAME)); return; } + // Disable kamaels + if ((_race == 5) && Config.DISABLE_KAMAEL_RACE) + { + sendPacket(new CharCreateFail(CharCreateFail.REASON_CREATION_FAILED)); + return; + } if ((_face > 2) || (_face < 0)) { _log.warning("Character Creation Failure: Character face " + _face + " is invalid. Possible client hack. " + getClient()); sendPacket(new CharCreateFail(CharCreateFail.REASON_CREATION_FAILED)); return; }
  5. Solomun's post in Right Buttons From Client Login Interface was marked as the answer   
    I think the links are saved into l2.ini
  6. Solomun's post in Change Info From Server Login Window was marked as the answer   
    L2text/server_help.htm
    L2text/server_help1.htm
    L2text/server_help2.htm
    L2text/server_help3.htm
    L2text/server_help4.htm
     
    Check these in your lineage 2 folder.
  7. Solomun's post in Remove L2 Agreements Window was marked as the answer   
    U can remove it from server side configs.
     
    login.properties
    # --------------------------------------------------------------------------- # Misc. # --------------------------------------------------------------------------- # If False, the license (after the login) will not be shown. # Default: True ShowLicence = False
  8. Solomun's post in [Help]Npc Walker was marked as the answer   
    NpcName-e.dat from your system.
  9. Solomun's post in Upgrade Item And Maitaint The Enchant Level was marked as the answer   
    You can see the multisell from Rapidus NPC that makes {PvP} weapons. In pvp weapons the enchantment stays as it is after the upgrade :)
  10. Solomun's post in How To Remove A Mob Animation? was marked as the answer   
    This is not saved in your core. This is client side.
  11. Solomun's post in Small Help With Java was marked as the answer   
    Next time use a proper title for your topic. "Help me with java" is not even close to what you are asking....
     
     
    Restrict party:
     
     
    Restrict clan invite:
     
     
  12. Solomun's post in Celestial Shield was marked as the answer   
    Then it's easy....
     
    data\scripts\handlers\effecthandlers\ManaHeal.java
     
     
     
  13. Solomun's post in Skills Bug Fixes was marked as the answer   
    doCast(final L2Skill skill) method.
     
     
     
  14. Solomun's post in Delete Skill? (Hi5) was marked as the answer   
    data\skillTrees\classSkillTree.
     
    Remove the skill you don't want. 
  15. Solomun's post in Looking For A Guide (L2J High Five) was marked as the answer   
    1) Eclipse -> Window -> Show View -> Other (http://prnt.sc/c24qfk)
    2) Choose Git -> Git Repositories (http://prnt.sc/c24qxu)
    3) At the Git Repositories view click on "Clone a Git Repository" (http://prnt.sc/c24qps)
    4) At the URI field put "https://bitbucket.or.../l2j_server.git" and click Next > (http://prnt.sc/c24r8z)
    5) Click "Deselect All", check "master" only and click Next > (http://prnt.sc/c24rgm)
    6) Select a folder for your project and click Finish (http://prnt.sc/c24rnf)
    7) When you clone the repository, click on the second icon from left to right (the type hint says "Clone a Git Repository and add the clone to this view") (http://prnt.sc/c24rtz)
    8 ) Repeat steps 4 ("https://bitbucket.or...2j_datapack.git"), 5 and 6 (http://prnt.sc/c24s1j)
    9) After it's finished, right click somewhere in the Package Explorer view and choose "Import..." (http://prnt.sc/c24s6j)
    10) Choose Gradle -> Gradle Project (http://prnt.sc/c24sc3)
    11) In the Project root directory choose the datapack project folder (http://prnt.sc/c24sv9)
    12) Wait for eclipse to finish importing the l2j_server and l2j_datapack projects (http://prnt.sc/c24t1a)
    13) At the bottom, a Gradle Tasks view will appear... l2j_datapack -> build -> right click on build -> Run Gradle Tasks (http://prnt.sc/c24t7v)
  16. Solomun's post in Lf L2Jserver Files H5 Clean ! was marked as the answer   
    https://bitbucket.org/l2jserver/
     
    Master branch = High five
  17. Solomun's post in Spawn Cordenadas Code was marked as the answer   
    default: if (activeChar.getKarma() > 0 && Config.ALT_KARMA_TELEPORT_TO_FLORAN) {   loc = new Location(17836, 170178, -3507);// Floran Village   break; } if (activeChar.isInsideZone(L2Character.ZONE_FLAG)) {   Location[] flagLocations =   {    new Location(1,2,3),    new Location(1,2,3),    new Location(1,2,3),    new Location(1,2,3),    new Location(1,2,3)    };    loc = flagLocations[Rnd.get(5)];    break; } loc = MapRegionData.getInstance().getTeleToLocation(activeChar, MapRegionData.TeleportWhereType.Town); break; } Replace L2Character.ZONE_FLAG with the correct field name of the flag zone. (Just go to L2Character and see how FlagZone is named).
     
    Or
    write into the parenthesis L2Character. and press control + Space to see available zones.
  18. Solomun's post in Block Bs In Flagzone was marked as the answer   
    Sorry i forget about that... Do it like
    +if (character instanceof L2PcInstance) +{ + _player = (L2PcInstance)character; + final int[] supporters = {15,16,29,30,42,43,97,105,112,115,136,116}; // support classes ID's + for (int act : supporters) + if (_player.getActiveClass() == act) + { + _player.sendMessage("You can't enter in flag zone with a support class."); + _player.teleToLocation(83417 + Rnd.get(101) - 50, 149028 + Rnd.get(101) - 50, -3408); + } +}
  19. Solomun's post in Some Questions About L2J was marked as the answer   
    yes and yes :)
  20. Solomun's post in Hide Mouse Cursor was marked as the answer   
    They hide it with the programm they capture the video (Bandicam,fraps)...
×
×
  • Create New...