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

    • what pack you use  send me on discord for it
    • package custom.events.RandomZoneEvent; import java.io.File; import java.util.ArrayList; import java.util.List; import java.util.Random; import java.util.concurrent.ScheduledFuture; import org.w3c.dom.Document; import org.w3c.dom.Node; import org.l2jmobius.commons.threads.ThreadPool; import org.l2jmobius.commons.time.SchedulingPattern; import org.l2jmobius.commons.time.TimeUtil; import org.l2jmobius.commons.util.IXmlReader; import org.l2jmobius.gameserver.managers.ZoneManager; import org.l2jmobius.gameserver.model.StatSet; import org.l2jmobius.gameserver.model.actor.Creature; import org.l2jmobius.gameserver.model.actor.Npc; import org.l2jmobius.gameserver.model.actor.Player; import org.l2jmobius.gameserver.model.quest.Event; import org.l2jmobius.gameserver.model.zone.ZoneId; import org.l2jmobius.gameserver.model.zone.ZoneType; import org.l2jmobius.gameserver.model.zone.type.RandomZone; import org.l2jmobius.gameserver.util.Broadcast; /** * Random Zone Event - Activates one random PvP zone temporarily. No modifica la clase de la zona: usa flags PvP en runtime. * @author Juan */ public class RandomZoneEvent extends Event { private static final String CONFIG_FILE = "data/scripts/custom/events/RandomZoneEvent/config.xml"; private static int EVENT_DURATION_MINUTES = 15; private static boolean _isActive = false; private ScheduledFuture<?> _eventTask = null; private final List<ZoneType> _availableZones = new ArrayList<>(); private ZoneType _activeZone = null; public RandomZoneEvent() { loadConfig(); loadZones(); registerZoneListeners(); } /** * Registra listeners a TODAS LAS ZONAS random */ private void registerZoneListeners() { for (ZoneType zone : _availableZones) { addEnterZoneId(zone.getId()); addExitZoneId(zone.getId()); LOGGER.info("[RandomZoneEvent] Registered listener for zone: " + zone.getName()); } } private void loadConfig() { new IXmlReader() { @Override public void load() { parseDatapackFile(CONFIG_FILE); } @Override public void parseDocument(Document doc, File file) { forEach(doc, "event", eventNode -> { final StatSet att = new StatSet(parseAttributes(eventNode)); final String name = att.getString("name"); for (Node node = eventNode.getFirstChild(); node != null; node = node.getNextSibling()) { if ("schedule".equals(node.getNodeName())) { final StatSet attributes = new StatSet(parseAttributes(node)); final String pattern = attributes.getString("pattern"); final SchedulingPattern schedulingPattern = new SchedulingPattern(pattern); final StatSet params = new StatSet(); params.set("Name", name); params.set("SchedulingPattern", pattern); final long delay = schedulingPattern.getDelayToNextFromNow(); getTimers().addTimer("Schedule_" + name, params, delay + 5000, null, null); LOGGER.info("[RandomZoneEvent] Event " + name + " scheduled at " + TimeUtil.getDateTimeString(System.currentTimeMillis() + delay)); } } }); } }.load(); } private void loadZones() { for (ZoneType zone : ZoneManager.getInstance().getAllZones(RandomZone.class)) { if ((zone.getName() != null) && zone.getName().toLowerCase().startsWith("random_zone")) { _availableZones.add(zone); LOGGER.info("[RandomZoneEvent] Loaded zone: " + zone.getName() + " (id=" + zone.getId() + ")"); } } LOGGER.info("[RandomZoneEvent] Total random zones loaded: " + _availableZones.size()); } @Override public void onTimerEvent(String event, StatSet params, Npc npc, Player player) { if (event.startsWith("Schedule_")) { eventStart(null); final SchedulingPattern schedulingPattern = new SchedulingPattern(params.getString("SchedulingPattern")); final long delay = schedulingPattern.getDelayToNextFromNow(); getTimers().addTimer(event, params, delay + 5000, null, null); LOGGER.info("[RandomZoneEvent] Rescheduled for " + TimeUtil.getDateTimeString(System.currentTimeMillis() + delay)); } } @Override public boolean eventStart(Player eventMaker) { if (_isActive) { if (eventMaker != null) { eventMaker.sendMessage("RandomZoneEvent already active."); } return false; } if (_availableZones.isEmpty()) { Broadcast.toAllOnlinePlayers("[RandomZoneEvent] No zones configured."); return false; } _isActive = true; Broadcast.toAllOnlinePlayers("⚔️ Random Zone Event has started!"); _eventTask = ThreadPool.schedule(this::activateRandomZone, 5_000); return true; } private void activateRandomZone() { _activeZone = _availableZones.get(new Random().nextInt(_availableZones.size())); _activeZone.setEnabled(true); Broadcast.toAllOnlinePlayers("🔥 Random Zone Event: " + _activeZone.getName() + " is now PvP for " + EVENT_DURATION_MINUTES + " minutes!"); _eventTask = ThreadPool.schedule(this::eventStop, EVENT_DURATION_MINUTES * 60 * 1000L); } @Override public boolean eventStop() { if (!_isActive) { return false; } _isActive = false; if (_eventTask != null) { _eventTask.cancel(true); _eventTask = null; } if (_activeZone != null) { _activeZone.setEnabled(false); Broadcast.toAllOnlinePlayers("🏁 Random Zone Event ended. " + _activeZone.getName() + " is back to normal."); _activeZone = null; } else { Broadcast.toAllOnlinePlayers("🏁 Random Zone Event ended."); } return true; } @Override public void onEnterZone(Creature creature, ZoneType zone) { if (!_isActive || (_activeZone == null)) { return; } if ((zone == _activeZone) && creature.isPlayable()) { creature.setInsideZone(ZoneId.PVP, true); if (creature.isPlayer()) { creature.sendMessage("Esta zona está en modo PvP temporalmente."); } } } @Override public void onExitZone(Creature creature, ZoneType zone) { if (!_isActive || (_activeZone == null)) { return; } if ((zone == _activeZone) && creature.isPlayable()) { creature.setInsideZone(ZoneId.PVP, false); if (creature.isPlayer()) { creature.sendMessage("Abandonaste la zona PvP temporal."); } } } @Override public boolean eventBypass(Player player, String bypass) { return true; } @Override public String onEvent(String event, Npc npc, Player player) { return super.onEvent(event, npc, player); } @Override public String onFirstTalk(Npc npc, Player player) { return null; } public static void main(String[] args) { new RandomZoneEvent(); } } i have this but its not working
    • ZonePvPSpawnBossRadio=0 ZonePvPSpawnBossBarakiel=0 at the Customs.ini in L2Server folder. Im prety sure this is it because i had the same problem with you in cruma 1 floor for example and i couldn't fix it but i fixed it finally by changing these 2 lines
    • Siege Reward Start PM Msg Rework Config root BossDieAnnounce and BossDieSound in the L24Team.properties and Config.java files for global raid boss death notifications and sounds. Adds a new reward_list table to the DB.sql file to track castle rewards. Improves character creation logic for thread safety and validation. Adds extensive state checks to the RequestEnchantItem method to prevent enchantments during inappropriate player states. Fixed auto-attack animation bug (there was no attack animation, only damage animation) Clean Code Other fixes I forgot to list! Java 14 Fixed issue where deleting a character would prevent it from leaving the screen or being removed, or even after a delete CD (it would only exit when re-logging in or creating a new character). Added Premium System from the other C2 project (Needs testing and improvement). Added the "Improved" Community Board (incomplete).
  • Topics

×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock