Jump to content
  • 0

[HELP] This code can adapt in interlude ??


Question

Posted

Hello ppl this code can work for Interlude L2jfrozen?

 

### Eclipse Workspace Patch 1.0
#P Gameserver
Index: java/com/l2jserver/gameserver/model/actor/instance/L2PcInstance.java
===================================================================
--- java/com/l2jserver/gameserver/model/actor/instance/L2PcInstance.java	(revision 4519)
+++ java/com/l2jserver/gameserver/model/actor/instance/L2PcInstance.java	(working copy)
@@ -59,6 +64,7 @@
import com.l2jserver.gameserver.communitybbs.Manager.RegionBBSManager;
import com.l2jserver.gameserver.datatables.AccessLevels;
import com.l2jserver.gameserver.datatables.AdminCommandAccessRights;
+import com.l2jserver.gameserver.datatables.ArmorSetsTable; //added Armor effect by Annu and mvaios
import com.l2jserver.gameserver.datatables.CharNameTable;
import com.l2jserver.gameserver.datatables.CharTemplateTable;
import com.l2jserver.gameserver.datatables.ClanTable;
@@ -379,6 +393,7 @@
		}
	}

+	private int abnormal = AbnormalEffect.VITALITY.getMask(); //added Armor effect by Annu and mvaios
	private L2GameClient _client;

	private String _accountName;
@@ -7458,7 +7482,169 @@
		checkPetInvItems();
	}
+	
+	// //added Armor effect by Annu and mvaios
+	public void checkForVitalityEffect()
+	{
+		
+		boolean getVitalityEffect = false;
+		try
+		{
+			if (
+					ArmorSetsTable.getInstance().getSet(9417).isEnchanted(6, this)
+					|| ArmorSetsTable.getInstance().getSet(9418).isEnchanted(6, this)
+					|| ArmorSetsTable.getInstance().getSet(9419).isEnchanted(6, this)
+					|| ArmorSetsTable.getInstance().getSet(9420).isEnchanted(6, this)
+					|| ArmorSetsTable.getInstance().getSet(9426).isEnchanted(6, this)
+					|| ArmorSetsTable.getInstance().getSet(9427).isEnchanted(6, this)
+					|| ArmorSetsTable.getInstance().getSet(10126).isEnchanted(6, this)
+					|| ArmorSetsTable.getInstance().getSet(10127).isEnchanted(6, this)
+					|| ArmorSetsTable.getInstance().getSet(9433).isEnchanted(6, this)
+					|| ArmorSetsTable.getInstance().getSet(9434).isEnchanted(6, this)
+					|| ArmorSetsTable.getInstance().getSet(9435).isEnchanted(6, this)
+					|| ArmorSetsTable.getInstance().getSet(9436).isEnchanted(6, this)
+				)
+			{
+				getVitalityEffect = true;
+			}
+		}
+		catch (Exception e)
+		{
+			_log.log(Level.WARNING,"Armor exception message: " + e.getMessage(),e);
+		
+		}
+		
+		if (getVitalityEffect)
+		{
+			startAbnormalEffect(abnormal);
+		}
+		else
+		{
+			stopAbnormalEffect(abnormal);
+		}
+	}
+		
+		// end added
+		
+	
+	/**
	 * Restore recipe book data for this L2PcInstance.
	 */
	private void restoreRecipeBook(boolean loadCommon)
Index: java/com/l2jserver/gameserver/model/L2ArmorSet.java
===================================================================
--- java/com/l2jserver/gameserver/model/L2ArmorSet.java	(revision 4519)
+++ java/com/l2jserver/gameserver/model/L2ArmorSet.java	(working copy)
@@ -195,4 +195,35 @@

		return true;
	}
