Jump to content

Recommended Posts

Posted (edited)

another custom manager, that shows status (alive or respawn estimating time) of any raidboss in da game.

originally status is 'divided' onto two individual lists:

private static final int[] RBOSSES = {25418,25434,25126};
private static int MBOSS = 25126;
MBOSS main boss (one and only).

RBOSSES list of additional bosses (as many as you want).

 

preview: http://s1.postimg.org/dqli7zcf2/rbstatus_preview.jpg

ps. credits to daffynash who spared some of you the tedious work by creating the patch.

 

### Eclipse Workspace Patch 1.0
#P aCis_datapack
Index: data/xml/npcs/50000-50999.xml
===================================================================
--- data/xml/npcs/50000-50999.xml	(revision 6)
+++ data/xml/npcs/50000-50999.xml	(working copy)
@@ -1,5 +1,38 @@
 <?xml version="1.0" encoding="utf-8"?>
 <list>
+	<npc id="50001" idTemplate="25449" name="BOSS STATUS" title="L2EUPHORIA.COM">
+		<set name="level" val="80"/>
+		<set name="radius" val="15"/>
+		<set name="height" val="28"/>
+		<set name="rHand" val="0"/>
+		<set name="lHand" val="0"/>
+		<set name="type" val="L2RaidBossStatus"/>
+		<set name="exp" val="0"/>
+		<set name="sp" val="0"/>
+		<set name="hp" val="5000"/>
+		<set name="mp" val="2500"/>
+		<set name="hpRegen" val="8"/>
+		<set name="mpRegen" val="8"/>
+		<set name="pAtk" val="100"/>
+		<set name="pDef" val="100"/>
+		<set name="mAtk" val="100"/>
+		<set name="mDef" val="100"/>
+		<set name="crit" val="4"/>
+		<set name="atkSpd" val="253"/>
+		<set name="str" val="40"/>
+		<set name="int" val="21"/>
+		<set name="dex" val="30"/>
+		<set name="wit" val="20"/>
+		<set name="con" val="43"/>
+		<set name="men" val="20"/>
+		<set name="corpseTime" val="7"/>
+		<set name="walkSpd" val="50"/>
+		<set name="runSpd" val="120"/>
+		<set name="dropHerbGroup" val="0"/>
+		<set name="attackRange" val="40"/>
+		<ai type="default" ssCount="0" ssRate="0" spsCount="0" spsRate="0" aggro="0" canMove="false" seedable="false"/>
+	</npc>
+
 	<npc id="50006" idTemplate="31228" name="Roy the Cat" title="Class Manager">
 		<set name="level" val="70"/>
 		<set name="radius" val="9"/>
Index: data/html/mods/RaidBossStatus/50001.htm
===================================================================
--- data/html/mods/RaidBossStatus/50001.htm	(revision 0)
+++ data/html/mods/RaidBossStatus/50001.htm	(working copy)
@@ -0,0 +1,21 @@
+<html><title>BOSS STATUS</title><body>
+<br><table width=300><tr><td align=center>
+<img src="L2UI_CH3.herotower_deco" width=256 height=32>
+
+<br><br><br><br>
+<font color=a2a0a2>ancient scrolls reveals truth of their return
+<br1>defeat was merely delay ...</font>
+</td></tr></table>
+
+<br>
+<img src=L2UI.SquareGray width=300 height=1>
+<table width=300 height=27 bgcolor="000000">
+	<tr>
+	<td align=center width=300>%mboss%</td>
+	</tr>
+</table>
+<img src=L2UI.SquareGray width=300 height=1>
+
+<br>
+<center>%bosslist%</center>
+</body></html>
\ No newline at end of file
#P aCis_gameserver
Index: java/net/sf/l2j/gameserver/instancemanager/RaidBossSpawnManager.java
===================================================================
--- java/net/sf/l2j/gameserver/instancemanager/RaidBossSpawnManager.java	(revision 9)
+++ java/net/sf/l2j/gameserver/instancemanager/RaidBossSpawnManager.java	(working copy)
@@ -45,6 +45,7 @@
 	
 	protected final static Map<Integer, L2RaidBossInstance> _bosses = new HashMap<>();
 	protected final static Map<Integer, L2Spawn> _spawns = new HashMap<>();
