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.
https://jsoft.top/
here is an example, cms uses html pages.
Front-end you use your own, if you have a pure static template (html/css/js) I can adapt it.
If you are interested, I can give access to the admin panel to study the functionality
Question
GameBlonD
public String onKill(L2Npc npc, L2PcInstance player, boolean isPet)
{
L2PcInstance partyMember = getRandomPartyMember(player, "1");
if (partyMember == null)
return null;
QuestState st = partyMember.getQuestState(getName());
if (st == null)
return null;
int id = npc.getNpcId();
int cond = st.getInt("cond");
switch (cond)
{
case 1:
if (id == MOB1 && st.getQuestItemsCount(QITEM1) == 0)
{
st.giveItems(QITEM1,1);
if (st.getQuestItemsCount(QITEM1) >= 1 && st.getQuestItemsCount(QITEM2) >= 1)
{
st.set("cond","2");
st.playSound("ItemSound.quest_middle");
}
Is this possibly to give into whole party? dont mind about }{
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.