add Custom Classes base

main
Kiyoshi Aman 2020-06-29 10:59:37 -06:00
parent 59f4f97c6d
commit 9cf969140e
6 changed files with 10 additions and 2 deletions

View File

@ -3,6 +3,8 @@
<qresource>
<file>patches/fiesta.ips</file>
<file>patches/balance.ips</file>
<file>patches/custom_classes.ips</file>
<file>patches/cc_spellblade.ips</file>
<file>patches/portraits.ips</file>
<file>patches/double_ap.ips</file>
<file>patches/sound_restoration.ips</file>

BIN
patches/cc_spellblade.ips Normal file

Binary file not shown.

BIN
patches/custom_classes.ips Normal file

Binary file not shown.

View File

@ -9,7 +9,7 @@
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* * Neither the name of the <organization> nor the
* * Neither the name of the software nor the
* names of its contributors may be used to endorse or promote products
* derived from this software without specific prior written permission.
*
@ -50,10 +50,12 @@ Exdeath::Exdeath(QWidget *parent) : QWidget(parent) {
radBase = new QRadioButton("Base");
radFiesta = new QRadioButton("Fiesta");
radBalance = new QRadioButton("Balance");
radCClass = new QRadioButton("Custom Classes");
radBase->setChecked(true);
layMode->addWidget(radBase);
layMode->addWidget(radFiesta);
layMode->addWidget(radBalance);
layMode->addWidget(radCClass);
chkPortraits = new QCheckBox("Yes");
chkAP = new QCheckBox("Yes");
@ -113,6 +115,9 @@ void Exdeath::btnApply_clicked(bool trigger) {
patches << ":/patches/fiesta.ips";
} else if (radBalance->isChecked()) {
patches << ":/patches/balance.ips";
} else if (radCClass->isChecked()) {
patches << ":/patches/custom_classes.ips";
patches << ":/patches/cc_spellblade.ips";
}
if (chkPortraits->isChecked()) {
patches << ":/patches/portraits.ips";

View File

@ -40,6 +40,7 @@ private:
QRadioButton *radBase;
QRadioButton *radFiesta;
QRadioButton *radBalance;
QRadioButton *radCClass;
QCheckBox *chkPortraits;
QCheckBox *chkAP;

View File

@ -9,7 +9,7 @@
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* * Neither the name of the <organization> nor the
* * Neither the name of the software nor the
* names of its contributors may be used to endorse or promote products
* derived from this software without specific prior written permission.
*