Jump to content

Flash™

Legendary Member
  • Posts

    2,865
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by Flash™

  1. :o i will join for sure
  2. html [hr] ton fakelo me to name LastHero to vazeis edw. [code] L2J_DataPack\data\scripts\events [/code]
  3. File mou to Freya to boss den uparxei mes sto l2j pack katholou. prepei na to breis kai na to kaneis edit sto pack..
  4. Des ayto edw File mou here
  5. ti pack exeis file mou ? kai ti java code theleis na perasei oste na pareis kai ayta mazi ?
  6. File Rain^ katarxas den exw perasei mono ayta ektos aytou ama pareis ena Freya pack kai to koita3eis kalutera tha deis ti bug exei kai ti den exei .. Ama exeis pisteyeis oti to pack ftiaxtike mes se 2 h 3 ores eisai gelasmenos.. Malon den 3ereis ti bug exei... den lew oti den exei fix i l2j para polla alla exei para polla akoma pou prepei na fix sto pack mesa kai ayta malon den ta exete dei giati paizete mono se pvp server kai ekei akoma kai to bug na to kanete iste gamo... egw file mou to pack ayto to eftia3a gia ton server oxi gia na to doso den exw perasei custom oste na epivarinoun ton server oute na min 3erw ama bgalei kapoio error na min mporw na to diorthoso.. opws ta perisotera pack pou einai edw mesa kai i perisoteres team pou ftiaxnoun ena pack kai to gemizoun custom java kai meta den 3eroun pou tous pane ta 4... ama thelei kapoios na deis tin diafora anamesa sto l2jfreya pack to normal me to diko mou den exw kanena provlima file mou.. o kathe enas exei tin gnwmi tou kai dexomai oti kai na pite... :)
  7. File mou esu mpeneis apo to pc sou me ayth tin ip [192.168.1.2] oi alloi pou tha einai apo ta spitia tous tha mpeneis me ayti tin ip [l2pvpadm.no-ip.biz]
  8. File BlOodDeviL giati exw kai egw hol pigen [Application] tha sou bgalei sta aristera [port Forwaeding] kai ekei tha mporeseis na anoi3eis tis port
  9. file mou ayto to error sto bgazei gia ton logo oti exeis 3exasei na baleis to 'hero' sto characters.sql oriste kai to java code pou to exei mesa kai den to briskh kai sou to bgazei to error tatement = connection.prepareStatement("UPDATE characters SET hero=0 WHERE obj_id=?"); diladi mporeis na kaneis to e3eis na peraseis ayto edw ALTER TABLE `characters` ADD `hero` TINYINT NOT NULL DEFAULT '0' AFTER `nobless`; kai na eisai ok
  10. Ths panos9999 and BlackKiss gia ta kala sas logia magkes.. File KillingYouSoftly ena tha sou pw kai na to valeis kalo sto mialo sou ama ena atomw zitaei help edomesa me tsampouka den pernei tpt. ama ena atomo zitisei help sosta den uparxei periptosi na min ton boi8isoume.. egw prosopika giati den 8elw na pw kati parapano tha sou di3w ayto kati kai thelw na to fix poly kala ayto [Request] Dev Help [L2J] Gr 2015 ayto edw File mou mporei na lisei tin aporia se polla atoma kai akoma kai se esena.. egw prosopika se polla atoma apo edo mesa exw dosei java code pou den ta dino se filous mou aplos giati kapote imouna stin idia fasi me ta paidia kai otan zitousa help mou legane mathe mathe oxi me ta Member pou eisai twra.. alla me ta palia Member px Frank pou itan poly palia to palikari oxi me ta perisotera member twra pou asxolounte me to forum gi ayto min les polla kai kaneis tsampoukades... pigene mathe kai telos to thema edw
  11. oriste File mou Index: /trunk/L2C_TestGameserver/java/com/l2jserver/gameserver/network/serverpackets/MultiSellList.java =================================================================== --- /trunk/L2C_TestGameserver/java/com/l2jserver/gameserver/network/serverpackets/MultiSellList.java (revision 24) +++ /trunk/L2C_TestGameserver/java/com/l2jserver/gameserver/network/serverpackets/MultiSellList.java (revision 71) @@ -119,5 +119,5 @@ else { - writeH(0x00); // enchant level + writeH(ing.getEnchantLevel()); // enchant level writeD(0x00); // augment id writeD(0x00); // mana @@ -154,5 +154,5 @@ else { - writeH(0x00); // enchant level + writeH(ing.getEnchantLevel()); // enchant level writeD(0x00); // augment id writeD(0x00); // mana Index: /trunk/L2C_TestGameserver/java/com/l2jserver/gameserver/model/multisell/PreparedEntry.java =================================================================== --- /trunk/L2C_TestGameserver/java/com/l2jserver/gameserver/model/multisell/PreparedEntry.java (revision 24) +++ /trunk/L2C_TestGameserver/java/com/l2jserver/gameserver/model/multisell/PreparedEntry.java (revision 71) @@ -72,5 +72,5 @@ adenaAmount += _taxAmount; // do not forget tax if (adenaAmount > 0) - _ingredients.add(new Ingredient(ADENA_ID, adenaAmount, false, false)); + _ingredients.add(new Ingredient(ADENA_ID, adenaAmount,0, false, false)); // now copy products Index: /trunk/L2C_TestGameserver/java/com/l2jserver/gameserver/model/multisell/Ingredient.java =================================================================== --- /trunk/L2C_TestGameserver/java/com/l2jserver/gameserver/model/multisell/Ingredient.java (revision 24) +++ /trunk/L2C_TestGameserver/java/com/l2jserver/gameserver/model/multisell/Ingredient.java (revision 71) @@ -30,4 +30,5 @@ private int _itemId; private long _itemCount; + private int _EnchantmentLevel; private boolean _isTaxIngredient, _maintainIngredient; @@ -35,8 +36,9 @@ private ItemInfo _itemInfo = null; - public Ingredient(int itemId, long itemCount, boolean isTaxIngredient, boolean maintainIngredient) + public Ingredient(int itemId, long itemCount,int EnchantmentLevel, boolean isTaxIngredient, boolean maintainIngredient) { _itemId = itemId; _itemCount = itemCount; + _EnchantmentLevel = EnchantmentLevel; _isTaxIngredient = isTaxIngredient; _maintainIngredient = maintainIngredient; @@ -80,5 +82,5 @@ public final int getEnchantLevel() { - return _itemInfo != null ? _itemInfo.getEnchantLevel() : 0; + return _itemInfo == null?_EnchantmentLevel:_itemInfo.getEnchantLevel(); } Index: /trunk/L2C_TestGameserver/java/com/l2jserver/gameserver/datatables/MultiSell.java =================================================================== --- /trunk/L2C_TestGameserver/java/com/l2jserver/gameserver/datatables/MultiSell.java (revision 52) +++ /trunk/L2C_TestGameserver/java/com/l2jserver/gameserver/datatables/MultiSell.java (revision 71) @@ -270,4 +270,8 @@ if ("ingredient".equalsIgnoreCase(n.getNodeName())) { + int enchantmentLevel = 0; + if (n.getAttributes().getNamedItem("enchantmentLevel") != null) + enchantmentLevel = Integer.parseInt(n.getAttributes().getNamedItem("enchantmentLevel").getNodeValue()); + int id = Integer.parseInt(n.getAttributes().getNamedItem("id").getNodeValue()); long count = Long.parseLong(n.getAttributes().getNamedItem("count").getNodeValue()); @@ -286,12 +290,16 @@ mantainIngredient = false; - entry.addIngredient(new Ingredient(id, count, isTaxIngredient, mantainIngredient)); + entry.addIngredient(new Ingredient(id, count, enchantmentLevel, isTaxIngredient, mantainIngredient)); } else if ("production".equalsIgnoreCase(n.getNodeName())) { + int enchantmentLevel = 0; + if (n.getAttributes().getNamedItem("enchantmentLevel") != null) + enchantmentLevel = Integer.parseInt(n.getAttributes().getNamedItem("enchantmentLevel").getNodeValue()); + int id = Integer.parseInt(n.getAttributes().getNamedItem("id").getNodeValue()); long count = Long.parseLong(n.getAttributes().getNamedItem("count").getNodeValue()); - entry.addProduct(new Ingredient(id, count, false, false)); + entry.addProduct(new Ingredient(id, count, enchantmentLevel, false, false)); } } <?xml version='1.0' encoding='utf-8'?> <!-- © 2011 by Sirpaypi --> <list maintainEnchantment="true"> <!-- Moirai Necklace --> <item id="1"> <ingredient id="50000" count="120"/> <production id="15725" count="1" enchantmentLevel="16"/> </item> </list> l2jserver Share
  12. theleis na kaneis update to pack pou einai open o server sou i theleis na kaneis update to pack pou einai mesa sto eclipse ?
  13. File mou gia na kaneis ayto to pragma thelei java code...
  14. TvT Event New Bug[Fix] Olympiad New Bug[Fix] Hellbound New [update] Buffer New [udapte] Skill New Bug [Fix] Custom Config [update] RaidBoosStatus [update] Quest New [Fix] HideAndSeek New Buf [Fix]
  15. to l2jfrozen einai pack me full custom java code kai den 3erei ti allo na kanei kai to gemizi kai allo.. ektos apo ayto ta polla custom se pack dimiourgoun lag gia ton logo oti diavazei para polla o server.. ektos apo ayto min koitate pack me custom na koitate pack pou na exei kanei sosth douleia kai na min exei custom.. ta custom den einai tpt ta pernate kai eseis... to l2jdario den 3erw ama einai kalo gia na pw kati alla apo oti 8umamai to poulaei to palikari twra ti douleia exei kanei se ayto to pack to 3eroun ta palikaria pou to exoun agorasei... :)
  16. Den yparxei kanena pack apo kamia team pou na einai kala stimeno me custom java code.. gia ton logo oti oles i team gemizoun to pack me custom java code kai den 3eroun kan meta ti einai to error pou tha tou bgazei o gameserver.. ama theleis ena kala stimeno me no custom official aplos fixari kai exei kanei poly kalh douleia epano sto pack ayto kai akoma nomizw oti se test morfi. here
  17. alla3e to spawn pou kanoun i char kai des ama sto kanei pali enas aplos tropws..
  18. File KillingYouSoftly otan egw asxoliomouna me to l2 esu isouna akoma....... ta perisotera Member edw mesa pou itan palia sto staff kai einai akoma gia kapoion logo tha exoun ginei ektos apo ayto ama i3eres java opws lews oti eftia3es java gia to balance tote den tha ekanes posa post gia help oute tha zitouses developer. enas pou 3erei den kaneis post gia na ton help atoma apo ena Forum pou exw [Help] dinoume den eimaste idrima gia na taizoume tous pantes tsampa.. o kathe enas exei kapoies gnwseis kai gia na xalasei ton xrono tou gia ton kathe ena edw mesa kostizi ayto den to exeis katalavei. i zwh den einai to tsampa opws exeis mathei esu einai oti kaneis perneis ama esu eisai kakomathimeno opws polous edosa mesa pou dn katalavenete ton xrono pou xalaei o kathe enas gia na kanei tin douleia tou kai ton server tou tote otan megalosete kai orimasete tote tha einai arga.. ektos apo ayto giati to gamisame to thema kai pigame allou to balance den uparxei oute mia sto 100000000 na to ekanes se mia mera me 1 java code.. to ama 3erw kai ti den 3erw mporeis na rwtiseis polla atoma edw mesa kai mporeis na katseis na diavaseis server ante giati nomizete giati iste sto paidiko sta8mo kai sas ta dinoun ta panta etsi oti einai kai edw mesa....
  19. Tvt Event [Fix Bug] Quests:640_TheZeroHour [Fix provlem] Hellbound [Fix] Leodas[Fix]
  20. den uparxa oti thelei duo meres.. des ti eipa kalutera pano apo 2meres kai kala eleossssssssssssssssssssssssssssssssssssssssssssssssssssssssss einai pano apo 2 meres na to kaneis sosto kai alla posa theleis
  21. File KillingYouSoftly akou kati giati nomizeis oti edw kanoume dores edw oti kai java na sou perasoun einai epei plhromeis giati ama theleis na sou ftia3oun ta balance file mou einai pano apo 2 meres na to kaneis sosto kai alla posa theleis... ama theleis mporeis na katseis na matheis na ftiaxneis kai tote tha katalaveis pws einai na kaneis douleia gia to tsampa.. ektos apo ayto enas developer xwris lefta den tha kanei tpt ayto na to 3ereis kala.. ante giati edw nomizete oti emeis imaste malakes pou kathomaste kai ftiaxnoume astamatisa ta pack mas na ta dosoume tsampa kai na sas ftiaxnoume kilas.. forum gia boi8ia einai edw oxi idrima gia dorea....
×
×
  • Create New...