+	
+		
+	//added Armor effect by Annu and mvaios
+	public boolean isEnchanted(int enchantLevel, L2PcInstance player)
+	{
+		// Player don't have full set
+		if (!containAll(player))
+			return false;
+		
+		Inventory inv = player.getInventory();
+		
+		L2ItemInstance chestItem = inv.getPaperdollItem(Inventory.PAPERDOLL_CHEST);
+		L2ItemInstance legsItem = inv.getPaperdollItem(Inventory.PAPERDOLL_LEGS);
+		L2ItemInstance headItem = inv.getPaperdollItem(Inventory.PAPERDOLL_HEAD);
+		L2ItemInstance glovesItem = inv.getPaperdollItem(Inventory.PAPERDOLL_GLOVES);
+		L2ItemInstance feetItem = inv.getPaperdollItem(Inventory.PAPERDOLL_FEET);
+	
+		if (chestItem == null || chestItem.getEnchantLevel() < enchantLevel)
+			return false;
+				if (_legs != 0 && (legsItem == null || legsItem.getEnchantLevel() < enchantLevel))
+					return false;
+				if (_gloves != 0 && (glovesItem == null || glovesItem.getEnchantLevel() < enchantLevel))
+					return false;
+				if (_head != 0 && (headItem == null || headItem.getEnchantLevel() < enchantLevel))
+					return false;
+				if (_feet != 0 && (feetItem == null || feetItem.getEnchantLevel() < enchantLevel))
+					return false;
+	
+			return true;
+		}
+		//end added
}
Index: java/com/l2jserver/gameserver/model/itemcontainer/Inventory.java
===================================================================
--- java/com/l2jserver/gameserver/model/itemcontainer/Inventory.java	(revision 4519)
+++ java/com/l2jserver/gameserver/model/itemcontainer/Inventory.java	(working copy)
@@ -537,6 +538,7 @@
								_log.warning("Inventory.ArmorSetListener: Incorrect skill: "+armorSet.getEnchant6skillId()+".");
						}
					}
+					player.checkForVitalityEffect();//added Armor effect by Annu and mvaios
				}
			}
			else if (armorSet.containShield(item.getItemId()))
@@ -615,6 +617,9 @@

			if (remove)
			{
+				////added Armor effect by Annu and mvaios
+				player.checkForVitalityEffect();
+				//added
				if (skills != null)
				{
					for (String skillInfo : skills)

 

because exist 1 effect from freya Vitality* effect how can i adapt to my pack it with an other effect ??

How can i fint it the other effects??

if i try to add from a Raid Boss An effect will work on armor??

 

This code is when an armor become +6 set or +6 main armor an effect like vitality spawned in chect armor*

 

Recommended Posts

  • 0
Posted

AbnormalEffects are inside:

com.l2jfrozen.gameserver.model.L2Character

One example could be:

private int abnormal = L2Character.ABNORMAL_EFFECT_REDCIRCLE;

  • 0
Posted

AbnormalEffects are inside:

com.l2jfrozen.gameserver.model.L2Character

One example could be:

private int abnormal = L2Character.ABNORMAL_EFFECT_REDCIRCLE;

 

i find the effect where i like and i replace the old one ? right?

 

Kernon Rb (i m not sure for that have one black fire effect that can work on armor what you say?)

  • 0
Posted

i find the effect where i like and i replace the old one ? right?

 

Kernon Rb (i m not sure for that have one black fire effect that can work on armor what you say?)

Yea...

Dunno which effect it has...

  • 0
Posted

1st code was

+import com.l2jserver.gameserver.datatables.ArmorSetsTable; //added Armor effect by Annu and mvaios

 

and i make it

+import com.l2jserver.gameserver.model.L2ArmorSet; //added Armor effect by Annu and mvaios

this havent problem

 

 

1st code was like this

ArmorSetsTable.getInstance().getSet(9417).isEnchanted(6, this)
+					|| ArmorSetsTable.getInstance().getSet(9418).isEnchanted(6, this)
+					|| ArmorSetsTable.getInstance().getSet(9419).isEnchanted(6, this)
+					|| ArmorSetsTable.getInstance().getSet(9420).isEnchanted(6, this)
+					|| ArmorSetsTable.getInstance().getSet(9426).isEnchanted(6, this)
+					|| ArmorSetsTable.getInstance().getSet(9427).isEnchanted(6, this)
+					|| ArmorSetsTable.getInstance().getSet(10126).isEnchanted(6, this)
+					|| ArmorSetsTable.getInstance().getSet(10127).isEnchanted(6, this)
+					|| ArmorSetsTable.getInstance().getSet(9433).isEnchanted(6, this)
+					|| ArmorSetsTable.getInstance().getSet(9434).isEnchanted(6, this)
+					|| ArmorSetsTable.getInstance().getSet(9435).isEnchanted(6, this)
+					|| ArmorSetsTable.getInstance().getSet(9436).isEnchanted(6, this)
+				)

and i make it like this but get instance is with red lines i cant undestand what need

1st time i adapt code from other client to interlude*

 

L2ArmorSet.getInstance().getSet(9417).isEnchanted(6, this)
				|| L2ArmorSet.getInstance().getSet(9418).isEnchanted(6, this)
				|| L2ArmorSet.getInstance().getSet(9419).isEnchanted(6, this)
				|| L2ArmorSet.getInstance().getSet(9420).isEnchanted(6, this)
				|| L2ArmorSet.getInstance().getSet(9426).isEnchanted(6, this)
				|| L2ArmorSet.getInstance().getSet(9427).isEnchanted(6, this)
				|| L2ArmorSet.getInstance().getSet(10126).isEnchanted(6, this)
				|| L2ArmorSet.getInstance().getSet(10127).isEnchanted(6, this)
				|| L2ArmorSet.getInstance().getSet(9433).isEnchanted(6, this)
				|| L2ArmorSet.getInstance().getSet(9434).isEnchanted(6, this)
				|| L2ArmorSet.getInstance().getSet(9435).isEnchanted(6, this)
				|| L2ArmorSet.getInstance().getSet(9436).isEnchanted(6, this)
			)

