Author Topic: How to find the Graphic ushort  (Read 3774 times)

0 Members and 1 Guest are viewing this topic.

Offline GreyWalkerTopic starter

  • Newbie
  • *
  • Posts: 5
  • Activity:
    0%
  • Reputation Power: 1
  • GreyWalker has no influence.
  • Respect: 0
  • Referrals: 0
    • View Profile
How to find the Graphic ushort
« on: May 10, 2019, 11:16:51 AM »
0
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.

Code: [Select]
[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

Code: [Select]
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
« Last Edit: May 10, 2019, 11:41:05 AM by GreyWalker »

Tags: