G Glancey New Member Joined Jul 13, 2012 Messages 313 Reaction score 0 May 27, 2014 #1 Trying to figure out how to modify loot rules to ignore Deaths Breath but still pick up Veiled Crystals but I don't seem to be having much luck. Anyone know how to do this?
Trying to figure out how to modify loot rules to ignore Deaths Breath but still pick up Veiled Crystals but I don't seem to be having much luck. Anyone know how to do this?
G Glancey New Member Joined Jul 13, 2012 Messages 313 Reaction score 0 May 27, 2014 #2 Got it. Added the Death's Breath item ID to the World Objects Blacklist in DataDictionary.cs ID: 137958
Got it. Added the Death's Breath item ID to the World Objects Blacklist in DataDictionary.cs ID: 137958
U UnkDev New Member Joined May 18, 2014 Messages 12 Reaction score 0 May 27, 2014 #3 Sadly, more than one item uses this id. Name: Arcane Dust InternalName: CraftingMaterials_Flippy_Global SNO: 137958 Name: Reusable Parts InternalName: CraftingMaterials_Flippy_Global SNO: 137958 Name: Veiled Crystal InternalName: CraftingMaterials_Flippy_Global SNO: 137958 Name: Death's Breath InternalName: CraftingMaterials_Flippy_Global SNO: 137958 Name: Forgotten Soul InternalName: CraftingMaterials_Flippy_Global SNO: 137958 etc
Sadly, more than one item uses this id. Name: Arcane Dust InternalName: CraftingMaterials_Flippy_Global SNO: 137958 Name: Reusable Parts InternalName: CraftingMaterials_Flippy_Global SNO: 137958 Name: Veiled Crystal InternalName: CraftingMaterials_Flippy_Global SNO: 137958 Name: Death's Breath InternalName: CraftingMaterials_Flippy_Global SNO: 137958 Name: Forgotten Soul InternalName: CraftingMaterials_Flippy_Global SNO: 137958 etc
G Glancey New Member Joined Jul 13, 2012 Messages 313 Reaction score 0 May 27, 2014 #4 I noticed this as well soon after... very unfortunate. I guess custom loot rules are the only way? I was trying to keep everything Trinity stock.
I noticed this as well soon after... very unfortunate. I guess custom loot rules are the only way? I was trying to keep everything Trinity stock.
X xanden New Member Joined Apr 13, 2014 Messages 132 Reaction score 0 May 28, 2014 #5 Add this lines to Plugins/Trinity/Items/ItemHandling.cs below line 65 Code: if(item.name == "Death's Breath") return false; Didn't testet yet but should work
Add this lines to Plugins/Trinity/Items/ItemHandling.cs below line 65 Code: if(item.name == "Death's Breath") return false; Didn't testet yet but should work
E Evlow Member Joined Sep 24, 2013 Messages 73 Reaction score 0 May 28, 2014 #6 xanden said: Add this lines to Plugins/Trinity/Items/ItemHandling.cs below line 65 Code: if(item.name == "Death's Breath") return false; Didn't testet yet but should work Click to expand... Will only work for english clients I believe.
xanden said: Add this lines to Plugins/Trinity/Items/ItemHandling.cs below line 65 Code: if(item.name == "Death's Breath") return false; Didn't testet yet but should work Click to expand... Will only work for english clients I believe.
X xanden New Member Joined Apr 13, 2014 Messages 132 Reaction score 0 May 28, 2014 #7 Yep. You have to change the name if you use another language
G Glancey New Member Joined Jul 13, 2012 Messages 313 Reaction score 0 May 28, 2014 #8 I already spent a few hours customizing some scripted loot rules to do this anyway (and a few other things)! But nice find indeed, thank you.
I already spent a few hours customizing some scripted loot rules to do this anyway (and a few other things)! But nice find indeed, thank you.