i make some changes in this code to adapt it but in this lines i have problem

  • 0
Posted

import com.l2jfrozen.gameserver.datatables.sql.ArmorSetsTable;

 

replace it:

.isEnchanted(6, this)

with it:

.isEnchanted6(this)

  • 0
Posted

you mean

|| L2ArmorSet.getInstance().getSet(9436).isEnchanted(6, this)

 

 

to fix it like this?

|| L2ArmorSet.getInstance().getSet(9436).isEnchanted6(this)

 

if u mean that problem exist GetInstance exist redline*

  • 0
Posted

Yes I mean that.

Your import is wrong...

change it:

+import com.l2jserver.gameserver.model.L2ArmorSet; //added Armor effect by Annu and mvaios 

for it:

import com.l2jfrozen.gameserver.datatables.sql.ArmorSetsTable;

  • 0
Posted

now i have problem in this lines

 

//added Armor effect by Annu and mvaios
	public boolean isEnchanted(int enchantLevel, L2PcInstance player)
	{
		// Player don't have full set
		if (!containAll(player))
			return false;

		Inventory inv = player.getInventory();

		L2ItemInstance chestItem = inv.getPaperdollItem(Inventory.PAPERDOLL_CHEST);
		L2ItemInstance legsItem = inv.getPaperdollItem(Inventory.PAPERDOLL_LEGS);
		L2ItemInstance headItem = inv.getPaperdollItem(Inventory.PAPERDOLL_HEAD);
		L2ItemInstance glovesItem = inv.getPaperdollItem(Inventory.PAPERDOLL_GLOVES);
		L2ItemInstance feetItem = inv.getPaperdollItem(Inventory.PAPERDOLL_FEET);

		if (chestItem == null || chestItem.getEnchantLevel() < enchantLevel)
			return false;
				if (_legs != 0 && (legsItem == null || legsItem.getEnchantLevel() < enchantLevel))
					return false;
				if (_gloves != 0 && (glovesItem == null || glovesItem.getEnchantLevel() < enchantLevel))
					return false;
				if (_head != 0 && (headItem == null || headItem.getEnchantLevel() < enchantLevel))
					return false;
				if (_feet != 0 && (feetItem == null || feetItem.getEnchantLevel() < enchantLevel))
					return false;

			return true;
		}
		//end added

 

i add it here

import com.l2jfrozen.gameserver.datatables.sql.ArmorSetsTable;

 

Red is Inventory*  L2ItemInstance*  L2PcInstance* Legs gloves head feet* all is with red lines* '

my mistake is?

  • 0
Posted

Check if the imports are fine.

I'll help u in 1h, right now I'm at gym, answering with blackberry.

 

i check it but i cant find something all are looking fine ..

  • 0
Posted

public boolean isEnchanted(int enchantLevel, L2PcInstance player)
	{
		// Player don't have full set
		if (!containAll(player))
			return false;

		Inventory inv = player.getInventory();

		L2ItemInstance chestItem = inv.getPaperdollItem(Inventory.PAPERDOLL_CHEST);
		L2ItemInstance legsItem = inv.getPaperdollItem(Inventory.PAPERDOLL_LEGS);
		L2ItemInstance headItem = inv.getPaperdollItem(Inventory.PAPERDOLL_HEAD);
		L2ItemInstance glovesItem = inv.getPaperdollItem(Inventory.PAPERDOLL_GLOVES);
		L2ItemInstance feetItem = inv.getPaperdollItem(Inventory.PAPERDOLL_FEET);

		if (chestItem == null || chestItem.getEnchantLevel() < enchantLevel)
			return false;
				if (_legs != 0 && (legsItem == null || legsItem.getEnchantLevel() < enchantLevel))
					return false;
				if (_gloves != 0 && (glovesItem == null || glovesItem.getEnchantLevel() < enchantLevel))
					return false;
				if (_head != 0 && (headItem == null || headItem.getEnchantLevel() < enchantLevel))
					return false;
				if (_feet != 0 && (feetItem == null || feetItem.getEnchantLevel() < enchantLevel))
					return false;

			return true;
		}

