Jump to content

TGSLineage2

Members
  • Posts

    94
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by TGSLineage2

  1. Try use the one I recommend
  2. Looking at the system folder, I see that the change is made in the interface.xdat file, you have to use xdat Editor, you go to the tab to "chatChanel" and look for Critical_Announce, there you can change the color.
  3. I think what you are looking for is in the Say2 class in clientpackets, although I don't quite understand what you want to do.
  4. I understand, try this https://l2reborn.com/community/?wpforo=signup or this too https://asterios.tm/index.php?js=1
  5. Have you tried l2jserver in its development version?
  6. server.ini -> EverybodyHasAdminRights = False
  7. replace 10 for Config.MIN_LEVEL_TO_ADD_PVP_PK_KILL
  8. add in config //player section at the end karma and pvp public static int MIN_LEVEL_TO_ADD_PVP_PK_KILL; then after this PVP_PVP_TIME = players.getProperty("PvPVsPvPTime", 30000); MinLevelToAddPvPPkKill = players.getProperty("MinLevelToAddPvPPkKill",10); and in players.properties add after PvPVsPvPTime = 30000 MinLevelToAddPvPPkKill = 10; then replace 10 for this config in the code I gave you.
  9. You can try this, find this line // Add PvP point to attacker. and write if(target.getLevel>10) before setPvpKills(getPvpKills() + 1); find // PK Points are increased only if you kill a player and write if(target.getLevel>10) after if (target instanceof Player) { if you want it not to add when the murderer is level less than 10 replace target with "this"
  10. I have a question, you want it to start being counted when the killer is> 10 or when the target (killed) is greater than 10
  11. go to L2PcInstance.java find setPvpKills() and setPkKills() and write this if(this.getLevel() <10){ return; } you must write it right after opening the method key. If you use aCis you must do this in Player.java
  12. That error occurs when you try to access an index out of range, that is, non-existent.
  13. Do you want the ancient enchant to be type bless?
  14. In enchantItemData.xml define maxEnchant according to the id of the scroll
  15. After defining the above if you want to make it more personalized, you could go to the enchantItemData.xml file and adjust it to your preferences according to the "bonusRate" you want according to the degree and id of the scroll
  16. Look in dist / game / data / xml for the enchantItemGroups.xml file, there they are associated by groups where enchant determines the enchantment level and "chance" the probability, enchant = "0-2" chance = 100 means you can upload from 0 up to 3 safely
  17. What chronicle and version are you using?
  18. If I understood correctly, you want to add a defense stat to a custom item, but when it reaches the player's inventory, is it not appreciated? If this stat is added to the player's stats when he has it on, then to make it Visible in the item's tooltip, it would have to be added in the system's armorgrp.dat file, I don't know if that is the question
  19. Its Okay apparently, you could point where the error appears and tell me what it says
  20. Show me your class Say2
  21. In case you are using it in a personal way, the collection starts when you create some java-based app and sell it or something like that.
  22. Since you do not show the error itself, I would dare to say that the attribute is not declared in the Say2 class or maybe it is declared as private and you have to access it through a getter or maybe it is declared as a non-integer value, as I understand it goes there an integer value.
  23. You should copy the project folder into the eclipse workspace folder and import it from there
  24. You could create a virtual host, or simply place your project in the htdocs folder of the xamp directory, enable your exit port on your firewall and router, generally 80 for http, configure your httpd.conf to allow access to your public directory, that is if you are going to administer your own web server, if you rent a web space on any page, it is only a matter of uploading your files to the public folder to which you have access through a web interface or some ftp client
  25. I suggest that if you are just starting out, use netbeans to start is easier to use and as good as eclipse, it also has the option to import projects from git It seems that you are trying to import a project from an existing folder?
×
×
  • Create New...