Jump to content
  • 0

lord crown and announce


Assassina

Question

hello

 

im looking for a code for lord announce and auto-give lord crown to the castle owners for l2jserver (interlude last rev.)

 

i know that the lord announce code has already been posted here but its not for the last l2jserver files

 

i login to other servers and i see almost every server has these addons and i cant find them anywhere... especially now that l2jserver forum has been wiped

 

im waiting for your answer.

 

thank god there is maxcheaters for such things... im sure you can find a solution for me :)

Link to comment
Share on other sites

12 answers to this question

Recommended Posts

  • 0

it looks like im using a wrong svn version because my files are these:

 

http://rapidshare.com/files/236284759/Java.rar.html

 

as you can see according to my files i use a newer svn version than the one used in the link you gave me... but thank you anyway.

 

any other help please?

Link to comment
Share on other sites

  • 0

of course it wont apply 100%  , it will need modifications , just add the ++ lines into your code and --- lines if its needed

Link to comment
Share on other sites

  • 0

i cant do that... there are too many lines missing in my files. my files are totally different, like im using another pack lol

 

take a look at them. they have nothing to do with the lines in the post...

Link to comment
Share on other sites

  • 0

Core compiled , not test.

 

Index: C:/workspace/L2_GameServer_It/java/net/sf/l2j/gameserver/clientpackets/EnterWorld.java
===================================================================
--- C:/workspace/L2_GameServer_It/java/net/sf/l2j/gameserver/clientpackets/EnterWorld.java	(revision 3060)
+++ C:/workspace/L2_GameServer_It/java/net/sf/l2j/gameserver/clientpackets/EnterWorld.java	(working copy)
@@ -35,7 +35,9 @@
import net.sf.l2j.gameserver.cache.HtmCache;
import net.sf.l2j.gameserver.communitybbs.Manager.RegionBBSManager;
import net.sf.l2j.gameserver.datatables.MapRegionTable;
+import net.sf.l2j.gameserver.datatables.CircletTable;
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;
import net.sf.l2j.gameserver.instancemanager.DimensionalRiftManager;
@@ -216,6 +218,15 @@
         SystemMessage sm = new SystemMessage(SystemMessageId.WELCOME_TO_LINEAGE);
         sendPacket(sm);

+		if (activeChar.getClan() != null && activeChar.getClan().getHasCastle() > 0)
+		{
+			AddCirclets(activeChar);
+		}
+		else
+		{
+			RemoveCirclets(activeChar);
+		}
+		
         sm = new SystemMessage(SystemMessageId.S1_S2);
         sm.addString(getText("V2VsY29tZSB0byBhIEwySiBTZXJ2ZXIsIGZvdW5kZWQgYnkgTDJDaGVmLg=="));

@@ -377,6 +388,47 @@
         }
     }

+	/**
+	 *  Add a Circlet/Crown if the character haven't one
+	 */
+	public void AddCirclets(L2PcInstance activeChar)
+	{
+		int circletId = CircletTable.getCircletId(CastleManager.getInstance().getCastleByOwner(activeChar.getClan()).getCastleId());
+		if (activeChar.isClanLeader() && activeChar.getInventory().getItemByItemId(6841) == null)
+		{
+			activeChar.addItem("Adding a Crown", 6841, 1, activeChar, true);
+			activeChar.getInventory().updateDatabase();
+		}
+		else if (!activeChar.isClanLeader() && activeChar.getInventory().getItemByItemId(circletId) == null)
+		{
+			activeChar.addItem("Adding a Circlet", circletId, 1, activeChar, true);
+			activeChar.getInventory().updateDatabase();
+		}
+		else
+		{
+			return;
+		}
+	}
+	
+	/**
+	 *	Remove all Circlets/Crown from the Character
+	 */
+	public void RemoveCirclets(L2PcInstance activeChar)
+	{
+		for (L2ItemInstance item : activeChar.getInventory().getItems())
+		{
+			if (CircletTable.getCircletList().contains(item.getItemId()))
+			{
+				activeChar.destroyItem("Removing Circlets/Crown", item, activeChar, false);
+				activeChar.getInventory().updateDatabase();
+			}
+			else
+			{
+				return;
+			}
+		}
+	}
+	
     /**
      * @param activeChar partnerid
      */

 

and CircletTable.java inside gameserver.datatables;

/*
* 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 3 of the License, 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, see <http://www.gnu.org/licenses/>.
*/
package net.sf.l2j.gameserver.datatables;

