Jump to content

[Discussion]Κάντε request java mods


Recommended Posts

Αν ξέρει κάποιος τι μπορώ να κάνω ας μου πει είναι πολύ σημαντικό.

 

Πρεπει να δουλευει.

 

### 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

 

 

 

Link to comment
Share on other sites

cTyFu.png

 

Αυτό αν είναι εύκολο.

### 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

Link to comment
Share on other sites

καλησπέρα σε όλους,

 

Θα ήθελα έναν κώδικα (με κώδικα μου είπαν πως θα δουλέψει μόνο)

Έτσι ώστε ήττε με τα Enchant Scrolls που έχουμε ήδη ήττε να φτιάξουμε ένα νέο Scroll (δεν υπάρχει θέμα) να μπορεί να γίνετε Enchant από ένα συγκεκριμένο Enchant Level σε ένα άλλο αλλά με πιθανότητες που θα μπορώ να ορίσω εγώ από τα configs (για περισσότερες δοκιμές κυρίως) 

 

Ευχαριστώ εκ των πρωτέρων!!!

Link to comment
Share on other sites

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)

Link to comment
Share on other sites

καλησπέρα σε όλους,

 

Θα ήθελα έναν κώδικα (με κώδικα μου είπαν πως θα δουλέψει μόνο)

Έτσι ώστε ήττε με τα 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.

Link to comment
Share on other sites

sta configs exei ena arxeio p legete enchant...

 

Νομίζω είσαι εκτός θέματος... Μιλάμε για νέο Scroll όχι για τα Normal,blessed και Cristall :)

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.



×
×
  • Create New...