Jump to content

Solomun

Legendary Member
  • Posts

    1,402
  • Credits

  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    0%

Everything posted by Solomun

  1. Η κονσολα σου βγαζει κανα ερρορ μηπως?
  2. This server might be closer to retail than any other server around...:)
  3. When BETA mode will end?
  4. You did something wrong in a multisell. Also the second message is pretty clear...folder multisell/custom doesnt exitst
  5. Δηλαδη database backup.... Αν μπορουσες να ποσταρεις μια φωτο με το προβλημα που αντιμετωπιζεις θα βοηθουσε πολυ...
  6. Τι backup ακριβως? Backup μπορει να ναι το οτιδηποτε...
  7. This error means that gameserver cannot connect to your database. Go to game server confgis, server.properties and add your database username and password.
  8. Who would trust a guy from MaxCheaters in 2k17? lul I trust only 5-10 people in here.
  9. Are you referring to TvT event that is implemented in l2j?
  10. If i were you, i wouldn't take any preconfigured pack. Especially high five. First, i dont think there are any (dunno what free version of l2jNetwork provides), and secondly if there are any, they are gonna be full of useless crap. I suggest you to compile your own and start building it slow and steady. Against what everyone is saying, i think that l2j high five is in a good level. Well, it also depends from what you want it for. If you are interested in making a mid rate server, i would suggest you to buy one (it is going to cost a lot). If you want it for a "test" server, go l2j. If you want it for a pvp server, again l2j.
  11. It was about time something like this to be shared. And yes, i like it and i want it :) Thank you Celestine! +1
  12. Check clientpackets/EnterWorld.java. Search for word "reunion" :)
  13. So smart i got no place to hide. I doubt if you even know what frequency means while talking about processors. P.S: +1 post count huh?
  14. hmm...Give it about 30 seconds. I checked it right now and it took about 15 seconds to show up the choice selection menu...
  15. I wouldn't expect maxcheaters to disable it, because mxc would do anything to make money..and by such advertise, it does. However tho, facebook should ban this kind of pages for sure, but how to tell facebook that this guy is abusing things...
  16. 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; }
  17. Don't know if C4 sounds a good option.
  18. 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) Try to do this steps one by one and give us an update of what you got.
  19. Yo guys, as expected the new advertise window that pop ups in mxc about l2 tales is one of these windows that l2 tales owner likes. Whenever you click the "X" button to close the window, you automatically like its page, so you may wanna remove it by seeing your activity log in facebook. I just mention this in case someone don't wanna like L2 Tales page. P.S: I hate this fucking thing, it\s obviously an abuse...And i am almost sure that it is against facebook rules but i wont spend time searching for it :P P.S #2: I don't hate l2 tales or something, i dont even care what this guy does. I just dont like it when my "preferences" are being abused so i am making this topic in order to update everyone...
  20. Like @Lioy mentioned, it is impossible to have items enchanted more than the one set to configs. Of course if your pack is buggish as hell, you could see something like that, or with "backdoors". However, if you want to add this kind of protection because you don't trust your GM team but at the same time you don't wanna to decrease their access level i suggest you something else. Go to admin_enchant and add an if statement and do whatever u want with the char/item/log message
  21. EnterWorld.java Something like this (i am from phone atm, can't search for the exact methods and etc). Try to do it by yourself, wont be hard. private boolean hasOverEnchantedItems(L2PcInstance player, int enchantLimit) { For (L2ItemInstance item : player.getInventory.getAllItems()) { if (item.getEnchantLevel() > enchantLimit) //player has over enchanted items return true; } return false; Now return in main method of EnterWorld.java and add this somewhere if (hasOverEnchantedItems(activeChar,20) //more than +20, banned { // JAIL - BAN // Steal code from admin commands } Note: This is going to be kinda slow and add some weight to your server... So, there might be another method than getAllItems() which returns only the armors or the weapons (for example getWeapons()). Try to search a little bit...Also, i would give a try to search how an item is added into the game, aka the constructor of L2itemInstance, where and when it is called. You could add a check into this constructor, but this is going to be kinda hard for you (dont wanna offend you, but the thing you ask gives me the clue you are new to this :)), since it might want some research before you do it...
  22. Nice but dancer seems very boring in a video :P
×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock