Rizlaaa Posted May 11, 2012 Author Posted May 11, 2012 Αν ξέρει κάποιος τι μπορώ να κάνω ας μου πει είναι πολύ σημαντικό. Πρεπει να δουλευει. ### Eclipse Workspace Patch 1.0 #P Chr.6GMS Index: java/net/sf/l2j/gameserver/model/Inventory.java =================================================================== --- java/net/sf/l2j/gameserver/model/Inventory.java (revision 5263) +++ java/net/sf/l2j/gameserver/model/Inventory.java (working copy) @@ -936,20 +936,7 @@ if((getOwner() instanceof L2PcInstance) && ((L2PcInstance)getOwner()).getPrivateStoreType() != 0) return; - if(getOwner() instanceof L2PcInstance) - { - L2PcInstance player = (L2PcInstance)getOwner(); - - if(!player.isGM()) - if (!player.isHero()) - { - int itemId = item.getItemId(); - if ((itemId >= 6611 && itemId <= 6621) || itemId == 6842) - { - return; - } - } - } + int targetSlot = item.getItem().getBodyPart(); @@ -1197,19 +1184,8 @@ item = L2ItemInstance.restoreFromDb(objectId); if (item == null) continue; - if(getOwner() instanceof L2PcInstance) - { - L2PcInstance player = (L2PcInstance)getOwner(); - - if(!player.isGM()) - if (!player.isHero()) - { - int itemId = item.getItemId(); - if ((itemId >= 6611 && itemId <= 6621) || itemId == 6842) - item.setLocation(ItemLocation.INVENTORY); - } - } + L2World.getInstance().storeObject(item); // If stackable item is found in inventory just add to current quantity
RaFaaa Posted May 11, 2012 Posted May 11, 2012 mporo na valw java code an t katevasw kanonika tn server ke oxi mesw eclipse?
Rizlaaa Posted May 11, 2012 Author Posted May 11, 2012 mporo na valw java code an t katevasw kanonika tn server ke oxi mesw eclipse? Οχι.
Rizlaaa Posted May 11, 2012 Author Posted May 11, 2012 Αυτό αν είναι εύκολο. ### Eclipse Workspace Patch 1.0 #P Chr.6GMS Index: java/net/sf/l2j/gameserver/clientpackets/RequestEnchantItem.java =================================================================== --- java/net/sf/l2j/gameserver/clientpackets/RequestEnchantItem.java (revision 5263) +++ java/net/sf/l2j/gameserver/clientpackets/RequestEnchantItem.java (working copy) @@ -237,6 +237,11 @@ } item.setEnchantLevel(item.getEnchantLevel()+1); item.updateDatabase(); + + if(item.getEnchantLevel() == 16) + for(L2PcInstance j : L2World.getInstance().getAllPlayers()) + if(j != null && j != activeChar) + j.sendMessage("Congratulations,"+j.getName()+" successful enchanted "+item.getItem().getName()+"+16"); } } else
pnsrx8 Posted May 12, 2012 Posted May 12, 2012 καλησπέρα σε όλους, Θα ήθελα έναν κώδικα (με κώδικα μου είπαν πως θα δουλέψει μόνο) Έτσι ώστε ήττε με τα Enchant Scrolls που έχουμε ήδη ήττε να φτιάξουμε ένα νέο Scroll (δεν υπάρχει θέμα) να μπορεί να γίνετε Enchant από ένα συγκεκριμένο Enchant Level σε ένα άλλο αλλά με πιθανότητες που θα μπορώ να ορίσω εγώ από τα configs (για περισσότερες δοκιμές κυρίως) Ευχαριστώ εκ των πρωτέρων!!!
Voqus Posted May 13, 2012 Posted May 13, 2012 bwris na m ftia3eis ena command p na leei posa on exi o server?esto gia c6 kai 8a try na t adapt.. mporeis na xrhsimopoihseis k ayto: http://maxcheaters.com/forum/index.php?topic=210039 einai to idio pragma apla me auto to code s bgazei ena para8uro me to posa atoma einai online. Fusika, mporei na ginei k me TextBuilder class, anyway. (to code sto link einai gia freya, mporei na ginei adapt se IL)
An4rchy Posted May 15, 2012 Posted May 15, 2012 καλησπέρα σε όλους, Θα ήθελα έναν κώδικα (με κώδικα μου είπαν πως θα δουλέψει μόνο) Έτσι ώστε ήττε με τα Enchant Scrolls που έχουμε ήδη ήττε να φτιάξουμε ένα νέο Scroll (δεν υπάρχει θέμα) να μπορεί να γίνετε Enchant από ένα συγκεκριμένο Enchant Level σε ένα άλλο αλλά με πιθανότητες που θα μπορώ να ορίσω εγώ από τα configs (για περισσότερες δοκιμές κυρίως) Ευχαριστώ εκ των πρωτέρων!!! Index: java/net/sf/l2j/gameserver/handler/itemhandlers/EnchantScrolls.java =================================================================== --- java/net/sf/l2j/gameserver/handler/itemhandlers/EnchantScrolls.java (revision 5343) +++ java/net/sf/l2j/gameserver/handler/itemhandlers/EnchantScrolls.java (working copy) @@ -35,6 +35,7 @@ 951, 952, 953, 954, 6573, 6574, // c grade 955, 956, 957, 958, 6575, 6576, // d grade 959, 960, 961, 962, 6577, 6578 // s grade + , 65535 }; Index: java/net/sf/l2j/gameserver/clientpackets/RequestEnchantItem.java =================================================================== --- java/net/sf/l2j/gameserver/clientpackets/RequestEnchantItem.java (revision 5343) +++ java/net/sf/l2j/gameserver/clientpackets/RequestEnchantItem.java (working copy) @@ -206,6 +206,34 @@ || (item.getItem().getBodyPart() == L2Item.SLOT_FULL_ARMOR && item.getEnchantLevel() < Config.ENCHANT_SAFE_MAX_FULL)) chance = 100; + + if (scroll.getItemId() == 65535) + { + int NEEDED_ENCHANT_LEVEL = 10, + MAX_ENCHANT_LEVEL = 16, + CHANCE_WEAPON = 80, + CHANCE_ARMOR = 80, + CHANCE_JEWEL = 80; + + if (item.getEnchantLevel() < NEEDED_ENCHANT_LEVEL || item.getEnchantLevel() > MAX_ENCHANT_LEVEL) + { + activeChar.sendMessage("You can only enchant with this scroll from +"+NEEDED_ENCHANT_LEVEL+" to +"+MAX_ENCHANT_LEVEL+"."); + return; + } + + if (item.getItem().getType2() == L2Item.TYPE2_WEAPON) + { + chance = CHANCE_WEAPON; + } + if (item.getItem().getType2() == L2Item.TYPE2_SHIELD_ARMOR) + { + chance = CHANCE_ARMOR; + } + if (item.getItem().getType2() == L2Item.TYPE2_ACCESSORY) + { + chance = CHANCE_JEWEL; + } + } if (Rnd.get(100) < chance) { Prepei na work. Opou 65535 antikatestise to me to item id apo to custom scroll sou.
maximilion2 Posted May 16, 2012 Posted May 16, 2012 Τo chance πως μπορώ να το edit?? sta configs exei ena arxeio p legete enchant...
pnsrx8 Posted May 16, 2012 Posted May 16, 2012 sta configs exei ena arxeio p legete enchant... Νομίζω είσαι εκτός θέματος... Μιλάμε για νέο Scroll όχι για τα Normal,blessed και Cristall :)
Mit-sos Posted May 16, 2012 Posted May 16, 2012 8elw enan code c6 pou i pextes mesa ston server mou na pane mexri 90lvl ala afou pane panw apo 80 to xp na aneveni pio diskola ala poli pio diskola!!! ty :D
maximilion2 Posted May 16, 2012 Posted May 16, 2012 yparxei kapios kwdikas gia na kanw ola ta mobs ston server na petane apo 20-100 adena kai oxi na vazw sto droplist ena ena ta mobs?
Dulens. Posted May 16, 2012 Posted May 16, 2012 yparxei kapios kwdikas gia na kanw ola ta mobs ston server na petane apo 20-100 adena kai oxi na vazw sto droplist ena ena ta mobs? Είναι sql query. Ψάξε English Section, τα έχει.
maximilion2 Posted May 16, 2012 Posted May 16, 2012 Είναι sql query. Ψάξε English Section, τα έχει. lol? lew oxi sql alla java kai esy m les sql wtf?
Recommended Posts