+	protected final static Map<Integer, Long> _respawns = new HashMap<>();
 	protected final static Map<Integer, StatsSet> _storedInfo = new HashMap<>();
 	protected final static Map<Integer, ScheduledFuture<?>> _schedules = new HashMap<>();
 	
@@ -142,6 +143,7 @@
 				_log.info("RaidBoss: " + raidboss.getName() + " has spawned.");
 				
 				_bosses.put(bossId, raidboss);
+				_respawns.put(bossId,0L);
 			}
 			
 			_schedules.remove(bossId);
@@ -148,6 +150,14 @@
 		}
 	}
 	
+	public long getRespawntime(int id)
+	{
+		if(_respawns.containsKey(id))
+		return _respawns.get(id);
+	
+		return -1; 
+	}
+	
 	public void updateStatus(L2RaidBossInstance boss, boolean isBossDead)
 	{
 		if (!_storedInfo.containsKey(boss.getNpcId()))
@@ -171,6 +181,7 @@
 			{
 				_log.info("RaidBoss: " + boss.getName() + " - " + StringUtil.DATE_MM.format(respawnTime) + " (" + respawnDelay + "h).");
 				
+				_respawns.put(boss.getNpcId(),  Calendar.getInstance().getTimeInMillis() + (respawnDelay * 3600000L));
 				_schedules.put(boss.getNpcId(), ThreadPoolManager.getInstance().scheduleGeneral(new spawnSchedule(boss.getNpcId()), respawnDelay * 3600000));
 				updateDb();
 			}
@@ -179,6 +190,8 @@
 		{
 			boss.setRaidStatus(StatusEnum.ALIVE);
 			
+			_respawns.put(boss.getNpcId(), 0L);
+			
 			info.set("currentHP", boss.getCurrentHp());
 			info.set("currentMP", boss.getCurrentMp());
 			info.set("respawnTime", 0L);
@@ -226,11 +239,13 @@
 				info.set("respawnTime", 0L);
 				
 				_storedInfo.put(bossId, info);
+				_respawns.put(bossId, 0L);
 			}
 		}
 		else
 		{
 			long spawnTime = respawnTime - Calendar.getInstance().getTimeInMillis();
+			_respawns.put(bossId,respawnTime);
 			_schedules.put(bossId, ThreadPoolManager.getInstance().scheduleGeneral(new spawnSchedule(bossId), spawnTime));
 		}
 		
@@ -272,6 +287,9 @@
 		SpawnTable.getInstance().deleteSpawn(spawnDat, false);
 		_spawns.remove(bossId);
 		
+		if (_respawns.containsKey(bossId))
+			_respawns.remove(bossId);
+		
 		if (_bosses.containsKey(bossId))
 			_bosses.remove(bossId);
 		
@@ -412,6 +430,7 @@
 			_schedules.clear();
 		}
 		
+		_respawns.clear();
 		_storedInfo.clear();
 		_spawns.clear();
 	}
