fr0stebyte
Member
- Joined
- Aug 16, 2012
- Messages
- 50
- Reaction score
- 0
[Updated] Tweaked pickuprule.dis for darkfriend's loot plugin
Optimized pickup.dis for latest Rules
PICKUP
1H ilvl 61+
Gloves ilvl57+
Jewelry ilvl54+
Armor 61+ not ignored below
WILL NOT pickup:
Blues && iLvl 60-
Weapons:
Offhands
Armor
Picks up all LEGENDARIES and JEWELRY
Instructions:
Info:
If you want to revert some rules just add // or remove them at will
Optimized pickup.dis for latest Rules

1H ilvl 61+
Gloves ilvl57+
Jewelry ilvl54+
Armor 61+ not ignored below



Twohanded
Bow
Crossbow
Staff
Polearm
Daibo
Hand Crossbow
Bow
Crossbow
Staff
Polearm
Daibo
Hand Crossbow

Shields
Quivers
Mojo
Orbs
Quivers
Mojo
Orbs

Boots
Cloaks
SpiritStone
VoodooMask
WizardHats
Cloaks
SpiritStone
VoodooMask
WizardHats
Picks up all LEGENDARIES and JEWELRY
Code:
[SIZE=1]// +---------------------------------------------------------------------------+
// | ______ _______ ______ __ __ _______ ______
// | | __ \_ _| | |/ | | | | __ \
// | | __/_| |_| ---| < | | | __/
// | |___| |_______|______|__|\__| |_______|___|
// | ++++++++++++++++++++++++++++++++++++++++++++++++++
// +---------------------------------------------------------------------------+
Changelog:
v0.3
Picking up all legendaries no matter iLvl
Tidy update from Midas
Midas Glove Pickup rule, now picking up all lvl58+ gloves
// +---------------------------------------------------------------------------+
// | _______ ______ _______ ______ _______ _______ _____
// | | __| __ \ ___| |_ _| _ | |_
// | |__ | __/ ___| ---|_| |_| | |
// | |_______|___| |_______|______|_______|___|___|_______|
// +---------------------------------------------------------------------------+
// craftingPlans on the ground have all quality normal cant decide here
[QUALITY] == "Normal" && [TYPE] == "CraftingPlan"
// +---------------------------------------------------------------------------+
// | _____ _______ _______ _______ _______ _____ _______ ______ ___ ___
// | | |_| ___| __| ___| | | \| _ | __ \ | |
// | | | ___| | | ___| | -- | | <\ /
// | |_______|_______|_______|_______|__|____|_____/|___|___|___|__| |___|
// +---------------------------------------------------------------------------+
[QUALITY] == "Legendary"
// +--------------------------------------------------------------------------------------+
// | ______ _______ ______ _______
// | | __ \ _ | __ \ ___|
// | | < | < ___|
// | |___|__|___|___|___|__|_______|
// +--------------------------------------------------------------------------------------+
//Special Glove Pickup Rule
[QUALITY] == "Rare" && [TYPE] == "Gloves" && [LEVEL] >=58
//Weapon Ignore Rules
[QUALITY] == "Rare" && [LEVEL] <= 61 && [BASETYPE] == "Weapon" -> [IGNORE]
[QUALITY] == "Rare" && [BASETYPE] == "Weapon" && [TWOHAND] -> [IGNORE]
[QUALITY] == "Rare" && [TYPE] == "Bow" -> [IGNORE]
[QUALITY] == "Rare" && [TYPE] == "Crossbow" -> [IGNORE]
[QUALITY] == "Rare" && [TYPE] == "Staff" -> [IGNORE]
[QUALITY] == "Rare" && [TYPE] == "Polearm" -> [IGNORE]
[QUALITY] == "Rare" && [TYPE] == "Daibo" -> [IGNORE]
[QUALITY] == "Rare" && [TYPE] == "HandCrossbow" -> [IGNORE]
//Off Hand Ignore Rules
[QUALITY] == "Rare" && [TYPE] == "Shield" -> [IGNORE]
[QUALITY] == "Rare" && [TYPE] == "Quiver" -> [IGNORE]
[QUALITY] == "Rare" && [TYPE] == "Mojo" -> [IGNORE]
[QUALITY] == "Rare" && [TYPE] == "Orb" -> [IGNORE]
//Armor Ignore Rules
//[QUALITY] == "Rare" && [TYPE] == "Legs" -> [IGNORE]
//[QUALITY] == "Rare" && [TYPE] == "Belt" -> [IGNORE]
//[QUALITY] == "Rare" && [TYPE] == "Helm" -> [IGNORE]
//[QUALITY] == "Rare" && [TYPE] == "MightyBelt" -> [IGNORE]
[QUALITY] == "Rare" && [LEVEL] <= 60 && [BASETYPE] == "Armor" -> [IGNORE]
[QUALITY] == "Rare" && [TYPE] == "Boots" -> [IGNORE]
[QUALITY] == "Rare" && [TYPE] == "Cloak" -> [IGNORE]
//Hats Ignore Rules
[QUALITY] == "Rare" && [TYPE] == "SpiritStone" -> [IGNORE]
[QUALITY] == "Rare" && [TYPE] == "VoodooMask" -> [IGNORE]
[QUALITY] == "Rare" && [TYPE] == "WizardHat" -> [IGNORE]
//Jewelry Ignore Rule
[QUALITY] == "Rare" && [TYPE] == "FollowerSpecial" -> [IGNORE]
//Pickup Rules
[QUALITY] == "Rare" && [LEVEL] >= 61 && [BASETYPE] == "Weapon"
[QUALITY] == "Rare" && [BASETYPE] == "Jewelry"
[QUALITY] == "Rare" && [LEVEL] > 60 && [BASETYPE] == "Armor"
// +---------------------------------------------------------------------------+
// | _______ _______ _______ _______ ______
// | | | | _ | __|_ _| |
// | | | | | |_| |_| ---|
// | |__|_|__|___|___|_______|_______|______|
// +---------------------------------------------------------------------------+
//Magic GTFO
[QUALITY] == "Magic" -> [IGNORE][/SIZE]
Instructions:
- Download Updated Trinity
- Replace pickup.dis file on your /Plugins/GilesTrinity/ItemRules/ folder
- Select Use Custom Script Rules on Trinity Settings
Info:
If you want to revert some rules just add // or remove them at will
Last edited: