Exemple #1
0
 public ItemBytesForm(AmalurSaveEditor editer, ItemMemoryInfo weapon)
 {
     InitializeComponent();
     this.weapon = weapon;
     this.editer = editer;
     FormatAll();
 }
Exemple #2
0
        public EditForm(AmalurSaveEditor editor, List <AttributeInfo> attList, ItemMemoryInfo weaponInfo)
        {
            InitializeComponent();
            this.editor        = editor;
            this.attributeList = attList;
            this.weaponInfo    = weaponInfo;

            FormatAll(attList);
        }
Exemple #3
0
 private void LoadSaveFile(object sender, EventArgs e)
 {
     if (opfMain.ShowDialog() == DialogResult.OK)
     {
         lvMain.Items.Clear();
         String fileName = opfMain.FileName;
         editor = new AmalurSaveEditor();
         editor.ReadFile(fileName);
         tslblFileLocal.Text = fileName;
         //inventorySizeTextBox.Text = editor.GetMaxBagCount().ToString();
         btnSearchAll.PerformClick();
     }
 }
Exemple #4
0
 public BagEditForm(AmalurSaveEditor editor)
 {
     InitializeComponent();
     this.editor = editor;
     FormatAll();
 }