Jump to content

Recommended Posts

Posted

Open quest and remove piece if code, which blocks another mob spawn. Or simply use l2jserver code, you can spawn as many rbs as you want. 

Posted
6 hours ago, SweeTs said:

Open quest and remove piece if code, which blocks another mob spawn. Or simply use l2jserver code, you can spawn as many rbs as you want. 

SweeTs I'm absolutely sure he wants more explanations...ahhahahha

Posted
On 4/27/2018 at 11:12 AM, SweeTs said:

Open quest and remove piece if code, which blocks another mob spawn. Or simply use l2jserver code, you can spawn as many rbs as you want. 

Hey mate , thx for ur answer but i dont know what to remove from here maybe can you show me or can you help me please ...if u want this is the code from legendary tales quest 

package quests;

import java.util.StringTokenizer;

import l2f.gameserver.data.xml.holder.NpcHolder;
import l2f.gameserver.model.Player;
import l2f.gameserver.model.instances.NpcInstance;
import l2f.gameserver.model.quest.Quest;
import l2f.gameserver.model.quest.QuestState;
import l2f.gameserver.scripts.ScriptFile;

/**
 * @author pchayka
 */
public class _254_LegendaryTales extends Quest implements ScriptFile
{
	private static final int Gilmore = 30754;
	private static final int LargeBone = 17249;
	private static final int[] raids =
	{ 25718, 25719, 25720, 25721, 25722, 25723, 25724 };

	public _254_LegendaryTales()
	{
		super(PARTY_ALL);
		addStartNpc(Gilmore);
		addKillId(raids);
		addQuestItem(LargeBone);
	}

	@Override
	public String onEvent(String event, QuestState st, NpcInstance npc)
	{
		String htmltext = event;
		if (event.equalsIgnoreCase("gilmore_q254_05.htm"))
		{
			st.setState(STARTED);
			st.setCond(1);
			st.playSound(SOUND_ACCEPT);
		} else if (event.startsWith("gilmore_q254_09.htm"))
		{
			st.takeAllItems(LargeBone);
			StringTokenizer tokenizer = new StringTokenizer(event);
			tokenizer.nextToken();
			switch (Integer.parseInt(tokenizer.nextToken()))
			{
				case 1:
					st.giveItems(13467, 1);
					break;
				case 2:
					st.giveItems(13462, 1);
					break;
				case 3:
					st.giveItems(13464, 1);
					break;
				case 4:
					st.giveItems(13461, 1);
					break;
				case 5:
					st.giveItems(13465, 1);
					break;
				case 6:
					st.giveItems(13463, 1);
					break;
				case 7:
					st.giveItems(13460, 1);
					break;
				case 8:
					st.giveItems(13466, 1);
					break;
				case 9:
					st.giveItems(13459, 1);
					break;
				case 10:
					st.giveItems(13457, 1);
					break;
				case 11:
					st.giveItems(13458, 1);
					break;
				default:
					break;
			}
			st.playSound(SOUND_FINISH);
			st.setState(COMPLETED);
			st.exitCurrentQuest(false);
			htmltext = "gilmore_q254_09.htm";
		}

		return htmltext;
	}

	@Override
	public String onTalk(NpcInstance npc, QuestState st)
	{
		String htmltext = "noquest";
		int cond = st.getCond();
		if (npc.getNpcId() == Gilmore)
		{
			if (cond == 0)
			{
				if (st.getPlayer().getLevel() >= 80)
					htmltext = "gilmore_q254_01.htm";
				else
				{
					htmltext = "gilmore_q254_00.htm";
					st.exitCurrentQuest(true);
				}
			} else if (cond == 1)
				htmltext = "gilmore_q254_06.htm";
			else if (cond == 2)
				htmltext = "gilmore_q254_07.htm";
		}

		return htmltext;
	}

	@Override
	public String onKill(NpcInstance npc, QuestState st)
	{
		int cond = st.getCond();
		if (cond == 1)
		{
			int mask = 1;
			int var = npc.getNpcId();
			for (int i = 0; i < raids.length; i++)
			{
				if (raids[i] == var)
					break;
				mask = mask << 1;
			}

			var = st.getInt("RaidsKilled");
			if ((var & mask) == 0) // �того бо��а еще не убивали
			{
				var |= mask;
				st.set("RaidsKilled", var);
				st.giveItems(LargeBone, 1);
				if (st.getQuestItemsCount(LargeBone) >= 7)
					st.setCond(2);

			}
			checkKilledRaids(st.getPlayer(), var);
		}
		return null;
	}

	public static void checkKilledRaids(Player player, int var)
	{
		player.sendMessage("=== Remaining Dragon(s) ===");
		for (int i : raids)
		{
			int mask = 1;
			for (int b = 0; b < raids.length; b++)
			{
				if (raids[b] == i)
				{
					break;
				}
				mask = mask << 1;
			}

			if ((var & mask) == 0) // �того бо��а еще не убивали
			{
				String name = NpcHolder.getInstance().getTemplate(i).getName();
				player.sendMessage(name);
			}
		}
	}

	@Override
	public void onLoad()
	{
	}

	@Override
	public void onReload()
	{
	}

	@Override
	public void onShutdown()
	{
	}
}

 

Posted

Omg....  and you have no idea about java or just edit a simple code? 

 

And you are going to open a server with a limit of knowledge of the files?

 

you better invest your time on something  more useful in your life than trying to get “free” help to open a fail server.

Posted
7 hours ago, Akar0 said:

