How do you find what the id is of the graphic , is there a list somwhere?
Like the ushort 0xE21  in the below code, I'm trying to find the id for corpses that I have killed.
[QuerySearch(new ushort[] { 0xE21 })]
 public class Bandage : Item
{
     public Bandage (Serial serial)
        : base (serial)
     {
     }
}
i wrote a simple method to try and find it from EasyUO ids but I dont think these are correct which gives 8198
private void BtnLoot_Click(object sender, EventArgs e)
        {
            var euids = new List<string>();
            euids.Add("YFM");
            euids.Add("G_2");
            foreach (var item in euids)
            {
               lvInfo.Items.Add(Stealth.Client.EUO2StealthID(item).ToString());
               lvInfo.Items.Add(Stealth.Client.EUO2StealthType(item).ToString());
            }
        }
thanks