Index: java/net/sf/l2j/gameserver/model/actor/instance/L2RaidBossStatusInstance.java
===================================================================
--- java/net/sf/l2j/gameserver/model/actor/instance/L2RaidBossStatusInstance.java	(revision 0)
+++ java/net/sf/l2j/gameserver/model/actor/instance/L2RaidBossStatusInstance.java	(working copy)
@@ -0,0 +1,126 @@
+/*
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2, or (at your option)
+ * any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+ * 02111-1307, USA.
+ *
+ * http://www.gnu.org/copyleft/gpl.html
+ */
+package net.sf.l2j.gameserver.model.actor.instance;
+
+import java.util.Calendar;
+import net.sf.l2j.gameserver.cache.HtmCache;
+import net.sf.l2j.gameserver.datatables.NpcTable;
+import net.sf.l2j.gameserver.instancemanager.RaidBossSpawnManager;
+import net.sf.l2j.gameserver.model.actor.template.NpcTemplate;
+import net.sf.l2j.gameserver.network.serverpackets.NpcHtmlMessage;
+
+public class L2RaidBossStatusInstance extends L2NpcInstance
+{ 
+	private static final int[] RBOSSES = {25418,25434,25126};
+	private static int MBOSS = 25126;
+
+	public L2RaidBossStatusInstance(int objectId, NpcTemplate template)
+	{
+		super(objectId, template);
+	}
+
+	@Override
+	public void showChatWindow(L2PcInstance player)
+	 {
+		generateFirstWindow(player);
+	 }
+	
+	private void generateFirstWindow(L2PcInstance activeChar)
+	{
+		final StringBuilder sb = new StringBuilder();
+	
+		for(int rboss : RBOSSES)
+		{
+			
+			long delay = RaidBossSpawnManager.getInstance().getRespawntime(rboss);
+			String name = NpcTable.getInstance().getTemplate(rboss).getName().toUpperCase();
+			
+			if (delay==0)
+			{
+				sb.append("<font color=\"b09979\">"+name +" IS ALIVE!</font><br1>");
+			}
+			else if (delay<0)
+			{
+				sb.append("<font color=\"FF0000\"> "+name +" IS DEAD.</font><br1>");
+			}
+			else
+			{
+				delay =  RaidBossSpawnManager.getInstance().getRespawntime(rboss) - Calendar.getInstance().getTimeInMillis();
+				sb.append("<font color=\"b09979\">"+name+"</font> "+ConverTime(delay)+" <font color=\"b09979\">TO RESPAWN.</font><br1>");
+			}
+		}
+		
+		long m_delay = RaidBossSpawnManager.getInstance().getRespawntime(MBOSS);
+		String m_name = NpcTable.getInstance().getTemplate(MBOSS).getName().toUpperCase();
+		
+		String mainBossInfo ="";
+		
+		if (m_delay==0)
+		{
+			mainBossInfo = "WE SHOULD HAVE ACTED<br1><font color=\"b09979\">"+m_name+" IS ALIVE!</font><br1>";
+		}
+		else if (m_delay<0)
+		{
+			mainBossInfo = "IT'S ALL OVER<br1><font color=\"FF0000\"> "+m_name+" IS DEAD.</font><br1>";
+		}
+		else
+		{
+			m_delay =  m_delay - Calendar.getInstance().getTimeInMillis();
+			mainBossInfo = "<font color=\"b09979\">"+ConverTime(m_delay)+"</font><br1>UNTIL OBLIVION OPEN!";
+		}
+		
+	    NpcHtmlMessage html = new NpcHtmlMessage(1);
+	    html.setFile(getHtmlPath(getNpcId(), 0));
+	    html.replace("%objectId%", getObjectId());
+	    html.replace("%bosslist%", sb.toString());
+	    html.replace("%mboss%", mainBossInfo);
+	    activeChar.sendPacket(html);
+	}
+	
+	private static String ConverTime(long mseconds)
+	{ 
+		long remainder = mseconds;
+		
+		long hours = (long)Math.ceil((mseconds/(60*60*1000)));
+		remainder = mseconds - (hours*60*60*1000);
+		
+		long minutes = (long)Math.ceil((remainder / (60*1000)));
+		remainder = remainder -(minutes *(60*1000));
+ 
+		long seconds = (long)Math.ceil((remainder / 1000));
+	 
+		return hours+":"+minutes+":"+seconds;
+	}
+	
+	@Override
+	public String getHtmlPath(int npcId, int val)
+	{
+		String filename;
+		
+		if (val == 0)
+			filename = "data/html/mods/RaidBossStatus/" + npcId + ".htm";
+		else
+			filename = "data/html/mods/RaidBossStatus/" + npcId + "-" + val + ".htm";
+		
+		if (HtmCache.getInstance().isLoadable(filename))
+			return filename;
+		
+		return "data/html/mods/RaidBossStatus/" + npcId + ".htm";
+	}
+}
\ No newline at end of file
Edited by Caparso
  • Like 1
  • 1 month later...
  • 9 months later...
  • 2 months later...
