My is Working now
you need to do this:
first:
Go to Dictionaries.cs in the Trinity plugin folder and change this:
to this:
after you made this
you do this:
in pickup.dis
then in common.dis/special.dis
now restart your bot ( better restart) shut down plugin / active plugin.
now it should work
since i have made this steps, it pickup.
you need to do this:
first:
Go to Dictionaries.cs in the Trinity plugin folder and change this:
Code:
/// World-object dictionaries eg large object lists, ignore lists etc.
/// A list of SNO's to *FORCE* to type: Item. (BE CAREFUL WITH THIS!).
/// 166943 = infernal key
/// </summary>
internal static HashSet<int> hashForceSNOToItemList = new HashSet<int> {
166943,
};
to this:
Code:
/// World-object dictionaries eg large object lists, ignore lists etc.
/// A list of SNO's to *FORCE* to type: Item. (BE CAREFUL WITH THIS!).
/// 166943 = infernal key
/// </summary>
internal static HashSet<int> hashForceSNOToItemList = new HashSet<int> {
166943, 137958,
};
after you made this
you do this:
in pickup.dis
Code:
// +---------------------------------------------------------------------------+
// | ______ _______ ______ __ __ _______ ______
// | | __ \_ _| | |/ | | | | __ \
// | | __/_| |_| ---| < | | | __/
// | |___| |_______|______|__|\__| |_______|___|
// | ++++++++++++++++++++++++++++++++++++++++++++++++++
// +---------------------------------------------------------------------------+
// craftingReagents like Demonic Essences
[TYPE] == "CraftingReagent"
[NAME] == "Demonic Essence" -> [KEEP]
[QUALITY] == "Demonic Essence" -> [KEEP]
// +---------------------------------------------------------------------------+
// | _______ ______ _______ ______ _______ _______ _____
// | | __| __ \ ___| |_ _| _ | |_
// | |__ | __/ ___| ---|_| |_| | |
// | |_______|___| |_______|______|_______|___|___|_______|
// +---------------------------------------------------------------------------+
// craftingPlans on the ground have all quality normal cant decide here
[QUALITY] == "Normal" && [TYPE] == "CraftingPlan"
then in common.dis/special.dis
Code:
// +---------------------------------------------------------------------------+
// | _______ ______ _______ ______ _______ _______ _____
// | | __| __ \ ___| |_ _| _ | |_
// | |__ | __/ ___| ---|_| |_| | |
// | |_______|___| |_______|______|_______|___|___|_______|
// +---------------------------------------------------------------------------+
// keep all special items
// this is a saftey line ... as long it isn't removed it will keep all items
// specifyed by the rule ... the action of commenting it out
// will apply all following rules ... this set of rules is no where of complete
// keep demonic essences
[TYPE] == "CraftingReagent" -> [KEEP]
[QUALITY] == "Special" -> [KEEP]
// crafting plans setting
[QUALITY] == "Legendary" && [TYPE] == "CraftingPlan"
[QUALITY] == "Rare6" && [TYPE] == "CraftingPlan" -> [TRASH]
[QUALITY] == "Rare5" && [TYPE] == "CraftingPlan" -> [TRASH]
[QUALITY] == "Rare4" && [TYPE] == "CraftingPlan" -> [TRASH]
now restart your bot ( better restart) shut down plugin / active plugin.
now it should work

since i have made this steps, it pickup.