What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

Ignore Death's Breaths

Glancey

New Member
Joined
Jul 13, 2012
Messages
313
Reaction score
0
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?
 
Got it.

Added the Death's Breath item ID to the World Objects Blacklist in DataDictionary.cs

ID: 137958
 
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
 
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.
 
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

Will only work for english clients I believe.
 
Yep. You have to change the name if you use another language
 
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.
 
Back
Top