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.


×
×
  • Create New...