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

    • DISCORD : utchiha_market telegram : https://t.me/utchiha_market SELLIX STORE : https://utchihamkt.mysellix.io/ Join our server for more products : https://discord.gg/hood-services https://campsite.bio/utchihaamkt  
    • Server Rates: » Xp 500x. » Sp 500x. » Aden 500x. » Drop 1x. » PartyXp 2x. » PartySp 2x. » Starting character level -61. Enchant rates: » Safe enchant +4. » Blessed and simple scrolls max enchant (+16). » Crystal scrolls max enchant (+20). » Simple enchant scrolls chance – 65%. » Blessed enchant scrolls chance – 100%. » Crystal enchant scrolls chance – 50% Augmentations: » Mid life stone skill chance – 5%. » High life stone skill chance – 10%. » Top life stone skill chance – 20%. » Augments 1+1 Unique features: » Main town – Giran » Automatic-Manual Potions. » Working 2 castle sieges. (Giran-Aden) » SPS cancel lasts 10 seconds and than buffs come back. » Stackable scrolls, lifestones, book of giants. » Unique pvp zone » More then 11 active raid bosses. » Wedding system. » Unique farming areas. » Npc skill enchanter. » Full npc buffer with auto buff. » Max count of buffs – 55. » Max subclasses – 4. » Free and no quest class change. » Free and no quest sub class. » Raid boss drop nobless item. » No weight limit. » Unique protection anti-hwy armor for archers/daggers etc. » Ingame password change. » Top pvp/pk/online ranks NPC. » Unique monsters & NPC. » Interlude retail skills. » Server up-time [24/7] [99]%. » Perfect class balance (all class can kill all class depending on players skill and setup knowledge,gear,augmentations). » Announcements on double kills triple kills etc. » Announcements on Grand Boss death , with the name of the killer as well as clan name of the player. » Information Npc in game with all servers infromations. Custom server gear : 1). Titanium Armor Lv.1 2). Epic Armor Lv.2 3). Epic Weapons-Kamikaze-Black S grade (Same Stats) 4). Demonic-Angelic Wings-Baium Hair-Custom Accessories (SameStats) 5). Custom Fighter/Mage tattoo Lv1-Lv2-Lv3 6). Shirt (STR,CON,INT +1) 7). Custom Shields Server Commands: .tvtjoin .tvtleave – Join or leave tvt event. .ctfjoin .ctfleave – Join or leave ctf event. .dmjoin .dmleave – Join of leave dm event. .online – current online players count. .repair – repairs stuck character in world. .menu – opens online menu panel. .exit – PVP zone exit in case you are bullied. .changepassword - Opens online menu then u can change ur password in game. .farm - Enable/disable autofarm Event system: » TVT event » CTF event » DM event » Tournament Event » Party Zone » Unique event shop. Olympiad game: » Retail olympiad game. » Competition period [1] week. » Olympiad start time [18:00] end [00:00] GMT+2. » New Heroes every Sunday.
    • Tomorrow grand opening lests go 🙂 
  • Topics

×
×
  • Create New...