This code is supposed to be inside com.l2jfrozen.gameserver.model.L2ArmorSet

And no red lines.

  • 0
Posted

you have right because 1st time i adapt code from freya i make something worng and thats why i had red lines

Thanks again man you help me again !!

 

 

One Question this code if i wanna add more armor set just increase this lines??

ArmorSetsTable.getInstance().getSet(6379).isEnchanted6(this)
				|| ArmorSetsTable.getInstance().getSet(6382).isEnchanted6(this)
				|| ArmorSetsTable.getInstance().getSet(6380).isEnchanted6(this)
				|| ArmorSetsTable.getInstance().getSet(6381).isEnchanted6(this)
				|| ArmorSetsTable.getInstance().getSet(9426).isEnchanted6(this)
				|| ArmorSetsTable.getInstance().getSet(9427).isEnchanted6(this)
				|| ArmorSetsTable.getInstance().getSet(10126).isEnchanted6(this)
				|| ArmorSetsTable.getInstance().getSet(10127).isEnchanted6(this)
				|| ArmorSetsTable.getInstance().getSet(9433).isEnchanted6(this)
				|| ArmorSetsTable.getInstance().getSet(9434).isEnchanted6(this)
				|| ArmorSetsTable.getInstance().getSet(9435).isEnchanted6(this)
				|| ArmorSetsTable.getInstance().getSet(9436).isEnchanted6(this)
			)

 

  • 0
Posted

Yes.

|| ArmorSetsTable.getInstance().getSet(6382).isEnchanted6(this) 

Add a line and the number inside getSet(4324234234234) must be the id of the chest/fullbody item of the armor u want.

  • 0
Posted

Can you give me an example because i dont undestand

ID of Dragonic armor is (Main 6379,6382,6380,6381) & Imperial armor set is (6373,6374,6375,6376,6378,6377)

ArmorSetsTable.getInstance().getSet(6379).isEnchanted6(this)
				|| ArmorSetsTable.getInstance().getSet(6382).isEnchanted6(this)
				|| ArmorSetsTable.getInstance().getSet(6380).isEnchanted6(this)
				|| ArmorSetsTable.getInstance().getSet(6381).isEnchanted6(this)
				|| ArmorSetsTable.getInstance().getSet(6373).isEnchanted6(this)
				|| ArmorSetsTable.getInstance().getSet(6374).isEnchanted6(this)
				|| ArmorSetsTable.getInstance().getSet(6375).isEnchanted6(this)
				|| ArmorSetsTable.getInstance().getSet(6376).isEnchanted6(this)
				|| ArmorSetsTable.getInstance().getSet(6378).isEnchanted6(this)
				|| ArmorSetsTable.getInstance().getSet(6377).isEnchanted6(this)
				|| ArmorSetsTable.getInstance().getSet(9435).isEnchanted6(this)
				|| ArmorSetsTable.getInstance().getSet(9436).isEnchanted6(this)
			)

 

if i add only dragonic armor in 1st lines Effect work normal , i cant undestand how i add more armors

i try to add only dragonic Main but not working .

i try to add 

|| ArmorSetsTable.getInstance().getSet(6379638263806381).isEnchanted6(this)

but not working

 

6377*= IC shield

  • 0
Posted

ArmorSetsTable.getInstance().getSet(6379).isEnchanted6(this)//Draconic.
				|| ArmorSetsTable.getInstance().getSet(6373).isEnchanted6(this)//Imperial
				|| ArmorSetsTable.getInstance().getSet(6383).isEnchanted6(this)//Major Arcana
			) 

You only have to put the chest Id.

