Hi!
Simple question:
Can i read the itemname of an item, before it gets identified?
Following problem:
I want to keep certain items unid.
For example all Tal Rasha's Allegiance.
I can get near to it when i use:
But this also meets the requirements of other amulets.
Hope you can understand what i want.
Simple question:
Can i read the itemname of an item, before it gets identified?
Following problem:
I want to keep certain items unid.
For example all Tal Rasha's Allegiance.
I can get near to it when i use:
Code:
if (item.ItemQualityLevel == ItemQuality.Legendary)
{
if (item.Level == 62)
{
if (item.ItemType == ItemType.Amulet)
return true;
}
}
But this also meets the requirements of other amulets.
Hope you can understand what i want.