Ejemplo n.º 1
0
        public void CreateItem()
        {
            DSItemCategory category = cmbCategory.SelectedItem as DSItemCategory;
            DSItem         item     = lbxItems.SelectedItem as DSItem;
            int            id       = item.ID;

            if (item.UpgradeType == DSItem.Upgrade.PyroFlame || item.UpgradeType == DSItem.Upgrade.PyroFlameAscended)
            {
                id += (int)nudUpgrade.Value * 100;
            }
            else
            {
                id += (int)nudUpgrade.Value;
            }
            if (item.UpgradeType == DSItem.Upgrade.Infusable || item.UpgradeType == DSItem.Upgrade.InfusableRestricted)
            {
                DSInfusion infusion = cmbInfusion.SelectedItem as DSInfusion;
                id += infusion.Value;
            }
            Hook.GetItem(category.ID, id, (int)nudQuantity.Value);
        }
Ejemplo n.º 2
0
        private void cmbInfusion_SelectedIndexChanged(object sender, EventArgs e)
        {
            DSInfusion infusion = cmbInfusion.SelectedItem as DSInfusion;

            nudUpgrade.Maximum = infusion.MaxUpgrade;
        }