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

  • Thanks 2

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

    • Buying Epics/ S Gear on Elixir Whisper me
    • Hello everyone, I am looking to purchase a Premium Lineage 2 High Five server pack. My main requirements are: Stability & Quality (Most Important): The pack must be highly stable with no system errors or major bugs. Custom Features: It must include ready-to-use custom features such as a fully functional Community Board, custom NPC Buffers, and Custom Item Sellers (GM Shops), etc. Complete Files: It is absolutely necessary that the full source code (src) and complete Geodata are included. If you are selling a pack that meets these criteria, please send me a PM or leave a reply with the following information: Brief details and key features of the pack Price Test server availability (I would like to test it before buying) Thank you!
    • L2jmobiusDevClon — Classic Interlude p110 Emulator L2jmobiusDevClon is actively developing a Lineage 2 Classic Interlude p110 emulator. Development is done in free time with a strong focus on: • Stability • Authentic Classic mechanics • Clean and optimized architecture The project is based on the L2jMobius source and is continuously evolving and improving. System Requirements: • Java 25 • MariaDB 12.0 • Client p110 Current Revision: 3.0 Development Status: Active Distribution: Free Official Website: https://www.l2jmobiusdevclon.pp.ua Discord Server: https://discord.gg/23a9S8g4Bn Contact: Telegram — @L2jmobiusDevClon Also available via private messages Project Goals: ✔ Improved stability ✔ Maximum Classic accuracy ✔ Core optimization We are currently looking for: • Testers • Server administrators Suggestions, bug reports, and ideas are always welcome. Contact us via: ✔ Discord ✔ Telegram ✔ Private Messages
    • i guess loading only the effects that are needed it will maybe work, like removing from reshade shader folder the ones that are not needed, depends on the pc also i guess, also limithing the game at 30fps can be better maybe
  • 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..