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

[Plugin] Keep 63 ilvl unidentified

Wow man, you should really calm down before you have a heart attack from all that rage. It was a simple question. Thiole updated mine for me, so it's all good. It keeps the 63 armors / razorspikes / 62 Mojo's & Sources now. It also isn't ID'ing random legendaries like it did last night when it ID'd my Depth Diggers + Promise of Glory Bracers.

I still have a market for UNID, people on my friends list that buy UNID items including armors. This Addon was designed to keep ALL 63's unidentified. So THAT would be working properly, you claiming to keep this updated is not the same as you being lazy and only updating what benefits you.

You can take the e-peen tough guy internet 'stfu' attitude elsewhere, it wasn't needed here and uncalled for. It was a simple question.

Look, seems like others want it updated too.....go tell them to "stfu" in your tough guy voice. If you look closely, others are asking for an updated version too.....So obviously people aren't happy with it not keeping ALL UNID.

You mean you scam people. So sad they not even smart enough to realize it. PTR anybody? ? ? :P
 
how can i set just Keep all legendary unidentified .
don't want keep other lvl63...
need help .:D
 
What if I wanted to only keep Legendary's unidentified, how would that work.
 
What if I wanted to only keep Legendary's unidentified, how would that work.

Why don't you guys take 5 mins and look at the code? Change ShouldKeep() to these 3 lines only:

bool keep = false;
keep = item.ItemQualityLevel == ItemQuality.Legendary;
return keep;
 
I don't know how much clearer I can get

You basically have to do it for them.

Edit Unidentify.cs with an appropriate editor, ctrl+f for 'bool ShouldKeep' and replace the whole function with this:

bool ShouldKeep(ACDItem item)
{
bool keep = false;

keep = item.ItemQualityLevel == ItemQuality.Legendary;

if (keep == true)
{
return keep;
}

return keep;
}
 
How do i get this to only save 60-62 rings and amulets unid and legendaries? I don't have the space to save every ilvl63 item specified in my stash and I would rather just save the rings and amulets 60-62 and then everything else as giles decides, except for keeping legendaries unidentified.

I tried to play around with the true false values and it saved the rings and amulets but it also saved the weps as well, not exactly sure what i'm doing so I'll just disable the plugin til i can get it figured out.
 
Last edited:
How do i get this to only save 60-62 rings and amulets unid and legendaries? I don't have the space to save every ilvl63 item specified in my stash and I would rather just save the rings and amulets 60-62 and then everything else as giles decides, except for keeping legendaries unidentified.

I tried to play around with the true false values and it saved the rings and amulets but it also saved the weps as well, not exactly sure what i'm doing so I'll just disable the plugin til i can get it figured out.

I would like to know this aswell! Could be GREAT!
 
What if i just want it to keep the 61-62 rings-amus unid ?
 
so if all i want is legs ring ammys keptunid

which parts of that doi highlight and take out???
 
I would like to know this aswell! Could be GREAT!


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;
 
Last edited:
How well does this work with the TrinityPlugin and if I use script based looting?
 
Back
Top