This plugin is very simple to edit to your liking. This is a specific part of the coding.
/*1 hadend weapons*/
"Heaven Hand", //Monk Fist
"Exorcist", // 1h Crossbow
"Demolisher", //1h Mace
"Darkblade", //Dagger
"Rune Sword", //1H sword
"Veil Piercer", //WD specific wep
"Arch Axe", // 1h Axe
"Desolator Wand", //Wiz wep
"Slayer", // Barb 1h wep
"Centurion Spear", //1h spear
/*2 handed weapons ilvll 63*/
"Hellion Crossbow", //Crossbow
"Revenant Bow", //2h normal bow
/*iLVL 63 Armor*/
"Archon Armor", //Chest Armor
"Sacred Shield", //Shield
"Razorspikes", //Bracers
"Archon Spaulders", //Shoulders
"Archon Crown", //Helm
"Archon Gauntlets", //Gloves
"High Scabbard", //Belt
"Archon Faulds", //Pants
"Archon Greaves", //Boots
/*OffHands*/
/* No off hands
"Kurastian Asp", //WD offhand iLVL 62
"Demi Lich", //Wiz offhand ilvl 62
"Sanctified Quiver", //DH Quiver ilvl 62
* /
/*Jewelry */
"Ring",
"Amulet",
/*ilvl 62 class-specific gear*/
"Star Crown", //Monk Hat
"Deva", //WD Hat
"Elder Hat", //Wizard Hat
"Dread Cloak", //DH Chest piece
"Grand Chain", //Barb one ilvl62,
/*ilvl 62 Armor*/
Now let's say you don't want it to keep Exorcist.....then you would simply delete the entire line that it's on.
Delete this:
"Exorcist", // 1h Crossbow
That is it! Voila! So just delete all the things you don't want it to keep UNID. For example, mine looks like this.....
{
/*1 hadend weapons*/
/*2 handed weapons ilvll 63*/
// no Decapitator
/*iLVL 63 Armor*/
/*OffHands*/
/* No off hands
* /
/*Jewelry */
"Ring",
"Amulet",
/*ilvl 62 class-specific gear*/
/*ilvl 62 Armor*/
};
I hope it helps!
PS: You also need to change this keep = true to keep = false.
// keep all 63 ilvl
if (item.Level == 63)
{
keep = false;
If I would like my bot to just keep legendaries and nothing else, how would I have to edit the plugin? Just delete this whole part?