-
Posts
94 -
Joined
-
Last visited
-
Feedback
0%
Content Type
Articles
Profiles
Forums
Store
Everything posted by TGSLineage2
-
Try use the one I recommend
-
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.
-
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.
-
I understand, try this https://l2reborn.com/community/?wpforo=signup or this too https://asterios.tm/index.php?js=1
-
Have you tried l2jserver in its development version?
-
Help need help on this shered pack
TGSLineage2 replied to DombNexengr's topic in Request Support [English]
server.ini -> EverybodyHasAdminRights = False -
Help pvp points per character level
TGSLineage2 replied to naustagic's question in Request Server Development Help [L2J]
replace 10 for Config.MIN_LEVEL_TO_ADD_PVP_PK_KILL -
Help pvp points per character level
TGSLineage2 replied to naustagic's question in Request Server Development Help [L2J]
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. -
Help pvp points per character level
TGSLineage2 replied to naustagic's question in Request Server Development Help [L2J]
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" -
Help pvp points per character level
TGSLineage2 replied to naustagic's question in Request Server Development Help [L2J]
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 -
Help pvp points per character level
TGSLineage2 replied to naustagic's question in Request Server Development Help [L2J]
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 -
Help Open Server Problem Main
TGSLineage2 replied to DimiCxD3's question in Request Server Development Help [Greek]
That error occurs when you try to access an index out of range, that is, non-existent. -
Help About Enchant Blessed Scrolls
TGSLineage2 replied to 0flee's question in Request Server Development Help [L2J]
Do you want the ancient enchant to be type bless? -
Help About Enchant Blessed Scrolls
TGSLineage2 replied to 0flee's question in Request Server Development Help [L2J]
In enchantItemData.xml define maxEnchant according to the id of the scroll -
Help About Enchant Blessed Scrolls
TGSLineage2 replied to 0flee's question in Request Server Development Help [L2J]
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 -
Help About Enchant Blessed Scrolls
TGSLineage2 replied to 0flee's question in Request Server Development Help [L2J]
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 -
Help About Enchant Blessed Scrolls
TGSLineage2 replied to 0flee's question in Request Server Development Help [L2J]
What chronicle and version are you using? -
Help Item keeped in inventory
TGSLineage2 replied to 0flee's question in Request Server Development Help [L2J]
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 -
Help error hidden drop event [Jfrozen 1132]
TGSLineage2 replied to heladito's question in Request Server Development Help [L2J]
Its Okay apparently, you could point where the error appears and tell me what it says- 7 replies
-
- help
- hidden drop
-
(and 2 more)
Tagged with:
-
Help error hidden drop event [Jfrozen 1132]
TGSLineage2 replied to heladito's question in Request Server Development Help [L2J]
Show me your class Say2- 7 replies
-
- help
- hidden drop
-
(and 2 more)
Tagged with:
-
Help Java Paid Licence?
TGSLineage2 replied to Tamira's question in Request Server Development Help [L2J]
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. -
Help error hidden drop event [Jfrozen 1132]
TGSLineage2 replied to heladito's question in Request Server Development Help [L2J]
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.- 7 replies
-
- help
- hidden drop
-
(and 2 more)
Tagged with:
-
Help Start form nothing
TGSLineage2 replied to 0flee's question in Request Server Development Help [L2J]
You should copy the project folder into the eclipse workspace folder and import it from there -
HELP TO MAKE A WEBSITE WITH PHP TEMPLATES
TGSLineage2 replied to lolokop's topic in Website Templates & Themes (Free)
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 -
Help Start form nothing
TGSLineage2 replied to 0flee's question in Request Server Development Help [L2J]
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?