Guest
This topic is now closed to further replies.



  • Posts

    • 🏆 UPDATE: CLAN RACE — R$ 300 (PIX in Brazil, or the equivalent in USDT/PayPal) for the first clan ready for World B PvP Worlds opens on Friday, September 25, 19:00 BRT (GMT-3). Everyone starts together, from scratch. The challenge: the first clan with 9 members ready to enter World B wins. Ready = level 51, World C registered and the full C set equipped (weapon, armor and jewelry) with at least 3 attributes on each piece. Only Queen Ant stands between you and World B. Rules: main character only; 9 different people, each on their own PC; the server records the exact time each member became ready. Deadline: October 14. Sign up your clan on our Discord (link on the site): l2mog.com/pvp
    • 🚀 L2-Gold Custom PvP – Beta Test is LIVE! 🚀 Hey guys! We are opening a brand new Custom PvP server and looking for passionate players to help us test it out before the official grand opening! 💥 What we offer: High Rates & Custom PvP Gameplay Custom NPC Buffer, GM Shop & Global GK Balanced classes and epic custom items Interlude with c4 skills 🎁 Beta Rewards: Every active tester who reports bugs or gives feedback will receive Exclusive Custom Rewards on the official launch day! 🛑 No website needed yet! All files, patch, and support are inside our Discord. 🔗 Join Beta Test Here: [https://discord.gg/9qkSxQtTq]
    • "CAN YOU DO A BULGARIAN REVOLUT?" – WE DID. FIRST DRAFT, NO EDITS The request came in short: a photo of a bank card, Bulgaria, Revolut. We said yes and asked the only question that matters – what data. The client was on the road, asked for a couple of hours, then sent the lot: number, expiry, CVV, payment system, bank, cardholder name. Then came the part the client never sees: - ran the number through Luhn – the check digit has to add up, otherwise the card is dead the second anything automated looks at it - matched the BIN to the issuer: Revolut in Bulgaria isn't a "local bank", the cards run through Revolut Bank UAB. The number range has to actually belong there, not just start with the right digit - built the current design, not a five-year-old picture: vertical layout, flat laser print instead of embossing, correct chip module, contactless mark where it belongs - the payment system logo – with the right gradient where the circles overlap and the wordmark sitting exactly where it should. A small thing that kills half the fakes out there - and finally, physics. Plastic has to catch light: a highlight along the edge, a micro-shadow under the chip, a faint fingerprint. A phone shot, not a render Sent the draft for approval. The client looked it over, signed off with zero corrections – final files went out. One pass, no rework. A card is a deceptively simple document. Looks like a rectangle and sixteen digits. In reality it's maths in the number, a tie to the issuer, a current design and light on plastic. Miss any one of the four and the file gets exactly two seconds of attention. Need a card for a specific bank and country? Message us. We'll tell you straight what's realistic for your case – then build it. { all data published with the client's consent} › TG: @mustang_service_ms ( https:// t.me/ mustang_service_ms ) › Channel: Mustang Service ( https:// t.me/ +JPpJCETg-xM1NjNl ) #drawing #card #photoshop #revolut #case
    • ============================================================               CLExt Classic Interlude: v7.80 ============================================================   01. Fixed ValidateLocation handling and player/client position synchronization. 02. Added protection against invalid coordinates and characters falling under the map. 03. Improved XY/Z position and heading validation. 04. Fixed MoveToLocation and MoveToPawn packet conversion and target validation. 05. Fixed TargetSelected, TargetUnselected and MyTargetSelected packet handling. 06. Improved GeoData Z-location handling and disabled unsafe PathNode modifications. 07. Added ExUserInfoInventoryWeight support. 08. Fixed inventory weight and maximum load synchronization. 09. Fixed incorrect 0% inventory weight after character login. 10. Added automatic inventory weight updates after EnterWorld and inventory changes. 11. Added inventory weight packet spam protection and safe weight caching. 12. Fixed BuyList and SellList inventory, slot and weight synchronization. 13. Improved NPC target and Buy/Sell packet validation. 14. Reworked mail attachment inventory and weight validation. 15. Added all-or-nothing mail attachment receiving and safe retry handling. 16. Fixed stackable mail attachment validation and INT_MAX overflow protection. 17. Improved COD Adena validation and post-mail inventory weight refresh. 18. Improved Warehouse Deposit and Withdraw validation. 19. Added protection against malformed warehouse item counts, DBIDs and amounts. 20. Added warehouse INT_MAX, CItem and pSID validation. 21. Improved warehouse anti-dupe protection. 22. Reworked the HTML Cache system for improved stability and memory usage. 23. Added lazy HTML loading instead of loading ~20,000 files during startup. 24. Fixed HTML Cache startup crashes with large HTML collections. 25. Added thread-safe HTML Cache access and Clear/Reload support. 26. Added bad allocation, invalid HTML and oversized HTML protection. 27. Reduced HTML Cache RAM usage, startup allocations and disk I/O. 28. Added HTML Caching ON/OFF with live HTM loading support. 29. Fixed ToggleCachingHook and added VS2005-compatible live HTML handling. 30. Fixed ShortcutInit processing and skill synchronization order. 31. Improved shortcut item validation, augmentation handling and va_list safety. 32. Added LiveMode Ability Point system. 33. Added inventory-item-based Ability Points with configurable pointItemId. 34. Preserved the original level-based Ability Point system as fallback. 35. Fixed incorrect Ability Point display and inventory synchronization. 36. Improved Ability skill learning and point validation. 37. Improved OfflineShopRestore loading and FakePC/DBID handling. 38. Added safer OfflineShopRestore socket limits and batch processing. 39. Prevented thousands of restore sockets from loading simultaneously. 40. Added delayed, non-blocking OfflineShopRestore after server startup. 41. Improved OnEnterWorld initialization order and stability. 42. Improved inventory weight, SkillList and acquired-skill initialization after login. 43. Added VIP integration to the EnterWorld process. 44. Added safe UserExtData initialization without modifying the native User structure. 45. Improved duplicate Bronch Jewel and equipped-slot protection. 46. Improved Bracelet, Belt, Bronch and general UseItem validation. 47. Improved general packet, UserSocket, User, pSD and Creature validation. 48. Added safer INT32/INT64 packet handling and malformed-packet protection. 49. Improved L2Server startup memory usage and lazy resource loading. 50. Reduced unnecessary startup allocations. 51. Improved account-only KeyEngine authentication and remote account validation. 52. Removed account expiration-time requirements. 53. Added updater/restart design without requiring CLExtUpdate.exe. 54. Improved CLIEXT HWID, shared-memory and client/server version validation. 55. Improved ReadFile/WriteFile hooks and MemoryProtector handling. 56. Added UoPilot and Extreme Injector detection handling. 57. Reworked VIP point loading, saving and database synchronization. 58. Fixed VIP Level 0 initialization and first VIP activation. 59. Fixed vip.htm activation after login and from party-shared points. 60. Fixed VIP points being incorrectly reset before successful activation. 61. Improved VIP progression from Level 1 through Level 7. 62. Added proper VIP Level 7 MAX/DONE behavior with no Level 8 requirement. 63. Disabled further VIP point collection after reaching maximum level. 64. Reworked VIP BonusInfo/ReceiveVipInfo packet synchronization. 65. Fixed VIP tier, points, duration and level requirement packet fields. 66. Added VIP duration, tier, point and User validation protections. 67. Added safer 64-bit VIP EXP and party EXP calculations. 68. Preserved subclass maximum EXP protection. 69. Improved ItemDataEx validation during character loading. 70. Fixed augmentation loss during login, relog and server restart. 71. Added safe restoration of augmentation IDs directly from the database. 72. Added CItem, pSID, pExItem and User validation during ItemDataEx loading. 73. Improved Shadow Item mana and item lifetime loading. 74. Preserved item protection timeout data during character loading. 75. Added augmentation loading diagnostics and protected valid augmentation data. 76. Preserved database value 0 for genuinely non-augmented items. 77. Added RaidBoss Status synchronization with the World Map. 78. Fixed alive/dead RaidBoss status updates after spawn and death. 79. Added RaidBossStatus as the source of truth for RaidBoss map packets. 80. Fixed RaidBoss map status synchronization after server/database loading.
    • 🚀 L2AQUILA — GRAND OPENING TOMORROW! Lineage 2 Gracia Final — Like L2 Pride, but fresh. The server you've been waiting for opens tomorrow, Saturday 19/09, 16:00 (Greek time) — No Wipe · 24/7 · Anti-DDoS. ⚔️ What's inside: • EXP 9300x · SP 3000x · Adena 5500x · High drop • Max enchant +20 · Safe +3 · 24 buffs / 3 debuffs • 20 free Custom Coins for every new player on day one! • Custom farming zones (Cave of Trials, Cemetery, Ruins of Despair + more) • PvP Events · Olympiads · Offline Trading · Weddings · Balanced classes • Starter + Dynasty shops in every town — playable from minute one 📥 Download: Client + Patch at https://l2aquila.com/index.html 💬 Discord: discord.gg/5ZyBRvG4k · Facebook: facebook.com/l2aquila Be there at opening hour — bring your squad. See you at the Grand Opening! 🔥
  • Topics

×
×
  • Create New...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue..