You can post now and register later.
If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.
DISCORD :
utchiha_market
telegram :
https://t.me/utchiha_market
SELLIX STORE :
https://utchihamkt.mysellix.io/
Join our server for more products :
https://discord.gg/hood-services
https://campsite.bio/utchihaamkt
Hello everyone!
I have a problem with editing mobs. I took some Mobs from here without sound and added them,
they looked good !!! BUT BUT !
When I hit him it does generate the effect, but when he hits it it doesn't.
Is this effect controlled from Npcgrp.dat?
PD_ I add capture of the event / effect I mention.
I await your answers, thank you!
Question
WOGEX
private void showQuestChooseWindow(final L2PcInstance player, final Quest[] quests)
{
final TextBuilder sb = new TextBuilder();
sb.append("<html><body><title>Talk about:</title><br>");
String state = "";
for (final Quest q : quests)
{
if (q == null)
{
continue;
}
sb.append("<a action=\"bypass -h npc_").append(getObjectId()).append("_Quest ").append(q.getName()).append("\">[");
final QuestState qs = player.getQuestState(q.getScriptName());
if ((qs == null) || qs.getState().equals(State.ACTIVE))
{
state = "In Progress";
}
else if (qs.isStarted() && (qs.getInt("cond") > 0))
{
state = " (In Progress)";
}
else if (qs.isCompleted())
{
state = " (Done)";
}
sb.append(q.getDescr()).append(state).append("]</a><br>");
}
sb.append("</body></html>
Please, help. Why eclipse, show error?
3 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.