Jump to content
  • 0

8Ematakia Me Tn Sevrer


Question

Posted (edited)

exw kapia problimatakia ta opia kanw search k dn briskw! :/  1.. 8elw na kanw ta infinity weapons enchant-able kai na ta forane oloi oi chars apo 1lvl.. (ane3artita apo to grade penalty)2.. peirazw ta stats tis apella main.. alla in-game dn xriazete na foresw set gia na parw t stats p ebala.. mono t kommati p eftia3a(ta ID tis apella ta peira mesa apo to navicat)(ekana peiramata kai st armor_sets.xml.. uparxi h armor me ta swsta id) 3.. sto custom shop enw dixnei ka8e kommati tis apella(light-heavy-robe) otn pataw na agorasei.. agorazei mono helmet! ligo help 8a t i8ela..!

Edited by Lolakias

2 answers to this question

Recommended Posts

  • 0
Posted

gia to prwto dokimase auto

 

 

	### Eclipse Workspace Patch 1.0
	#P L2_GameServer
	Index: java/com/l2jserver/gameserver/network/clientpackets/AbstractRefinePacket.java
	===================================================================
	--- java/com/l2jserver/gameserver/network/clientpackets/AbstractRefinePacket.java    (revision 3959)
	+++ java/com/l2jserver/gameserver/network/clientpackets/AbstractRefinePacket.java    (working copy)
	@@ -241,7 +241,7 @@
	             return false;
	         if (item.isAugmented())
	             return false;
	-        if (item.isHeroItem())
	+        if (item.isHeroItem() && !Config.ENABLE_HERO_WEAPON_AGUMENT)
	             return false;
	         if (item.isShadowItem())
	             return false;
	@@ -253,7 +253,7 @@
	             return false;
	         if (item.isWear())
	             return false;
	-        if (item.isPvp())
	+        if (item.isPvp() && !Config.ENABLE_PVP_WEAPON_AGUMENT)
	             return false;
	         if (item.getItem().getCrystalType() < L2Item.CRYSTAL_C)
	             return false;
	Index: java/com/l2jserver/gameserver/network/clientpackets/RequestConfirmCancelItem.java
	===================================================================
	--- java/com/l2jserver/gameserver/network/clientpackets/RequestConfirmCancelItem.java    (revision 3959)
	+++ java/com/l2jserver/gameserver/network/clientpackets/RequestConfirmCancelItem.java    (working copy)
	@@ -66,7 +66,7 @@
	             return;
	         }
	 
	-        if (item.isPvp())
	+        if (item.isPvp() && !Config.ENABLE_PVP_WEAPON_AGUMENT && !Config.ENABLE_HERO_WEAPON_AGUMENT)
	         {
	             activeChar.sendPacket(new SystemMessage(SystemMessageId.THIS_IS_NOT_A_SUITABLE_ITEM));
	             return;
	Index: java/com/l2jserver/gameserver/network/clientpackets/AbstractEnchantPacket.java
	===================================================================
	--- java/com/l2jserver/gameserver/network/clientpackets/AbstractEnchantPacket.java    (revision 3959)
	+++ java/com/l2jserver/gameserver/network/clientpackets/AbstractEnchantPacket.java    (working copy)
	@@ -295,7 +295,7 @@
	      */
	     protected static final boolean isEnchantable(L2ItemInstance item)
	     {
	-        if (item.isHeroItem())
	+        if (item.isHeroItem() && !Config.ENABLE_HERO_WEAPON_ENCHANT)
	             return false;
	         if (item.isShadowItem())
	             return false;
	Index: java/com/l2jserver/Config.java
	===================================================================
	--- java/com/l2jserver/Config.java    (revision 3959)
	+++ java/com/l2jserver/Config.java    (working copy)
	@@ -658,6 +658,11 @@
	     public static String ANNOUNCE_PK_MSG;
	     public static String ANNOUNCE_PVP_MSG;
	     public static boolean L2JMOD_CHAT_ADMIN;
	+    public static boolean ENABLE_HERO_WEAPON_ENCHANT;
	+    public static boolean ENABLE_PVP_WEAPON_ELEMENT;
	+    public static boolean ENABLE_HERO_WEAPON_ELEMENT;
	+    public static boolean ENABLE_PVP_WEAPON_AGUMENT;
	+    public static boolean ENABLE_HERO_WEAPON_AGUMENT;
	 
	     //--------------------------------------------------
	     // NPC Settings
	@@ -1967,7 +1972,7 @@
	                     L2JMOD_WEDDING_SAMESEX = Boolean.parseBoolean(L2JModSettings.getProperty("WeddingAllowSameSex", "False"));
	                     L2JMOD_WEDDING_FORMALWEAR = Boolean.parseBoolean(L2JModSettings.getProperty("WeddingFormalWear", "True"));
	                     L2JMOD_WEDDING_DIVORCE_COSTS = Integer.parseInt(L2JModSettings.getProperty("WeddingDivorceCosts", "20"));
	-
	+                    
	                     L2JMOD_ENABLE_WAREHOUSESORTING_CLAN = Boolean.valueOf(L2JModSettings.getProperty("EnableWarehouseSortingClan", "False"));
	                     L2JMOD_ENABLE_WAREHOUSESORTING_PRIVATE = Boolean.valueOf(L2JModSettings.getProperty("EnableWarehouseSortingPrivate", "False"));
	 
	@@ -2173,6 +2178,12 @@
	                     ANNOUNCE_PVP_MSG = L2JModSettings.getProperty("AnnouncePvpMsg", "$killer has defeated $target");
	                     
	                     L2JMOD_CHAT_ADMIN = Boolean.parseBoolean(L2JModSettings.getProperty("ChatAdmin", "false"));
	+                    
	+                    ENABLE_HERO_WEAPON_ENCHANT = Boolean.parseBoolean(L2JModSettings.getProperty("EnableHeroWeaponEnchant", "False"));
	+                    ENABLE_PVP_WEAPON_ELEMENT = Boolean.parseBoolean(L2JModSettings.getProperty("EnablePvPWeaponElement", "False"));
	+                    ENABLE_HERO_WEAPON_ELEMENT = Boolean.parseBoolean(L2JModSettings.getProperty("EnableHeroWeaponElement", "False"));
	+                    ENABLE_PVP_WEAPON_AGUMENT = Boolean.parseBoolean(L2JModSettings.getProperty("EnablePvPWeaponAgument", "False"));
	+                    ENABLE_HERO_WEAPON_AGUMENT = Boolean.parseBoolean(L2JModSettings.getProperty("EnableHeroWeaponAgument", "False"));
	                 }
	                 catch (Exception e)
	                 {
	Index: java/config/l2jmods.properties
	===================================================================
	--- java/config/l2jmods.properties    (revision 3959)
	+++ java/config/l2jmods.properties    (working copy)
	@@ -263,6 +263,35 @@
	 
	 
	 # ---------------------------------------------------------------------------
	+# PvP/Hero Special Options
	+# ---------------------------------------------------------------------------
	+# Hero Weapons in offical servers can not be enchanted. Whit this option,
	+# you can enable the enchant feature for Hero Weapons.
	+# Default: False
	+EnableHeroWeaponEnchant = False
	+
	+# PvP Weapons in offical servers can not be Elemental Attributed. Whit this option,
	+# you can enable the attribute feature for PvP Weapons.
	+# Default: False
	+EnablePvPWeaponElement = False
	+
	+# Hero Weapons in offical servers can not be Elemental Attributed. Whit this option,
	+# you can enable the attribute feature for Hero Weapons.
	+# Default: False
	+EnableHeroWeaponElement = False
	+
	+# PvP Weapons in offical servers can not be agumented. Whit this option,
	+# you can enable the agumentation feature for PvP Weapons.
	+# Default: False
	+EnablePvPWeaponAgument = False
	+
	+# Hero Weapons in offical servers can not be agumented. Whit this option,
	+# you can enable the agumentation feature for Hero Weapons.
	+# Default: False
	+EnableHeroWeaponAgument = False
	+
	+
	+# ---------------------------------------------------------------------------
	 # Display Server Time
	 # ---------------------------------------------------------------------------
	 # This option will enable displaying of the local server time for /time command.
	Index: java/com/l2jserver/gameserver/network/clientpackets/RequestExEnchantItemAttribute.java
	===================================================================
	--- java/com/l2jserver/gameserver/network/clientpackets/RequestExEnchantItemAttribute.java    (revision 3959)
	+++ java/com/l2jserver/gameserver/network/clientpackets/RequestExEnchantItemAttribute.java    (working copy)
	@@ -94,7 +94,7 @@
	         }
	 
	         //can't enchant rods, shadow items, adventurers', PvP items, hero items, cloaks, bracelets, underwear (e.g. shirt), belt, necklace, earring, ring
	-        if (item.getItem().getItemType() == L2WeaponType.ROD || item.isShadowItem() || item.isPvp() || item.isHeroItem() || item.isTimeLimitedItem() ||
	+        if (item.getItem().getItemType() == L2WeaponType.ROD || item.isShadowItem() || (item.isPvp() && !Config.ENABLE_PVP_WEAPON_ELEMENT) || (item.isHeroItem() && !Config.ENABLE_HERO_WEAPON_ELEMENT) || item.isTimeLimitedItem() ||
	             (item.getItemId() >= 7816 && item.getItemId() <= 7831) || (item.getItem().getItemType() == L2WeaponType.NONE) ||
	             item.getItem().getItemGradeSPlus() != L2Item.CRYSTAL_S || item.getItem().getBodyPart() == L2Item.SLOT_BACK ||
	             item.getItem().getBodyPart() == L2Item.SLOT_R_BRACELET || item.getItem().getBodyPart() == L2Item.SLOT_UNDERWEAR ||
	

einai gia Epilogue kai einai kai gia ta PvP Weapons gia enchant kai gia augment. opote ean kaneis tis kataliles alages tha to kaneis na doulepsei gia gia interlude

 

twra gia to deutero prwti fwra to akouw..

kai gia to trito exeis kanei lathos sto multisell postaretw edw

  • 0
Posted (edited)

2.. peirazw ta stats tis apella main.. alla in-game dn xriazete na foresw set gia na parw t stats p ebala.. mono t kommati p eftia3a

 

o logos pou sto kani afto einai epidi kanis ontos edit to item kai oxi to set

gia na kanis edit to set mpes sto game fora ena ena ta set ksexortista

alt + G kai des sta passive skill to onoma pou emfanizi gia to skill tis armor

pliktrologiseto sto search kai pata skill search

to id pou tha sou dosi px 6542 tha to vris sta skills kai oxi  sta items

kai meta oti edit thelis na kanis stin armor tha to kanis apo ekei oste otan ginete set na dini ta stats pou theleis

elpizo na voithisa...oso gia to proto an exeis frozen iparxi etimo config....

oso gia to trito tha sinfoniso me ton excalibur exeis kani lathos sto multisell

Edited by Kateriniotis

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now


  • Posts

    • Vouch for @Ave i can say im very statisfied with the order I've made he was fast and reliable i totally recommend him to anyone who wants a decent updater with high quality design.
    • What can I say other than that I’m satisfied with the order I made. The guy is reliable and very good at what he does. I recommend him 100%.
    • Lineage2 Freya High Five @ Reshade with fog and rain etc @ Gracia final epilogue atmosphere   this reshade will eat lots of GPU power 50% or more of an RTX 3060 so be carefull depending on what effects are activated and their settings will eat even more GPU recomended 60hz monitor settings and via nvidia panel in Lineage2 game profile vsync settings to on effects are set up till film deck and the rest are not used but still working again this can eat alot of GPU Don't overheat GPU this is for freya high five but might work on others too copy in the  System  folder the folder  reshade-shaders  and the files  d3d9.dll  ReShade.ini  ReShadePreset.ini  ReShade.log  CccDddCcc.ini insert opens the menu and delete is on and of some settings need  ctrl + left click  to be changed   making another profile will reset the not activated effects to their default values so just copy the profile  CccDddCcc  and rename if needed also something needs to be closed from settings in game menu, the blur at distance and advanced shaders but keeping the advanced water effects all reflections   for those that don't like the h5 look of the sky and the red fog and rain and ambien red at night on all maps well if we want the cool gracia final epilogue back then we need to do this rename the  Maps  folder to Mapsretail or whatever copy the  Maps  folder from gracia final epilogue to h5 also we need the  L2_Skies.utx  from gracia final epilogue  Textures  folder to be replaced and also we need to do the same to the files  timeenv0.int  timeenv1.int  timeenv2.int  timeenv3.int  found in  system  folder   another setting that will probably be needed but not really tested out is to open file  option.ini  from  system  folder and add cachesize like this   [FirstRun] FirstRun=2   [Engine.GameEngine] CacheSizeMegs=512   also maybe is good to change those to 4.000000   [ClippingRange] Terrain=4.000000 Actor=4.000000 StaticMesh=4.000000 StaticMeshLod=4.000000 Pawn=4.000000       sorry bad english   https://mega.nz/file/aRNXxDrQ#mbxrNERBtW0XEEezK6w8-86oZWuX1k6NgtR6RZWKRVM   the compression on the video is kinda bad but meh    
  • 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..