Jump to content

ExCaLiBuR®

Members
  • Posts

    3,654
  • Credits

  • Joined

  • Last visited

  • Days Won

    2
  • Feedback

    0%

Everything posted by ExCaLiBuR®

  1. to itemname armorgrp weapongrp kai auta ta pairases ? otan trexeis to gameserver sou vgazei kapoio error ?
  2. efere o bro mou ena iPhone5 apo servia. to peire arketa fthina kai apoti fenete einai gnusio to thema einai oti den mporw na to kanw Update. oxi oti den gunete apla den to vreiskw sto iTunes to exw katevasei sto pc mou kai den kserw pws na to kanw update ektos apo auto otan mpenw stis plirofwries leei kanonika iPhone 5 sto Capacity leei 64GB auta gunete na ta alakseis me kapoion tropo ? diladi ean einai moutha gunete na to kaneis na leei 64GB? kai to teleuteo einai oti otan mpenw stin ruthmiseis kai pugainw sto Reset mou zeitaw pass logika o servos pou to eixe tha evale kwdiko i exei to iphone apo mono tou kapoio pass? kai ean gunete na to afairesw i me kapoio alo tropo na to kanw format kai ektos autou me eipe ena ksaderfaki oti uparxei ena Site opou vazeis ta psufia tou kinitou pou exei kai sou leei ean einai gnusio kserete mipws auto to site ?
  3. mpes edw http://www.yougetsignal.com/tools/open-ports/ vale tin ip apo to dedicated sou kai dokimase ean ta ports einai anoixta(nomizw oti o server prepei na einai on)
  4. anoigeis to firewall kai apo to ON ta kaneis OFF meta pas Advanced Settings pas Inbound Rules kai patas New Rule einai terma epanw deksia.. afou patiseis ekei dialegeis Port grafeis to port pou thes kai etsi anoigeis ta ports sto pc s
  5. wreo filaraki kai mpravo gia tin douleia sou sunexeise etsi
  6. ok pro esu den xreiazetai na asxoleithw alo mazoi sou giati tha me rukseis sto epipedo sou kai tha me kerdiseis logo empeirias ante kai zeita na sto kanoun lock to topic afou auto pou epsaxnes to vreikes tzampa spammaroume Μην τα βάζεις με ηλίθιους. Σε κατεβάζουν στο επίπεδό τους και πάντα σε κερδίζουν...λόγω εμπειρίας!
  7. 0a0xaxaxa den to eipa epeidi eimai xrusi augi re apla exei ena filaraki mou kai einai kai gamo ta skula. polu paixnidiarika alla kai polu agria otan xreiastei.
  8. ama thes skuli pare katharoaimo elliniko poimeniko
  9. psakse mesa sto PcInventory.Java.. an kai den to exw psaksei pote
  10. i have the cs1.6 full protocol 48 (non steam) and i cant play
  11. l22expert i kanta mia metafrasi i autoktwna.. otan prwto mpeikes se auto to forum mlka ean thumase kala egw se helpara. meta efuges delete epeidi olo eleges mlkies. kai epeidi apo auta pou egrapses auta ta liga pou katalava einai siga min se dwsw 500euro gia na dw ton odigo xaxaxaxaxa me ekanes kai gelasa prwtimo na agorasw off pack
  12. hello how i can play cs 1.6 on windows 8 ? i press o open the game and nothing.
  13. wreos o odigos sou filaraki.. tha helparei ta newbies.. me java code. exei gunei share sto forum tis l2jfrozen Smart Enchant Npc nomizw oti legete tou Elfocrash
  14. re file den xriazetai na plirwseis kapoion gia na sou perasei java codes.. prospatheise monos sou kai opou duskoleuteis i se vgalei kapoio error postare edw pera
  15. ean to vreis tha sou dwsw egw 100euro xaxaxa eliwsa....... l22expert den lew oti den gunete auto pou les alla den exei ginei kati tetoio SHARE afou den eisai gnwstis tis java kai den mpwreis na to ftiakseis sou eipa oti tha plurwseis kapoion pou kserei na sto kanei eksalou auto pou thes na kaneis einai AXRISTO. tha ftiaxen alo account kai tha ksanampenei
  16. 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
  17. min trollareis re mlk ta pairnei epanw tou to alo to kimismeno na poume kai exoume provlimata
  18. ekana malakia tou eipa to onoma mou stin arxi.. ta upoloipa ta kserw apo eksw .... ton eipa kai peire.. entaksei me eipe oti to ekanan. thanks filaraki nase kala lock kapoios
  19. arxidia. den mporoun na kanoun kati leei epeidi den eimai o katoxos tou arithmou. tha tous parei tilefwno o pateras mou apo italia na dw ti ston poutso mou tha gunei euxaristw polu filaraki elpizw na vgaloume akri... kapoios alos tropos kana kolpaki den gunete na kanoume ?
×
×
  • Create New...