As I understand it, it's that you can add conditions for ExtractableSkills, but is it true...?
2) How can I make it so an ExtractableItem extracts multiple items at once with 100% chance each?
This is necassary for Magic Accessory Box, an item currently given on official server for adventurers (adventurers accessory)
Code: Select all
Index: data/extractable_items.csv===================================================================--- data/extractable_items.csv (revision 7100)+++ data/extractable_items.csv (working copy)@@ -340,3 +340,6 @@ 20751;20746,1,100 # Shiny Planet X235 Alien Mask 7 day Pack 20752;20747,1,100++# Adventurer's Magic Accessory Set+10473;10122,2,100;10124,2,100;10123,1,100\ No newline at end of fileIndex: data/multisell/305986002.xml===================================================================--- data/multisell/305986002.xml (revision 7100)+++ data/multisell/305986002.xml (working copy)@@ -3,8 +3,6 @@ <list> <item id="1"> <ingredient id="7833" count="1" />- <production id="10122" count="2" />- <production id="10123" count="1" />- <production id="10124" count="2" />+ <production id="10473" count="1" /> </item> </list>\ No newline at end of file### Eclipse Workspace Patch 1.0#P datapack_developmentIndex: sql/etcitem.sql===================================================================--- sql/etcitem.sql (revision 7131)+++ sql/etcitem.sql (working copy)@@ -7566,7 +7566,7 @@ (10431,'Tully\'s Copper Medal','','false','none',2,'stackable','wood','none',-1,-1,0,0,'true','true','true','true','true','none','0-0;'), (10432,'Kertin\'s Herb of Life','','false','herb',0,'normal','wood','none',-1,-1,0,0,'true','true','true','true','true','ItemSkills','2485-1;'), (10433,'Kertin\'s Herb of Mana','','false','herb',0,'normal','wood','none',-1,-1,0,0,'true','true','true','true','true','ItemSkills','2486-1;'),-(10473,'Magic Accessory Set','','false','none',20,'stackable','wood','none',-1,-1,0,0,'false','false','true','false','false','none','0-0;'),+(10473,'Magic Accessory Set','','false','none',20,'stackable','wood','none',-1,-1,0,0,'false','false','true','false','false','ExtractableItems','0-0;'), (10480,'Red Soul Crystal - Stage 15','','false','scroll',20,'normal','wood','none',-1,-1,0,0,'true','true','true','true','true','SoulCrystals','0-0;'), (10481,'Blue Soul Crystal - Stage 15','','false','scroll',20,'normal','wood','none',-1,-1,0,0,'true','true','true','true','true','SoulCrystals','0-0;'), (10482,'Green Soul Crystal - Stage 15','','false','scroll',20,'normal','wood','none',-1,-1,0,0,'true','true','true','true','true','SoulCrystals','0-0;'),
But the item actually extracts 5 items at once.
Basically it's a part of the GE newbie guide i'm making currently (and for a long time now, had dropped it for a while).