[HELP] None hit you for x damage.

Overlord132

Vassal
Customer
Hi guys, I need help solving a problem.

I created a custom monster for my farm zone and when I take damage from it, its name doesn't appear. Instead, “None hit you x damage.” appears.

I've created the mob correctly with npcgrp, npcname and the xml on the gameserver... I don't know what's still missing. Can anyone help me?

P.s. Classic client
 

Attachments

  • L2_Mfci49zeuM.webp
    L2_Mfci49zeuM.webp
    4.8 KB · Views: 41
Last edited:
1. use smaller id than 40000, example use id 31000 somewhere close.
2. keep the order of nubmers, here we see you trying to fill in 40000 just under 8000
3. editor can NOT SAVE files 1 by 1. you MUST COMPILE all.
4. DisplayID is wrong/NOT needed, from the moment you fill in new npc in npcgrp and npcname.
 
1. use smaller id than 40000, example use id 31000 somewhere close.
2. keep the order of nubmers, here we see you trying to fill in 40000 just under 8000
3. editor can NOT SAVE files 1 by 1. you MUST COMPILE all.
4. DisplayID is wrong/NOT needed, from the moment you fill in new npc in npcgrp and npcname.
Please, explain to me the 3th topic
 
search in the forum for different editor.
if you dont find one here, search in another l2forum like mmodev
 
search in the forum for different editor.
if you dont find one here, search in another l2forum like mmodev
im trying to use the editor from mobius and it has none errors for me, but in both editors I'm get this critical error after overwrite the system files for packet files
 
GameDataName: File 'L2GameDataName.txt' not found!
[11/04 18:14:36] Start packing [GameDataBase-eu.txt]...
[11/04 18:14:36] Node value is null.
-node: type[VARIABLE][null][UINT]
param: 5
org.l2jmobius.xml.exceptions.PackDataException: Node value is null.
-node: type[VARIABLE][null][UINT]
param: 5
at org.l2jmobius.xml.DescriptorWriter.packData(DescriptorWriter.java:294)
at org.l2jmobius.xml.DescriptorWriter.packData(DescriptorWriter.java:184)
at org.l2jmobius.xml.DescriptorWriter.parseData(DescriptorWriter.java:100)
at org.l2jmobius.actions.MassTxtPacker.pack(MassTxtPacker.java:169)
at org.l2jmobius.actions.MassTxtPacker.action0(MassTxtPacker.java:129)
at org.l2jmobius.actions.MassTxtPacker.action(MassTxtPacker.java:57)
at org.l2jmobius.actions.ActionTask.doInBackground(ActionTask.java:48)
at org.l2jmobius.actions.ActionTask.doInBackground(ActionTask.java:27)
at java.desktop/javax.swing.SwingWorker$1.call(SwingWorker.java:304)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
at java.desktop/javax.swing.SwingWorker.run(SwingWorker.java:343)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)

[11/04 18:14:36] Start packing [GameDataBase_Classic-eu.txt]...
[11/04 18:14:36] Node value is null.
-node: type[VARIABLE][null][UINT]
param: 7
org.l2jmobius.xml.exceptions.PackDataException: Node value is null.
-node: type[VARIABLE][null][UINT]
param: 7
at org.l2jmobius.xml.DescriptorWriter.packData(DescriptorWriter.java:294)
at org.l2jmobius.xml.DescriptorWriter.packData(DescriptorWriter.java:184)
at org.l2jmobius.xml.DescriptorWriter.parseData(DescriptorWriter.java:100)
at org.l2jmobius.actions.MassTxtPacker.pack(MassTxtPacker.java:169)
at org.l2jmobius.actions.MassTxtPacker.action0(MassTxtPacker.java:129)
at org.l2jmobius.actions.MassTxtPacker.action(MassTxtPacker.java:57)
at org.l2jmobius.actions.ActionTask.doInBackground(ActionTask.java:48)
at org.l2jmobius.actions.ActionTask.doInBackground(ActionTask.java:27)
at java.desktop/javax.swing.SwingWorker$1.call(SwingWorker.java:304)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
at java.desktop/javax.swing.SwingWorker.run(SwingWorker.java:343)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:842)
this is the only error that I have
 
Back
Top