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

Itemname

handnavi

Well-Known Member
Joined
Jan 15, 2010
Messages
2,489
Reaction score
55
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:
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.
 
Back
Top