Posted

[ private static final int[] RBOSSES = {25418,25434,25126};
private static int MBOSS = 25126;MBOSS main boss (one and only).
RBOSSES list of additional bosses (as many as you want).  ]

 

Mboss is one and only ? if i want to use more than Grand bosses like baium or antharas or valakas i can't use it more ? Cause when i use id's on RBOSSES = {25418,25434,25126,29001};  the npc says QUEEN ANT IS DEAD but is alive ! 

What goes wrong ?

  • 2 weeks later...
Posted (edited)

mboss is still raidboss and does NOT support any grandboss (so queen ant as well). i just used this one as some kind of unique raidboss - one and only, with the best drop - so i wanted to highlight this one - just like in preview :)

Edited by Caparso
  • 5 months later...
  • 5 months later...
  • 1 year later...
  • 1 year later...
Posted

            long delay = RaidBossSpawnManager.getInstance().getRespawntime(rboss);

                                                                                                               (HERE)

all ok exept getrespawntime :/

anyone know how to fix that?

  • Sad 1
  • 3 weeks later...
Posted

error end my

 

long delay = RaidBossSpawnManager.getInstance().getRespawntime(rboss);

                                                                                                               (HERE)

 

help

  • 1 year later...

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

    • Quick head's up if anyone needs sniffer we have it and the price is reasonable. any server is doable.
    • so u need to create them and then use the icon name in the prefered ones
    • ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━      ⚔️  A NEW ERA OF LINEAGE 2 PVP  ⚔️         High Five | 2026 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ We are building something that has never existed before. Not another copy. Not another "x2000 PvP server with TvT." This is a complete PvP ecosystem — where every kill matters,every rivalry has a face, and your legacy is worn on your character. We are sharing this here first, before anything is announced publicly. We want feedback. We want the right people. ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 📌  CORE SERVER FEATURES ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 🔹 Chronicle .............. High Five 🔹 Rates .................. x2000 🔹 Safe Enchant ........... +3 🔹 Max Enchant ............ +10 🔹 Enchant Rate ........... 33% 🔹 Buff Slots ............. 24 + 4 🔹 Song & Dance Slots ..... 12 🔹 Buff Duration .......... 4 hours 🔹 TvT .................... Every Hour  (Karma + PvP points) 🔹 Hero ................... Every Week 🔹 Olympiad ............... 3 Hours Daily 🔹 Castle Sieges .......... Weekly 🔹 Territory Wars ......... Weekly 🔹 Grand Bosses ........... 1 week respawn 🔹 Costume Farm Area ...... Custom mobs & zones 🔹 NPC Buffers + GM Shops 🔹 Custom Economy 🔹 Custom Playground 🔹 Custom Events 🔹 Anti-Bot | Anti-DDoS | Highly Secured 🔹 Stable | No Lag | No sudden wipes ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 🚀  5 FEATURES THAT HAVE NEVER EXISTED      ON ANY LINEAGE 2 SERVER ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ ─────────────────────────────────────── 💰  1. BOUNTY HUNTER SYSTEM ─────────────────────────────────────── Every player with high PvP points becomes a target. Anyone can place real in-game adena / currency / gear as a bounty on any specific player they want dead. Kill the target → collect the bounty. → Top 10 Active Bounties visible LIVE on website + in-game board → Updated in real time — anyone can see who has a price on their head → Clans place bounties on enemy leaders before sieges → Creates real economic stakes behind every single kill → 100% organic drama — no admin needed to create conflict ─────────────────────────────────────── 🏆  2. SEASON RANKED LADDER + REAL PRIZE POOL ─────────────────────────────────────── Every 45 days a Season ends. PvP Score resets. Gear stays. Glory is earned. → Top 3 players receive a REAL money prize pool at season end → Top clan earns a unique exclusive in-game title displayed for the entire next season → Permanent Hall of Fame on website — name, class, kills, and season — forever → Season end = fresh ranking start for everyone New players have a real shot. Veterans must defend. → This single feature will make clans actively recruit  and communities form around the server organically ─────────────────────────────────────── 📱  3. LIVE SERVER DASHBOARD ─────────────────────────────────────── A fully live website — accessible from any phone or browser: → Real-time Kill Feed — who killed who, where, when → Live PvP Leaderboard — updated every minute → Live Bounty Board — active bounties and claimed kills → Grand Boss timers — next Baium, Antharas, Valakas spawn → Siege countdown with registered clans visible → Server population — online now, today's peak, all-time peak Why this matters: Players check their phone at work and see their clan is losing the siege. They log in. They recruit a friend. That friend stays. Friends who have never played see the stats and ask what server it is. This is automatic word-of-mouth that no advertisement can buy. ─────────────────────────────────────── ⚔️  4. NEMESIS SYSTEM ─────────────────────────────────────── The system tracks who kills you most. If the same player kills you 5 times in a row — he becomes your official NEMESIS. → A red skull icon appears above his head — visible only to you → Kill your Nemesis → DOUBLE PvP points    + server-wide announcement: "[PlayerX] has avenged his honor against [PlayerY]!" → If he kills you 10 times consecutively → you receive the title [Hunted] — visible to the entire server    Public humiliation. Maximum motivation. → Eliminate your Nemesis → your title is removed    He receives [Defeated] for 1 hour This transforms anonymous PvP into personal rivalries. Players will bring friends just to help eliminate their Nemesis. These stories are what people talk about for years. ─────────────────────────────────────── 👑  5. CLAN SIEGE CROWN — WEARABLE LEGACY TROPHY  ─────────────────────────────────────── This feature does not exist on any L2 server in the world. Every clan that wins a Castle Siege receives 10 custom hat/accessory items — physically wearable in-game. Each Crown is: → UNIQUE per castle — Aden Crown has a different visual from Giran Crown, Rune Crown, Goddard Crown, etc. → PERSONALIZED — the clan name AND clan crest are embedded visually on the hat itself, like a clan cloak but on your head    Every player who sees you knows exactly who you are and what castle your clan owns → NUMBERED — tooltip reads:    "Crown of Aden #4/10 — Season 2"    A collectible. A proof. A statement. → PERMANENT — you lose the castle at next siege, you keep the Crown → LEGACY — at season end it becomes a permanent trophy:    "Crown of Aden — Season 2  |  [YourClanName]"    Stored in your inventory as living history When a player wearing this Crown walks through Giran, everyone sees the clan crest displayed on the accessory. No leaderboard needed. Status is worn on your character.   -------------------------------------------------------------------------------------------------------------------------------------------------------------------- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 🛠️  WHO WE ARE LOOKING FOR ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ We are building the right team first. No launch date until everything is right. ✅ H5 Developer — L2J or L2OFF    Must have experience with high-rate PvP servers    Bonus: experience with custom feature development ✅ Web Developer — for the Live Dashboard + account panel    Must be comfortable with real-time data display    (websockets, live feeds, mobile-friendly) ✅ Designer / 3D Artist — for custom Crown visuals per castle    If you have L2 texture/model experience, we want to talk ✅ GMs / Community Managers    Active, fair, experienced, trusted by the community ✅ Beta Testers    Players who know H5 PvP inside out    Willing to stress-test and break things on purpose ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 💬  WE WANT YOUR HONEST FEEDBACK ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ We are building this WITH the community. Every reply here shapes the final product. → Which of these 5 features excites you most? → What do you think will NOT work and why? → What is missing that would make you stay for months? → Would you play this if it opened tomorrow? We are not looking for hype. We are looking for honest opinions from people who have seen servers rise and fall. Tell us what we are getting wrong. Reply below or send a PM directly. Serious people only. ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ P.S. — The inspiration for this project came from a server many of us played years ago called L2Gang. That nostalgia is what started this conversation. What we are building is something entirely new. ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
    • Please is anyone who can share the compiled version of the l2editor source for interlude? Because i run the !GenerateLibs.bat with the corrected code by CriticalError and then i try to build with the vs 2013 but i get errors again and again and when i try anyway to open or create something with the UnrealEd.exe then it closes automatically.
  • 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..