Jump to content
  • 0

Question

Posted

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 :)

12 answers to this question

Recommended Posts

  • 0
Posted

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?

  • 0
Posted

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

  • 0
Posted

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...

  • 0
Posted

since you are not going to help can you at least tell me a pack that has these two factions? (without the option to set them to true or false like L2JFree)

  • 0
Posted

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.

Guest
This topic is now closed to further replies.


  • Posts

    • Sell ready interlude server files, with all popular features and tested, stable source + fully functional premium geodata for free.   Features include: Events: DM CTF TVT LM Dressme system Custom Buffer GM Shop Custom community board Donation manager  Auto Farm   Album: sell c6 — ImgBB   Test Server online: Patch link: https://drive.google.com/file/d/1mvEbv9XESsvfWwc638xFyyzyESeE2U95/view?usp=drive_link Auto acc create and auto admin   Price: 300$. Discord: l2retro
    • Faltan demasiados archivos,  y lógicas en clases claves como L2pcInstance, entre otras. si bien muchas cosas están y el flujo es valorable.  Gracias por tu esfuerzo es bastante... pero realmente no esta completo el código, falta que subas todas las modificaciones en clases colaterales... podrías intentar subir un diff de todo el mod  completo de tu pack y bueno ahí si que cada uno adapte... pero faltan muchas cosas, dudo que haya gente que lo haya echo funcionar con esto... 
    • I know people who have fully bypassed and reversed AAC. One day, they might even release the full source code, but for now, they’re still making money off it. I won’t name anyone, but it’s clear that there aren’t any truly solid anticheats for Lineage2. As I’ve said before, kernel level anticheats are the only real solution. Anything that runs as Internal and injects gets flagged, and your account ends up getting kicked or banned. That’s just how most games handle it nowadays. To TL;DR the whole thing cheating will always exist because there are people out there smart enough to bypass any protection and run private cheats. Public cheats are always detected eventually, so I don’t see any point in buying AAC, especially when they claim it blocks adr, which simply isn’t true.
    • 🌐 Website: https://l2adonis.com 📅 GRAND OPENING: July 18, 2025 – 20:00 (UTC+2) 💬 Discord: https://discord.com/invite/tZBj8JxAwx 🚫 No auto-farm • No auto-macro • No pay-to-win • No custom   Some Basic Info's (More detalied info's on website)  EXP/SP: x25  Adena: x15  Drop: x15  Spoil: x15  Seal Stones: x15  Raid Boss Drop: x10  Epic Boss Drop: x1  Manor: x10  Safe Enchant: +4  Max Enchant: +16  Normal Scroll Chance: 50%  Blessed Scroll Chance: 66% (If enchant fail item remain +4)  Buff Slots (30+4 extra with Divine Inspiration)  Dances/Songs Slots 14  Auto-learn skills  ⚔️ Real PvP • Real Progression • Retail-like experience JOIN NOW and relive the real L2 experience!
    • Discord         :  utchiha_market Telegram        : https://t.me/utchiha_market Auto Buy Store  : https://utchihamkt.mysellauth.com/ Not sure if we’re legit? Check Our server — real reviews, real buyers https://discord.gg/uthciha-servicess  | https://campsite.bio/utchihaamkt
  • 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