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

How to make bot to keep only Ancient and salvage others

stud4fun

New Member
Joined
Dec 21, 2012
Messages
717
Reaction score
4
I just keep ancient items and also I want pick Magic items to salvage, so I edited Jobs rule set but bot didn't pick up magic items.

I already uncommented to pickup magic items and I added magic items to salvage in Salvagesell dis file.
[QUALITY] == "Magic" && ([BASETYPE] == "Weapon" || [BASETYPE] == "Armor" || [BASETYPE] == "Jewelry" || [TYPE] == "FollowerSpecial") -> [SALVAGE]

I have no clue to keep only ancient

Can someone direct me how to edit it?

Common dis file, pickup dis, magic dis, salvagesell dis file should be edited?
 
Last edited:
I just keep ancient items and also I want pick Magic items to salvage, so I edited Jobs rule set but bot didn't pick up magic items.

I already uncommented to pickup magic items and I added magic items to salvage in Salvagesell dis file.
[QUALITY] == "Magic" && ([BASETYPE] == "Weapon" || [BASETYPE] == "Armor" || [BASETYPE] == "Jewelry" || [TYPE] == "FollowerSpecial") -> [SALVAGE]

I have no clue to keep only ancient

Can someone direct me how to edit it?

Common dis file, pickup dis, magic dis, salvagesell dis file should be edited?

Use Item Ranks in Trinity and tick the Keep Ancients Only button.
 
[QUALITY] == "Legendary" # [ANCIENT] == 0 -> [TRASH]
 
any luck? :( I still have to manually salvage them... :/

Nothing was picked up. Only stashed legendary items from Kadala. I left it running for 48hrs nonstop. If you are going to somewhere for a couple days, uncheck legendary box in Trinity and uncheck Kadala in Armory ( if you use it), then your bot will run forever... nothing will be picked up though. You gain gold and exp only.

I will try Job2K9 suggested.
 
Should it be in Common.dis or pickup.dis or both?
Where should it go?

legendary.dis

pickup.dis is for rules for picking up or leaving things on the ground

legendary.dis is where you set rules on what to do with legendaries that you have picked up

Edit: btw I don't recommend a rule like that because non-ancient ammies and rings are also destroyed

instead use:
PHP:
[QUALITY] == "Legendary" && [BASETYPE] == "WEAPON" # [ANCIENT] == 0 -> [TRASH]
[QUALITY] == "Legendary" && [BASETYPE] == "ARMOR" # [ANCIENT] == 0 -> [TRASH]
[QUALITY] == "Legendary" && [BASETYPE] == "JEWELRY" -> [KEEP]

Ammies and rings will be kept while non-ancient weapons or armor will be destroyed.
 
Last edited:
legendary.dis

pickup.dis is for rules for picking up or leaving things on the ground

legendary.dis is where you set rules on what to do with legendaries that you have picked up

Edit: btw I don't recommend a rule like that because non-ancient ammies and rings are also destroyed

instead use:
PHP:
[QUALITY] == "Legendary" && [BASETYPE] == "WEAPON" # [ANCIENT] == 0 -> [TRASH]
[QUALITY] == "Legendary" && [BASETYPE] == "ARMOR" # [ANCIENT] == 0 -> [TRASH]
[QUALITY] == "Legendary" && [BASETYPE] == "JEWELRY" -> [KEEP]

Ammies and rings will be kept while non-ancient weapons or armor will be destroyed.

thx, so this goes into the legendary.dis?
 
legendary.dis

pickup.dis is for rules for picking up or leaving things on the ground

legendary.dis is where you set rules on what to do with legendaries that you have picked up

Edit: btw I don't recommend a rule like that because non-ancient ammies and rings are also destroyed

instead use:
PHP:
[QUALITY] == "Legendary" && [BASETYPE] == "WEAPON" # [ANCIENT] == 0 -> [TRASH]
[QUALITY] == "Legendary" && [BASETYPE] == "ARMOR" # [ANCIENT] == 0 -> [TRASH]
[QUALITY] == "Legendary" && [BASETYPE] == "JEWELRY" -> [KEEP]

Ammies and rings will be kept while non-ancient weapons or armor will be destroyed.

It works. Thank you;)






Yours looks good too. Thank you
 
Back
Top