pipiou21
Members-
Posts
802 -
Joined
-
Last visited
-
Feedback
0%
Content Type
Articles
Profiles
Forums
Store
Everything posted by pipiou21
-
[Help]Ti exete na peite gia to L2J Freya pack?
pipiou21 replied to pipiou21's question in Request Server Development Help [Greek]
exei vgei file mou... www.l2jserver.com ... -
[Help]Testers Gia Ton Server M ^^
pipiou21 replied to pipiou21's question in Request Server Development Help [Greek]
Sugnwmh ean ekana bump noritera.. prospathw na to kanw swsta wste na mhn floodarw... O Server exei PC Bang Points... auto simenei pws o kathe pexths pernei kathe 1 wra 1 item opou auto to item einai untradable kai xriazontai polla apo auta gia enchant.. dhladh apo +25 se +30 xriazese 100 apo auta gia 1 item... ara 4 hmeres full online mono gi 1 item... ase pou xriazetai kai to farm twn kanonikwn "coin" tou server... Elpizw na katalavate twra pws den einai kai toso eukolo... -
[Help]Testers Gia Ton Server M ^^
pipiou21 replied to pipiou21's question in Request Server Development Help [Greek]
bump.... -
[Help]Testers Gia Ton Server M ^^
pipiou21 replied to pipiou21's question in Request Server Development Help [Greek]
To site einai apo allo temp... alla to exw piraksei ki egw ligo... arketa... kai den lew sto peripou.. einai arketa piragmeno apo emena.. Edit: Ekana ksana authn thn erwtish se allo topic kai mou eipan pws den ginete na valw enan Test server.. prepei na einai live gia na mporw na ton valw ekei.. gi auto.. den vrika allh epilogh.. -
[Help]Testers Gia Ton Server M ^^
pipiou21 replied to pipiou21's question in Request Server Development Help [Greek]
bump... (exei perasei mia hmera apo exthes :P).... exei proxorisei, peite mou thn apopsh sas gia to site, euxaristw prokatavolika... ^^.... -
Eleos :D, tha mpeis sta zones file mou mesa sto datapack sou kai tha psakseis ekei ta spawns... tha to vreis sigoura.. ean oxi.. mhla mou.. psakse prota... pigene edw --> gameserver\data\zones kai einai ena arxio mesa... anoikse to kai psakse...
-
[HELP]Augment Se [PvP] weapons
pipiou21 replied to Immortal Dev. TM's question in Request Server Development Help [Greek]
### 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 || Sorry den vrika to topic kai ekana edw to arxio pou eixa apothikeusei to patch paste... Credits ston creator, oxi se 'mena :D -
[Help]Testers Gia Ton Server M ^^
pipiou21 replied to pipiou21's question in Request Server Development Help [Greek]
bump?! Exei proxorisei polu. -
[Help]Testers Gia Ton Server M ^^
pipiou21 replied to pipiou21's question in Request Server Development Help [Greek]
bump, einai online autes tis hmeres, menei on to pc. -
[Help]Ideas For My Server's Protection (L2JServer Pack)
pipiou21 replied to pipiou21's question in Request Server Development Help [L2J]
bump -
[Help] Diskw site
pipiou21 replied to DVL-Java's question in Request Server Development Help [Greek]
Up gt paidia tha hthela na mathw ki egw pws ftiaxneis ena diskw, oloi mes to forum pou exw psaksei vazoun me freesites... opws ucoz.com klp -
PAIDIA PSAXNW GIA ENAN KALO DEVELOPER!
pipiou21 replied to trousaki's question in Request Server Development Help [Greek]
+1, kati tha kanoume, tha vreis vohthia, apla pes mas :P -
[Help]Dedicated Server Aporia
pipiou21 replied to pipiou21's question in Request Server Development Help [Greek]
Auto ean katalava kala shmenei pws den simperilamvanete... swsta? -
[help]Hosting Company
pipiou21 replied to HellRuLeR's question in Request Server Development Help [Greek]
Justice epidi exw kanei mia erwtish kai den exei apantithei, oi times pou leei sto site einai xwris fpa h me? -
Just "OMG" open your navicat, go to the table inside your database named SkillTree and there edit it, or btw, make a shop with forgoten scrolls... if u have problem with other skills then you have to do them one by one or change pack, l2jserver have all of them without mistake..
-
[Help]Dedicated Server Aporia
pipiou21 replied to pipiou21's question in Request Server Development Help [Greek]
bump ki edw :D -
Paidia 8elw help me ton server :S
pipiou21 replied to trousaki's question in Request Server Development Help [Greek]
99% exeis energopihmeno to community board kai den einai anoixta ta port wste na kanei connect, kalhtera na to kaneis False h na mas dikseis ta configs s na sou poume emeis pws na to kaneis, sugnwmh alla den exw mprosta m L2J files gia na sou pw sigkekrimena. -
[Help]Testers Gia Ton Server M ^^
pipiou21 replied to pipiou21's question in Request Server Development Help [Greek]
bump, einai online atm :) -
[Help]Ideas For My Server's Protection (L2JServer Pack)
pipiou21 replied to pipiou21's question in Request Server Development Help [L2J]
Sorry but i'm 15 years old, not too much money to spend, btw, what is the price? i dont think i can buy it, but just to know EDIT: Sorry serk but i cant give this amound of money :) Any other option guys? ^^ -
[Help]Idea gia ligotera bots ston server
pipiou21 replied to pipiou21's question in Request Server Development Help [Greek]
oxi, signwmh den to ethesa swsta, bots ennoontas L2NET, kai tetoia, na mhn bottaroun oi pextes, vasika to na mhn bottaroun den einai efkolo, apla, kati pio efkolo, na tous vriskw pio efkola? ti na pw? kapia lish, peite mou thn apopsh sas mia lish htan to captcha protection to opio plewn exei ginei grafiko kai olo L2NET milaei afto(kai telika vriskoun bypass) -
[Help]Idea gia ligotera bots ston server
pipiou21 posted a question in Request Server Development Help [Greek]
Pera apo tous gm pou tha prepei na einai poloi me arketo activity, exete na proteinete kati allo? -
[Help] 2 Provlimata [GR]
pipiou21 replied to Vegas's question in Request Server Development Help [Greek]
1. Ta cloak einai logiko na mhn fenontai, etsi einai ftiagmena, px to light den fenete, isa isa pou vgazei apo thn light armor kai ena komati gia na fenete "pio light"... den kserw ean to katalabeneis, fwra se dark elf spellholwer robe vesper kai cloak robe na deis tha einai pio "light h armor tou"... etsi to exoun ftiaksei, dunno gt.. -
[Help]Testers Gia Ton Server M ^^
pipiou21 replied to pipiou21's question in Request Server Development Help [Greek]
bump, einai online atm, 3:43 to mesimeri hmera Tetarth 25 aygoustou