import javolution.util.FastList;

public class CircletTable
{
private static FastList<Integer> _CircletList = new FastList<Integer>();

public static FastList<Integer> getCircletList()
{
	if (_CircletList.isEmpty())
	{
		_CircletList.add(6834); // Circlet of Innadril
		_CircletList.add(6835); // Circlet of Dion
		_CircletList.add(6836); // Circlet of Goddard
		_CircletList.add(6837); // Circlet of Oren
		_CircletList.add(6838); // Circlet of Gludio
		_CircletList.add(6839); // Circlet of Giran
		_CircletList.add(6840); // Circlet of Aden
		_CircletList.add(8182); // Circlet of Rune
		_CircletList.add(8183); // Circlet of Schuttgart
		_CircletList.add(6841); // The Lord's Crown
	}
	return _CircletList;
}

public static int getCircletId(int castleId)
{
	int circletId = 0;
	switch (castleId)
	{
		case 1:
			circletId = 6838;
			break;
		case 2:
			circletId = 6835;
			break;
		case 3:
			circletId = 6839;
			break;
		case 4:
			circletId = 6837;
			break;
		case 5:
			circletId = 6840;
			break;
		case 6:
			circletId = 6834;
			break;
		case 7:
			circletId = 6836;
			break;
		case 8:
			circletId = 8182;
			break;
		case 9:
			circletId = 8183;
			break;
		case 10:
			circletId = 6841;
			break;
		default:
			circletId = 0;
			break;
	}
	return circletId;
}
}

 

 

Report problems.

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.


  • Posts

    • Thank you for your reply. I have removed it from the L2Server.exe file, but the L2Server still crashes. It doesn't crash if I don't start l2npc, otherwise it will crash within a few days at the latest.
    • Welcome to my store :  https://topestore.mysellix.io/fr/ 2015-2022 Aged Discord Account 2015 Discord Account : 50.99 $ 2016 Discord Account : 10$ 2017 Discord Account :3.99 $ 2018 Discord Account : 3.50$ 2019 Discord Account : 2.70 $ 2020 Discord Account :1.50$ 2021 Discord Account :0.99$ 2022 Discord Account :0.70$ Warranty :Lifetime Payment Methods : Crypto/ PayPal Contact Me On Discord Or Telegram Discord : @ultrasstore11 Telegram : https://t.me/ultrastore1 Welcome to my store :  https://topestore.mysellix.io/fr/ 2015-2022 Aged Discord Account 2015 Discord Account : 50.99 $ 2016 Discord Account : 10$ 2017 Discord Account :3.99 $ 2018 Discord Account : 3.50$ 2019 Discord Account : 2.70 $ 2020 Discord Account :1.50$ 2021 Discord Account :0.99$ 2022 Discord Account :0.70$ Warranty :Lifetime Payment Methods : Crypto/ PayPal Contact Me On Discord Or Telegram Discord : @ultrasstore11
    • L2 ArenaWar: Low Rate PvP Server with Free Buffs & Autofarm [PVP]⚔️ [Free]🆓 Classic Interlude with  3x XP rates! Free starter pack(no grade) to kickstart your adventure! Autofarm for convenient grinding! Free buffs to keep you fighting fit! (2 job buffs) No experience loss on death! (Except with Karma) Clear Karma system to keep things fair! ⚖️ Active community of 800-1k players! Join our Discord to learn more! >> Discord <<     Server website: https://l2arenawar.com/en/    
    • This is dedication! 2 years working on a problem. Congratulations!
    • You indeed have to save player position over Enterworld to properly clean it up later (if you don't, even trying to delete packet content would eventually keep it up), that's what we do with debug packet (which is a reusable Map of ExServerPrimitive packets) on aCis.   It doesn't solve the FPS stuttering - more you draw/delete lines, more your client becomes laggy. It's like if client wasn't deleting drawn points/lines properly, but instead simply hide them and redrawn content above.   If you got a solution, I would happy to integrate it.   You should check aCis#Player _debug packet integration, it allows very big amount of lines/points to be drawn, it is also reusable.   https://gitlab.com/Tryskell/acis_public/-/blob/master/aCis_gameserver/java/net/sf/l2j/gameserver/model/actor/Player.java?ref_type=heads https://gitlab.com/Tryskell/acis_public/-/blob/master/aCis_gameserver/java/net/sf/l2j/gameserver/network/clientpackets/EnterWorld.java?ref_type=heads  
  • Topics

×
×
  • Create New...