Jump to content
  • 0

[REQUEST] Announcement of Lord of the Castle


Question

11 answers to this question

Recommended Posts

  • 0
Posted
Index: /Server/Ventic's_IL_GS/java/net/sf/l2j/Config.java
===================================================================
--- /Server/Ventic's_IL_GS/java/net/sf/l2j/Config.java (revision 331)
+++ /Server/Ventic's_IL_GS/java/net/sf/l2j/Config.java (revision 332)
@@ -307,4 +307,5 @@
     public static boolean   ENABLE_PMREFUSAL_COMMAND;
     public static boolean   ANNOUNCE_RAID_RESPAWN;
+    public static boolean   ANNOUNCE_CASTLE_LORDS;
     
     /** Event Settings Parameters */
@@ -1706,4 +1707,5 @@
                 BLOW_BACK_RATE                   = Integer.parseInt(Modifications.getProperty("BackBlow", "70"));
                 ANNOUNCE_RAID_RESPAWN            = Boolean.parseBoolean(Modifications.getProperty("AnnounceRaidRespawn", "False"));
+                ANNOUNCE_CASTLE_LORDS            = Boolean.parseBoolean(Modifications.getProperty("AnnounceCastleLords", "False"));
             }
             catch (Exception e)
Index: /Server/Ventic's_IL_GS/java/net/sf/l2j/gameserver/network/clientpackets/EnterWorld.java
===================================================================
--- /Server/Ventic's_IL_GS/java/net/sf/l2j/gameserver/network/clientpackets/EnterWorld.java (revision 294)
+++ /Server/Ventic's_IL_GS/java/net/sf/l2j/gameserver/network/clientpackets/EnterWorld.java (revision 332)
@@ -34,4 +34,5 @@
import net.sf.l2j.gameserver.datatables.MapRegionTable;
import net.sf.l2j.gameserver.handler.AdminCommandHandler;
+import net.sf.l2j.gameserver.instancemanager.CastleManager;
import net.sf.l2j.gameserver.instancemanager.ClanHallManager;
import net.sf.l2j.gameserver.instancemanager.CoupleManager;
@@ -46,4 +47,5 @@
import net.sf.l2j.gameserver.model.L2World;
import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance;
+import net.sf.l2j.gameserver.model.entity.Castle;
import net.sf.l2j.gameserver.model.entity.ClanHall;
import net.sf.l2j.gameserver.model.entity.Couple;
@@ -254,4 +256,9 @@
				sendPacket(new NpcHtmlMessage(1, serverNews));
		}