Omg....  and you have no idea about java or just edit a simple code? 

 

And you are going to open a server with a limit of knowledge of the files?

 

you better invest your time on something  more useful in your life than trying to get “free” help to open a fail server.

yes im going to open a server but not a fail server , why u say a fail server ?

Posted

If you can't edit, change a simple thing, then you will fail on first problem occurred on server.

Anyway, you won't get more than 50 ppl on your opening. Oracle.

Posted
2 hours ago, SweeTs said:

If you can't edit, change a simple thing, then you will fail on first problem occurred on server.

Anyway, you won't get more than 50 ppl on your opening. Oracle.

 

Exactly!!! I bet it can be less players, I don’t think this guy will invest on Advs at all. 

Posted
4 hours ago, SweeTs said:

If you can't edit, change a simple thing, then you will fail on first problem occurred on server.

Anyway, you won't get more than 50 ppl on your opening. Oracle.

im already done with editing quest , my wrong was because i trust you ...  you told me ''Open quest and remove piece if code, which blocks another mob spawn. Or simply use l2jserver code, you can spawn as many rbs as you want. '' but in this l2mythras pack you need to change dimensionalvortex and not the quest ...

Posted

Not my concern Russians code style is way different than regular l2j. If you can't find and edit thing you want you should not open any server. At least you starting to be familiar with pack structure. 

Posted
5 minutes ago, SweeTs said:

Not my concern Russians code style is way different than regular l2j. If you can't find and edit thing you want you should not open any server. At least you starting to be familiar with pack structure. 

read his signature, huhehehe 

Posted

Akar0  why you advertise this pack  ? you are constantly negative to help ordinary people who do not have a lot of knowledge

when you do something good at least finish it to the end or else never start it

Posted
35 minutes ago, eneokataba said:

Akar0  why you advertise this pack  ? you are constantly negative to help ordinary people who do not have a lot of knowledge

when you do something good at least finish it to the end or else never start it

Well basically I shared this pack, because I saw a lot kids trying to sell it and claimed as “their” pack.

So in order to stoped them, I decide to screw them up sharing it.

Thats all.

 

Posted

I have said it other times and I say it to you once again thank you very much for this pack that gives us the opportunity toto receive it from you for free because it is worth dealing with this pack

I would appreciate it very much if you help with  queries when you have time

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



  • Posts

    • I would like to clarify something publicly because false statements should not go unanswered. I have absolutely no relationship, partnership, or special connection with SkyLord. Any claim suggesting otherwise is entirely unsupported and based on assumptions rather than facts. It is disappointing to see people making accusations against others without presenting a single piece of evidence. Disagreement is one thing; inventing narratives and presenting personal opinions as facts is something completely different. If someone believes I have acted improperly, they are welcome to provide verifiable proof. Until then, these allegations are nothing more than speculation and should be treated as such. I have always been responsible for my own actions and opinions, and I do not need anyone's protection, influence, or assistance to participate in any community. Making accusations without evidence does not strengthen an argumen it only damages the credibility of the person making them. It should be clarified that I have already filed a report so that action can be taken; it is not fair that a post is being distorted in the way that has been happening.  
    • I don't think there is any bias on maxcheaters, this is the only forum left of the major ones where there is an honest administration. You may have meant mmodev, where the administration really has an interest in such fakes about competitors. I am not in favor of posting other people's correspondence, where they discuss with each other how to destroy us... but I'm not going to do this and post it, it's low, I hope that people themselves will finally understand that they are behaving completely wrong and unprofessionally.
    • I am really sorry for what SkyLord is doing to you. Unfortunately, this is not an isolated problem. The same kind of attacks have been happening to me as well. From my point of view, the issue is bigger than just one person, because SkyLord works closely with UnknownSoldier, who is a moderator on MaxCheaters, and that gives them influence and protection inside the forum. This is why they attack you in the same way they attack me: with pressure, manipulation, false accusations, and attempts to damage your reputation. In my opinion, the real problem is that privileges were given to the wrong people. As long as people like this have power there, the forum cannot be trusted anymore. I just wanted to tell you that I understand what you are going through, and I stand with you. They have done the same to me.
    • Let's be clear about what's happening here. You came to this thread as a provocateur, having already created a coordinated thread on MMO-Dev and invited people who have never been our clients and never will be — because their entire approach to this industry is based on free downloads and reverse engineering other people's work. Not a single person who wrote negatively about us on MMO-Dev has ever been our customer. Not one. Meanwhile, real clients wrote there too — but you conveniently ignore those. Your goal was never objectivity. It was a deliberate smear campaign, and the pattern is transparent to anyone reading this thread. As for MMO-Dev — platforms built on facilitating hatred and settling personal scores don't tend to last. We've seen it before with Zonegame. Communities that exist to tear others down eventually turn on themselves. In the meantime, our clients are running successful projects — the kind that generate real revenue, real growth, real results. That's where our focus is and will remain. While you wait for the 58th reopening of your server, we'll be here doing what we've been doing for 20 years — working.     Haha, well, the math is flattering — thank you for doing it for us! 😄 On the AI point — you might actually be right, and we're not afraid of that. We've been adapting for 20 years already. When new tools arrive, experienced developers use them better than anyone else. AI helps us work faster, not replace us — at least for now. And when the day comes that AI can fully build, maintain, and support a complex private L2 server end-to-end — we'll be the first to embrace it. Until then, our developers are doing just fine. 😉
  • Topics

×
×
  • Create New...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue..