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

White Listing Crafting whites

7alisman

New Member
Joined
Apr 8, 2014
Messages
6
Reaction score
0
Is it possible for me to set the bot to pickup specific white crafting items if it comes across them? There is currently an extremely low drop rate on Ascended Shields and if possible I'd like to set up the bot to pick up any shields that may happen to drop.

Any help will be greatly appreciated.
 
Same question here.
Would be awsome to be able to keep required white items for crafting legendaries...

Thnx for any help.
 
the below goes into pickup.dis

//Armors
[QUALITY] == "Normal" && [NAME] == "Ascended Crown"
[QUALITY] == "Normal" && [NAME] == "Ascended Pauldrons"
[QUALITY] == "Normal" && [NAME] == "Ascended Armor"
[QUALITY] == "Normal" && [NAME] == "Ascended Bracers"
[QUALITY] == "Normal" && [NAME] == "Ascended Gauntlets"
[QUALITY] == "Normal" && [NAME] == "Ascended Faulds"
[QUALITY] == "Normal" && [NAME] == "Ascended Greaves"
[QUALITY] == "Normal" && [NAME] == "Ascended Shield"
[QUALITY] == "Normal" && [NAME] == "Archon Sash"

//Weapons
[QUALITY] == "Normal" && [NAME] == "Punyal"
[QUALITY] == "Normal" && [NAME] == "Suwaiya"
[QUALITY] == "Normal" && [NAME] == "Skullsplitter"
[QUALITY] == "Normal" && [NAME] == "Tsunami Blade"
[QUALITY] == "Normal" && [NAME] == "Tecpatl"
[QUALITY] == "Normal" && [NAME] == "Limb Cleaver"
[QUALITY] == "Normal" && [NAME] == "Dire Axe"
[QUALITY] == "Normal" && [NAME] == "Grandfather Flail"
[QUALITY] == "Normal" && [NAME] == "Flesh Render"
[QUALITY] == "Normal" && [NAME] == "Whirlwind Staff"
[QUALITY] == "Normal" && [NAME] == "Kerykeion"
[QUALITY] == "Normal" && [NAME] == "Persuader"
[QUALITY] == "Normal" && [NAME] == "Steppes Smasher"
[QUALITY] == "Normal" && [NAME] == "Oxybeles"
[QUALITY] == "Normal" && [NAME] == "Penetrator"
[QUALITY] == "Normal" && [NAME] == "Doubleshot"
[QUALITY] == "Normal" && [NAME] == "Diabolic Wand"

The below into salvageSell.dis

//[QUALITY] == "Normal" && ([BASETYPE] == "Weapon" || [BASETYPE] == "Armor" || [BASETYPE] == "Jewelry") -> [SALVAGE]
//[QUALITY] == "Normal" && ([BASETYPE] == "Weapon" || [BASETYPE] == "Armor" || [BASETYPE] == "Jewelry") -> [SELL]

And of course you'll need to make it so when you pickup said loot, the bot recognises it as a stash item and not salvage/sell which is handled by your rare.dis file

so to save the white shields, you'd want the below in rare.dis

[QUALITY] == "Normal" && [TYPE] == "Shield" -> [KEEP]

Hope this helps :)
 
does this work when items rule = trinity scoring only?

+set up stash all whites
+no salvage on whites
+code for the three white items i need in pickup file
 
Back
Top