+
+		if (Config.ANNOUNCE_CASTLE_LORDS)
+		{
+			notifyCastleOwner(activeChar);
+		}

		/**
@@ -521,3 +528,18 @@
	    activeChar.setPledgeClass(pledgeClass);
	}
+	
+	private void notifyCastleOwner(L2PcInstance activeChar)
+	{
+		L2Clan clan = activeChar.getClan();
+		
+		if (clan != null)
+		{
+			if (clan.getHasCastle() > 0)
+			{
+				Castle castle = CastleManager.getInstance().getCastleById(clan.getHasCastle());
+				if ((castle != null) && (activeChar.getObjectId() == clan.getLeaderId()))
+					Announcements.getInstance().announceToAll("Player: " + activeChar.getName() + " Lord of: " + castle.getName() + " Castle is Now Online!");
+			}
+		}
+	}
}
Index: /Server/Ventic's_IL_GS/Settings/Modifications.properties
===================================================================
--- /Server/Ventic's_IL_GS/Settings/Modifications.properties (revision 331)
+++ /Server/Ventic's_IL_GS/Settings/Modifications.properties (revision 332)
@@ -208,4 +208,8 @@
ClanTitle = False

+# Announce Castle Lords
+# This script will announce the castle lords name when they log in
+AnnounceCastleLords = False
+

  • 0
Posted

+AnnounceCastleLors = False

 

Should be

 

+AnnounceCastleLords = False

 

 

Little Typo :D

Fixes.Thanks :D

  • 0
Posted

i did but can't find

i can't find this line    ANNOUNCE_RAID_RESPAWN            = Boolean.parseBoolean(Modifications.getProperty("AnnounceRaidRespawn", "False"));

 

  • 0
Posted

i can't find this line    ANNOUNCE_RAID_RESPAWN            = Boolean.parseBoolean(Modifications.getProperty("AnnounceRaidRespawn", "False"));

 

ok w8 until i make it for epilogue

  • 0
Posted

i did but can't find

i can't find this line    ANNOUNCE_RAID_RESPAWN            = Boolean.parseBoolean(Modifications.getProperty("AnnounceRaidRespawn", "False"));

 

 

Come on, don't be lazy >_>

Move a config two lines above the one that the patch shows - serious business.

  • 0
Posted

Index: java/config/l2jmods.properties
===================================================================
--- java/config/l2jmods.properties	(revision 4117)
+++ java/config/l2jmods.properties	(working copy)
@@ -231,7 +231,11 @@
EnableWarehouseSortingClan = False
EnableWarehouseSortingPrivate = False

+# Announce Castle Lords
+# This script will announce the castle lords name when they log in
+AnnounceCastleLords = False
+
+
# ---------------------------------------------------------------------------
# Offline trade/craft
# ---------------------------------------------------------------------------
Index: java/com/l2jserver/gameserver/network/clientpackets/EnterWorld.java
===================================================================
--- java/com/l2jserver/gameserver/network/clientpackets/EnterWorld.java	(revision 4117)
+++ java/com/l2jserver/gameserver/network/clientpackets/EnterWorld.java	(working copy)
@@ -50,6 +50,7 @@
import com.l2jserver.gameserver.model.actor.L2Character;
import com.l2jserver.gameserver.model.actor.instance.L2ClassMasterInstance;
import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
+import com.l2jserver.gameserver.model.entity.Castle;
import com.l2jserver.gameserver.model.entity.ClanHall;
import com.l2jserver.gameserver.model.entity.Couple;
import com.l2jserver.gameserver.model.entity.Fort;
@@ -408,6 +409,11 @@
			if (serverNews != null)
				sendPacket(new NpcHtmlMessage(1, serverNews));
		}
+		
+		if (Config.ANNOUNCE_CASTLE_LORDS)
+		{
+			notifyCastleOwner(activeChar);
+		}

		if (Config.PETITIONING_ALLOWED)
			PetitionManager.getInstance().checkPetitionMessages(activeChar);
@@ -647,4 +653,19 @@

		activeChar.setPledgeClass(pledgeClass);
	}
+	
+	private void notifyCastleOwner(L2PcInstance activeChar)
+	{
+		L2Clan clan = activeChar.getClan();
+			
+	if (clan != null)
+	{
+	if (clan.getHasCastle() > 0)
+	{
+	   Castle castle = CastleManager.getInstance().getCastleById(clan.getHasCastle());
+	if ((castle != null) && (activeChar.getObjectId() == clan.getLeaderId()))
+	   Announcements.getInstance().announceToAll("Player: " + activeChar.getName() + " Lord of: " + castle.getName() + " Castle is Now Online!");
+				}
+			}
+		}
}
Index: java/com/l2jserver/Config.java
===================================================================
--- java/com/l2jserver/Config.java	(revision 4117)
+++ java/com/l2jserver/Config.java	(working copy)
@@ -655,6 +655,7 @@
	public static int BANKING_SYSTEM_ADENA;
	public static boolean L2JMOD_ENABLE_WAREHOUSESORTING_CLAN;
	public static boolean L2JMOD_ENABLE_WAREHOUSESORTING_PRIVATE;
+	public static boolean ANNOUNCE_CASTLE_LORDS;
	public static boolean OFFLINE_TRADE_ENABLE;
	public static boolean OFFLINE_CRAFT_ENABLE;
	public static boolean OFFLINE_SET_NAME_COLOR;
@@ -2035,6 +2036,7 @@

					L2JMOD_ENABLE_WAREHOUSESORTING_CLAN = Boolean.valueOf(L2JModSettings.getProperty("EnableWarehouseSortingClan", "False"));
					L2JMOD_ENABLE_WAREHOUSESORTING_PRIVATE = Boolean.valueOf(L2JModSettings.getProperty("EnableWarehouseSortingPrivate", "False"));
+					ANNOUNCE_CASTLE_LORDS = Boolean.parseBoolean(L2JModSettings.getProperty("AnnounceCastleLords", "False"));

					if (TVT_EVENT_PARTICIPATION_NPC_ID == 0)
					{

 

Don't tell me that you can't even put it.

Guest
This topic is now closed to further replies.


  • Posts

    • Hundreds of players have already jumped into the world of L2Elixir x3, and the server grows bigger every day! A truly international community is forming — EU, NA, LATAM, Asia — all gathering for the same purpose: To relive the L2Elixir era the right way. Join now and be part of the early wave!   Website: https://l2elixir.org/ Discord: https://discord.gg/5ydPHvhbxs   🎄 Christmas Event Activated! 🎄 Craft your Ordinary or Special Christmas Tree, place it outside of a peace zone, and enjoy festive outfits, boosted EXP/SP, Adena, and Drop Rates, plus the Holiday Festival buff  (more HP/MP/CP, higher P.Def/P.Atk/M.Atk, faster movement, reduced MP cost!) every 12-hours! 🎁 Santa’s Hourly Gifts While you’re actively farming, Santa appears worldwide to drop special rewards such as: Special Christmas Tree Christmas Red Sock Santa’s Weapon Exchange Ticket (12h) Gift from Santa Santa Hats & Rudolph accessories Agathion: Rudolph Chest of Experience Shadow Hats Scrolls Event b.soe / b.rez Loot Crates 🔥 Santa’s Weapon Ticket Gives you a D/C/B-grade weapon based on your level, randomly enchanted +4 to +10!  4-hour expiration time. Celebrate, fight, farm — and let Santa upgrade your holidays! 🎅✨
    • what do u mean i want to change the normal weapons some weapons are working perftect some not getting th effect and the arcana has the effect above the weapons as u see ... i dont what is the probkenm
    • Stop paying for files that are already public and free. Here you can download a fully working Interlude server with C4-like gameplay, including source code so you can compile it yourself and verify everything. People will try to convince you that free releases are “broken”, “full of backdoors”, etc. That’s exactly why I’m also providing the SVN with the full source – so you can: Review the code yourself Remove / modify whatever you don’t like Compile your own binaries What’s included GX-EXT Interlude server (C4-style gameplay) – L2Off Client Interlude tweaked for C4 gameplay Public SVN with source code Downloads: Server GX-EXT: https://www.mediafire.com/file/q5ipkjd36tnhfxv/L2OFF_C4_C4_ACU_GXEXT.rar/file Client Interlude C4 Gameplay: https://www.mediafire.com/file/rdkfc8wwau042oh/Cliente_Interlude_Jugabilidad_C4.rar/file SVN (source code, delayed a couple of months to avoid reselling fresh work): https://svn.l2servers.com.ar/!/#GX-EXT_INTERLUDE User: gx Pass: gx How to compile To compile the source you will need: Visual Studio 2005 (x64 toolset) (Classic L2Off toolchain – yes, it’s old, but that’s what the original server uses.) Use this as you want: learn, test, open your own server, or just audit the code. But please, stop buying the same leaked/resold files over and over when you can get them here for free, with source, and actually know what you’re running.  
    • @GX-Ext Please reupload the pack+web+client because all the links inside that post or in the https://l2servers.com.ar/ are dead
    • Weapon dat is not the same for all, since you have custom things for sure no. You can contact @NevesOma
  • 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