Skip to content

Instantly share code, notes, and snippets.

@Rapptz

Rapptz/Form1.cpp Secret

Created May 21, 2012 05:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Rapptz/baee50f05b80d192eaea to your computer and use it in GitHub Desktop.
Save Rapptz/baee50f05b80d192eaea to your computer and use it in GitHub Desktop.
Phantom Calculator (C++)
#include "Form1.h"
#include <windows.h>
#include <math.h>
using namespace PhantomCalculator;
using namespace std;
int APIENTRY WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
LPSTR lpCmdLine, int nCmdShow)
{
Application::EnableVisualStyles();
Application::SetCompatibleTextRenderingDefault(false);
Application::Run(gcnew Form1());
Application::Exit();
}
/* Update Notes (v1.4):
Bugfix:
-Fixed issue with Total LUK, Total DEX, Base LUK, Base DEX.
-Fixed issue with skills going back to zero.
-Fixed issue with damage output
-Added linking to Sky.
*/
int bdex = 4, bluk = 4, skill = 0, totalLUK = 4, totalDEX = 4, padX = 0, weaponAttack = 0;
double mobpdr = 0.0, criticalRate = .65, criticalMax = 1.5, criticalMin = 1.2;
double mastery = .2, mapleWarrior = 1.0, dexPercent = 1.0, lukPercent = 1.0;
double prayofAriaDmg = 1.0, prayofAriaIgnore = 0.0, bossDamage = 0.0;
double pirateStyle = 0.0;
int cAttack = 30; //Moonlight for 30 attack
double cIgnore = 0.0, cDmgInc = 0.0, pAttack = 1.0;
double dmginc = 1.0 + prayofAriaDmg + bossDamage + cDmgInc;
double ignorepdr = prayofAriaIgnore + cIgnore;
int attack = floor((padX + weaponAttack + cAttack)*pAttack);
int eLUK = floor((totalLUK/lukPercent) - bluk);
int eDEX = floor((totalDEX/dexPercent) - bdex);
int luk = floor((floor(bluk*mapleWarrior)+eLUK)*lukPercent);
int dex = floor((floor(bdex*mapleWarrior)+eDEX)*dexPercent);
int buffedMin = floor(((1.3*((4*luk)+dex)*attack)/100)*mastery);
int buffedMax = floor((1.3*((4*luk)+dex)*attack)/100);
double criticalDamage = 1 + (criticalRate * (((criticalMin + criticalMax)-2) / 2));
double PDRate = (1-(mobpdr/100))+((mobpdr/100)*(ignorepdr));
int mobDmgMin = floor(buffedMin * skill * PDRate);
int mobDmgMax = floor(buffedMax * skill * criticalDamage * PDRate);
int bossDmgMin = floor(buffedMin * skill * PDRate * dmginc);
int bossDmgMax = floor(buffedMax * skill * criticalDamage * PDRate * dmginc);
//Rage
void Form1::radioButton1_CheckedChanged(System::Object^ sender, System::EventArgs^ e) {
if(this->radioButton1->Checked)
cAttack+=30;
else
cAttack-=30;
}
//Bless
void Form1::radioButton3_CheckedChanged(System::Object^ sender, System::EventArgs^ e) {
if(this->radioButton3->Checked)
cAttack+=15;
else
cAttack-=15;
}
//Mental Clarity
void Form1::radioButton2_CheckedChanged(System::Object^ sender, System::EventArgs^ e) {
if(this->radioButton2->Checked)
cAttack+=30;
else
cAttack-=30;
}
//Threaten
void Form1::radioButton4_CheckedChanged(System::Object^ sender, System::EventArgs^ e) {
if(this->radioButton4->Checked)
mobpdr= floor(Convert::ToDouble(this->monsterPDR->Value)-(Convert::ToDouble(this->monsterPDR->Value)*.3));
else
mobpdr = Convert::ToDouble(this->monsterPDR->Value);
}
//Monster PDR
void Form1::monsterPDR_ValueChanged(System::Object^ sender, System::EventArgs^ e) {
if(this->radioButton4->Checked)
mobpdr= floor(Convert::ToDouble(this->monsterPDR->Value)-(Convert::ToDouble(this->monsterPDR->Value)*.3));
else
mobpdr = Convert::ToDouble(this->monsterPDR->Value);
}
//Combo Attack
void Form1::radioButton5_CheckedChanged(System::Object^ sender, System::EventArgs^ e) {
if(this->radioButton5->Checked) {
cDmgInc+=.25;
criticalMin += .25;
criticalMax += .25;
}
else {
cDmgInc-=.25;
criticalMin -= .25;
criticalMax -= .25;
}
}
//Concentrate
void Form1::radioButton6_CheckedChanged(System::Object^ sender, System::EventArgs^ e) {
if(this->radioButton6->Checked)
cAttack+=20;
else
cAttack-=20;
}
//Combat Orders
void Form1::radioButton7_CheckedChanged(System::Object^ sender, System::EventArgs^ e) {
if(this->radioButton7->Checked) {
//
}
}
//Rapid Fire
void Form1::radioButton8_CheckedChanged(System::Object^ sender, System::EventArgs^ e) {
if(this->radioButton8->Checked)
skill = 240+ (3*(Convert::ToInt32(this->numericUpDown3->Value)));
else
skill = (Convert::ToInt32(this->numericUpDown4->Value)) + 100;
}
//Sharp Eyes
void Form1::radioButton9_CheckedChanged(System::Object^ sender, System::EventArgs^ e) {
if(this->radioButton9->Checked) {
criticalRate+= (5+ceil(Convert::ToDouble(this->numericUpDown3->Value)/2))/100;
criticalMax+= (Convert::ToDouble(this->numericUpDown3->Value))/100;
}
else {
criticalRate -= (5+ceil(Convert::ToDouble(this->numericUpDown3->Value)/2))/100;
criticalMax -= (Convert::ToDouble(this->numericUpDown3->Value))/100;
}
}
//Advanced Blessing
void Form1::radioButton10_CheckedChanged(System::Object^ sender, System::EventArgs^ e) {
if(this->radioButton10->Checked) {
cAttack+=(Convert::ToInt32(this->numericUpDown3->Value));
this->radioButton3->Checked = false;
this->radioButton3->Enabled = false;
}
else {
cAttack-=(Convert::ToInt32(this->numericUpDown3->Value));
this->radioButton3->Enabled = true;
}
}
//Pirate Style
void Form1::radioButton11_CheckedChanged(System::Object^ sender, System::EventArgs^ e) {
if(this->radioButton11->Checked) {
if(Convert::ToInt32(this->numericUpDown3->Value) > 21)
pirateStyle += .22;
else
pirateStyle += (Convert::ToDouble(this->numericUpDown3->Value))/100;
}
else {
if(Convert::ToInt32(this->numericUpDown3->Value) > 21)
pirateStyle -= .22;
else
pirateStyle -= (Convert::ToDouble(this->numericUpDown3->Value))/100;
}
}
//Pray of Aria
void Form1::numericUpDown2_ValueChanged(System::Object^ sender, System::EventArgs^ e) {
if(this->numericUpDown2->Value > 0) {
prayofAriaDmg = 1.0 + (Convert::ToDouble(this->numericUpDown2->Value))/100;
prayofAriaIgnore = (Convert::ToDouble(this->numericUpDown2->Value))/100;
}
else {
prayofAriaDmg = 1.0;
prayofAriaIgnore = 0;
}
}
//Cane Expert
void Form1::numericUpDown1_ValueChanged(System::Object^ sender, System::EventArgs^ e) {
if(this->numericUpDown1->Value > 0) {
mastery = .2 + (55+ceil((Convert::ToDouble(this->numericUpDown1->Value))/2))/100;
padX = Convert::ToInt32(this->numericUpDown1->Value);
criticalMin = 1.2 + (ceil(Convert::ToDouble(this->numericUpDown1->Value)/2)/100);
}
else {
mastery = .7;
padX = 0;
}
}
//Talent of Phantom Thief IV
void Form1::numericUpDown3_ValueChanged(System::Object^ sender, System::EventArgs^ e) {
if(this->numericUpDown3->Value > 0) {
if(this->radioButton8->Checked) {
if(this->radioButton8->Checked)
skill = 240+ (3*(Convert::ToInt32(this->numericUpDown3->Value)));
else
skill = (Convert::ToInt32(this->numericUpDown4->Value)) + 100;
}
if(this->radioButton11->Checked) {
if(this->radioButton11->Checked) {
if(Convert::ToInt32(this->numericUpDown3->Value) > 21)
pirateStyle += .22;
else
pirateStyle += (Convert::ToDouble(this->numericUpDown3->Value))/100;
}
else {
if(Convert::ToInt32(this->numericUpDown3->Value) > 21)
pirateStyle -= .22;
else
pirateStyle -= (Convert::ToDouble(this->numericUpDown3->Value))/100;
}
}
if(this->radioButton9->Checked) {
if(this->radioButton9->Checked) {
criticalRate+= (5+ceil(Convert::ToDouble(this->numericUpDown3->Value)/2))/100;
criticalMax+= (Convert::ToDouble(this->numericUpDown3->Value))/100;
}
else {
criticalRate -= (5+ceil(Convert::ToDouble(this->numericUpDown3->Value)/2))/100;
criticalMax -= (Convert::ToDouble(this->numericUpDown3->Value))/100;
}
}
if(this->radioButton10->Checked) {
if(this->radioButton10->Checked)
cAttack+=(Convert::ToInt32(this->numericUpDown3->Value));
else
cAttack-=(Convert::ToInt32(this->numericUpDown3->Value));
}
}
}
//Ultimate Drive
void Form1::numericUpDown4_ValueChanged(System::Object^ sender, System::EventArgs^ e) {
if((this->radioButton8->Checked) && (this->numericUpDown3->Value > 0))
skill = 240+ (3*(Convert::ToInt32(this->numericUpDown3->Value)));
else
if(this->numericUpDown4->Value >0)
skill = (Convert::ToInt32(this->numericUpDown4->Value)) + 100;
}
//Maple Warrior
void Form1::numericUpDown5_ValueChanged(System::Object^ sender, System::EventArgs^ e) {
mapleWarrior = 1.0 + (ceil(Convert::ToDouble(this->numericUpDown5->Value)/2))/100;
}
//Base LUK
void Form1::numericUpDown6_ValueChanged(System::Object^ sender, System::EventArgs^ e) {
bluk = Convert::ToInt32(this->numericUpDown6->Value);
}
//Base DEX
void Form1::numericUpDown7_ValueChanged(System::Object^ sender, System::EventArgs^ e) {
bdex = Convert::ToInt32(this->numericUpDown7->Value);
}
//Total LUK
void Form1::numericUpDown8_ValueChanged(System::Object^ sender, System::EventArgs^ e) {
totalLUK = Convert::ToInt32(this->numericUpDown8->Value);
}
//Total DEX
void Form1::numericUpDown9_ValueChanged(System::Object^ sender, System::EventArgs^ e) {
totalDEX = Convert::ToInt32(this->numericUpDown9->Value);
}
//Weapon Attack
void Form1::numericUpDown10_ValueChanged(System::Object^ sender, System::EventArgs^ e) {
weaponAttack = Convert::ToInt32(this->numericUpDown10->Value);
}
//Boss Damage
void Form1::numericUpDown11_ValueChanged(System::Object^ sender, System::EventArgs^ e) {
bossDamage = Convert::ToDouble(this->numericUpDown11->Value)/100;
}
//Ignore PDR
void Form1::numericUpDown12_ValueChanged(System::Object^ sender, System::EventArgs^ e) {
cIgnore = Convert::ToDouble(this->numericUpDown12->Value)/100;
}
//DEX%
void Form1::numericUpDown14_ValueChanged(System::Object^ sender, System::EventArgs^ e) {
dexPercent = (Convert::ToDouble(this->numericUpDown14->Value))/100;
}
//LUK%
void Form1::numericUpDown13_ValueChanged(System::Object^ sender, System::EventArgs^ e) {
lukPercent = (Convert::ToDouble(this->numericUpDown13->Value))/100;
}
//Attack%
void Form1::numericUpDown15_ValueChanged(System::Object^ sender, System::EventArgs^ e) {
pAttack = 1.0 + Convert::ToDouble(this->numericUpDown15->Value)/100;
}
//Party Skills
void Form1::rageEnable_CheckedChanged(System::Object^ sender, System::EventArgs^ e) {
if(this->rageEnable->Checked) {
this->radioButton1->Checked = false;
this->radioButton1->Enabled = false;
this->rageEnable->Text = "Enabled";
cAttack += 30;
}
else {
this->radioButton1->Enabled = true;
this->rageEnable->Text = "Disabled";
cAttack -= 30;
}
}
void Form1::AdvAura_CheckedChanged(System::Object^ sender, System::EventArgs^ e) {
if(this->AdvAura->Checked) {
this->AdvAura->Text = "Enabled";
pAttack += .2;
}
else {
this->AdvAura->Text = "Disabled";
pAttack -= .2;
}
}
void Form1::seEnable_CheckedChanged(System::Object^ sender, System::EventArgs^ e) {
if(this->seEnable->Checked) {
this->radioButton9->Checked = false;
this->radioButton9->Enabled = false;
this->seEnable->Text = "Enabled";
this->decentSE->Enabled = true;
criticalRate += .20;
criticalMax += .30;
}
else {
this->seEnable->Text = "Disabled";
this->radioButton9->Enabled = true;
this->decentSE->Enabled = false;
this->decentSE->Checked = false;
criticalRate = .65;
criticalMax = 1.5;
}
}
void Form1::decentSE_CheckedChanged(System::Object^ sender, System::EventArgs^ e) {
if(this->decentSE->Checked) {
criticalRate -= .1;
criticalMax -= .15;
}
else {
criticalRate += .1;
criticalMax += .15;
}
}
void Form1::advBless_CheckedChanged(System::Object^ sender, System::EventArgs^ e) {
if(this->advBless->Checked) {
this->radioButton3->Checked = false;
this->radioButton3->Enabled = false;
this->radioButton10->Checked = false;
this->radioButton10->Enabled = false;
this->advBless->Text = "Enabled";
this->decentBless->Enabled = true;
cAttack += 30;
}
else {
this->radioButton3->Enabled = true;
this->rageEnable->Text = "Disabled";
this->radioButton10->Enabled = true;
this->decentBless->Enabled = false;
this->decentBless->Checked = false;
cAttack -=30;
}
}
void Form1::echo_CheckedChanged(System::Object^ sender, System::EventArgs^ e) {
if(this->echo->Checked) {
pAttack += .04;
this->echo->Text = "Enabled";
}
else {
pAttack -= .04;
this->echo->Text = "Disabled";
}
}
void Form1::decentBless_CheckedChanged(System::Object^ sender, System::EventArgs^ e) {
if(this->decentBless->Checked)
cAttack -= 10;
else
cAttack += 10;
}
//Unbuffed Min
void Form1::textBox1_TextChanged(System::Object^ sender, System::EventArgs^ e) {
//
}
//Unbuffed Max
void Form1::textBox2_TextChanged(System::Object^ sender, System::EventArgs^ e) {
//
}
//Buffed Min
void Form1::textBox3_TextChanged(System::Object^ sender, System::EventArgs^ e) {
//
}
//Buffed Max
void Form1::textBox4_TextChanged(System::Object^ sender, System::EventArgs^ e) {
//
}
//Skill Damage on Monsters Min
void Form1::textBox5_TextChanged(System::Object^ sender, System::EventArgs^ e) {
//
}
//Skill Damage on Monsters Max
void Form1::textBox6_TextChanged(System::Object^ sender, System::EventArgs^ e) {
//
}
//Physical Resist Check
void Form1::checkBox1_CheckedChanged(System::Object^ sender, System::EventArgs^ e) {
double dmginc = 1.0 + bossDamage + cDmgInc;
double ignorepdr = prayofAriaIgnore + cIgnore;
int attack = floor((padX + weaponAttack + cAttack)*pAttack);
double eLUK = ((totalLUK/lukPercent) - bluk);
double eDEX = ((totalDEX/dexPercent) - bdex);
int luk = floor((floor(bluk*mapleWarrior)+eLUK)*lukPercent);
int dex = floor((floor(bdex*mapleWarrior)+eDEX)*dexPercent);
int buffedMin = floor(((1.3*((4*luk)+dex)*attack)/100)*mastery*(prayofAriaDmg+pirateStyle));
int buffedMax = floor(((1.3*((4*luk)+dex)*attack)/100)*(prayofAriaDmg+pirateStyle));
double criticalDamage = 1 + (criticalRate * (((criticalMin + criticalMax)-2) / 2));
//double PDRate = (1-(mobpdr/100))+((mobpdr/100)*(ignorepdr));
if(ignorepdr >= 1.0)
PDRate = 1;
else
PDRate = (1-(mobpdr/100))+((mobpdr/100)*(ignorepdr));
double cleanAttack = static_cast<double>(padX+weaponAttack);
double skillPercent = static_cast<double>(skill)/100;
int mobDmgMin = floor(buffedMin * skillPercent * PDRate * (1.0+cDmgInc));
int mobDmgMax = floor(buffedMax * skillPercent * criticalMax * PDRate*(1.0+cDmgInc));
int bossDmgMin = floor(buffedMin * skillPercent * PDRate * dmginc);
int bossDmgMax = floor(buffedMax * skillPercent * criticalMax * PDRate * dmginc);
if(this->checkBox1->Checked) {
this->textBox7->Text = Convert::ToString(static_cast<int>(static_cast<double>(bossDmgMax)/2));
this->textBox8->Text = Convert::ToString(static_cast<int>(static_cast<double>(bossDmgMin)/2));
}
else {
this->textBox8->Text = Convert::ToString(bossDmgMin);
this->textBox7->Text = Convert::ToString(bossDmgMax);
}
}
//Skill Damage on Bosses Min
void Form1::textBox8_TextChanged(System::Object^ sender, System::EventArgs^ e) {
//
}
//Skill Damage on Bosses Max
void Form1::textBox7_TextChanged(System::Object^ sender, System::EventArgs^ e) {
//
}
//Calculate Button
void Form1::button1_Click(System::Object^ sender, System::EventArgs^ e) {
double dmginc = 1.0 + bossDamage + cDmgInc;
double ignorepdr = prayofAriaIgnore + cIgnore;
int attack = floor((padX + weaponAttack + cAttack)*pAttack);
double eLUK = ((totalLUK/lukPercent) - bluk);
double eDEX = ((totalDEX/dexPercent) - bdex);
int luk = floor((floor(bluk*mapleWarrior)+eLUK)*lukPercent);
int dex = floor((floor(bdex*mapleWarrior)+eDEX)*dexPercent);
int buffedMin = floor(((1.3*((4*luk)+dex)*attack)/100)*mastery*(prayofAriaDmg+pirateStyle));
int buffedMax = floor(((1.3*((4*luk)+dex)*attack)/100)*(prayofAriaDmg+pirateStyle));
double criticalDamage = 1 + (criticalRate * (((criticalMin + criticalMax)-2) / 2));
//double PDRate = (1-(mobpdr/100))+((mobpdr/100)*(ignorepdr));
if(ignorepdr >= 1.0)
PDRate = 1;
else
PDRate = (1-(mobpdr/100))+((mobpdr/100)*(ignorepdr));
double cleanAttack = static_cast<double>(padX+weaponAttack);
double skillPercent = static_cast<double>(skill)/100;
int mobDmgMin = floor(buffedMin * skillPercent * PDRate * (1.0+cDmgInc));
int mobDmgMax = floor(buffedMax * skillPercent * criticalMax * PDRate* (1.0+cDmgInc));
int bossDmgMin = floor(buffedMin * skillPercent * PDRate * dmginc);
int bossDmgMax = floor(buffedMax * skillPercent * criticalMax * PDRate * dmginc);
this->textBox1->Text = Convert::ToString(static_cast<int>(((1.3*(4*totalLUK+totalDEX)*cleanAttack)/100)*mastery));
this->textBox2->Text = Convert::ToString(static_cast<int>((1.3*(4*totalLUK+totalDEX)*cleanAttack)/100));
this->textBox3->Text = Convert::ToString(buffedMin);
this->textBox4->Text = Convert::ToString(buffedMax);
this->textBox5->Text = Convert::ToString(mobDmgMin);
this->textBox6->Text = Convert::ToString(mobDmgMax);
if(this->checkBox1->Checked) {
this->textBox8->Text = Convert::ToString(static_cast<int>(static_cast<double>(bossDmgMin)/2));
this->textBox7->Text = Convert::ToString(static_cast<int>(static_cast<double>(bossDmgMax)/2));
}
else {
this->textBox7->Text = Convert::ToString(bossDmgMax);
this->textBox8->Text = Convert::ToString(bossDmgMin);
}
}
//Update (Debug Mode) or this->tabControl1->Controls->Add(this->tabPage5);
void Form1::button2_Click(System::Object^ sender, System::EventArgs^ e) {
double dmginc = 1.0 + bossDamage + cDmgInc;
double ignorepdr = prayofAriaIgnore + cIgnore;
int attack = floor((padX + weaponAttack + cAttack)*pAttack);
double eLUK = ((totalLUK/lukPercent) - bluk);
double eDEX = ((totalDEX/dexPercent) - bdex);
int luk = floor((floor(bluk*mapleWarrior)+eLUK)*lukPercent);
int dex = floor((floor(bdex*mapleWarrior)+eDEX)*dexPercent);
int buffedMin = floor(((1.3*((4*luk)+dex)*attack)/100)*mastery*(prayofAriaDmg+pirateStyle));
int buffedMax = floor(((1.3*((4*luk)+dex)*attack)/100)*(prayofAriaDmg+pirateStyle));
double criticalDamage = 1 + (criticalRate * (((criticalMin + criticalMax)-2) / 2));
//double PDRate = (1-(mobpdr/100))+((mobpdr/100)*(ignorepdr));
if(ignorepdr >= 1.0)
PDRate = 1;
else
PDRate = (1-(mobpdr/100))+((mobpdr/100)*(ignorepdr));
double cleanAttack = static_cast<double>(padX+weaponAttack);
double skillPercent = static_cast<double>(skill)/100;
int mobDmgMin = floor(buffedMin * skillPercent * PDRate * (1.0+cDmgInc));
int mobDmgMax = floor(buffedMax * skillPercent * criticalMax * PDRate* (1.0+cDmgInc));
int bossDmgMin = floor(buffedMin * skillPercent * PDRate * dmginc);
int bossDmgMax = floor(buffedMax * skillPercent * criticalMax * PDRate * dmginc);
this->textBox9->Text = Convert::ToString(attack);
this->textBox10->Text = Convert::ToString(skill);
this->textBox11->Text = Convert::ToString(PDRate);
this->textBox12->Text = Convert::ToString(dmginc);
this->textBox13->Text = Convert::ToString(mastery);
this->textBox14->Text = Convert::ToString(criticalDamage);
this->textBox15->Text = Convert::ToString(totalLUK);
this->textBox16->Text = Convert::ToString(totalDEX);
this->textBox17->Text = Convert::ToString(skillPercent);
this->textBox18->Text = Convert::ToString(padX);
this->textBox19->Text = Convert::ToString(cleanAttack);
this->textBox20->Text = Convert::ToString(ignorepdr);
}
#pragma once
namespace PhantomCalculator {
using namespace System;
using namespace System::ComponentModel;
using namespace System::Collections;
using namespace System::Windows::Forms;
using namespace System::Data;
using namespace System::Drawing;
/// <summary>
/// Summary for Form1
/// </summary>
public ref class Form1 : public System::Windows::Forms::Form
{
public:
Form1(void)
{
InitializeComponent();
//
//TODO: Add the constructor code here
//
}
protected:
/// <summary>
/// Clean up any resources being used.
/// </summary>
~Form1()
{
if (components)
{
delete components;
}
}
private: System::Windows::Forms::RadioButton^ radioButton1;
protected:
private: System::Windows::Forms::RadioButton^ radioButton2;
private: System::Windows::Forms::RadioButton^ radioButton3;
private: System::Windows::Forms::GroupBox^ groupBox1;
private: System::Windows::Forms::RadioButton^ radioButton4;
private: System::Windows::Forms::GroupBox^ groupBox2;
private: System::Windows::Forms::RadioButton^ radioButton7;
private: System::Windows::Forms::RadioButton^ radioButton6;
private: System::Windows::Forms::RadioButton^ radioButton5;
private: System::Windows::Forms::GroupBox^ groupBox3;
private: System::Windows::Forms::RadioButton^ radioButton11;
private: System::Windows::Forms::RadioButton^ radioButton10;
private: System::Windows::Forms::RadioButton^ radioButton9;
private: System::Windows::Forms::RadioButton^ radioButton8;
private: System::Windows::Forms::ToolTip^ toolTip1;
private: System::Windows::Forms::PictureBox^ pictureBox1;
private: System::Windows::Forms::PictureBox^ pictureBox2;
private: System::Windows::Forms::PictureBox^ pictureBox3;
private: System::Windows::Forms::PictureBox^ pictureBox4;
private: System::Windows::Forms::PictureBox^ pictureBox5;
private: System::Windows::Forms::NumericUpDown^ numericUpDown1;
private: System::Windows::Forms::NumericUpDown^ numericUpDown2;
private: System::Windows::Forms::NumericUpDown^ numericUpDown3;
private: System::Windows::Forms::NumericUpDown^ numericUpDown4;
private: System::Windows::Forms::NumericUpDown^ numericUpDown5;
private: System::Windows::Forms::GroupBox^ groupBox4;
private: System::Windows::Forms::NumericUpDown^ numericUpDown6;
private: System::Windows::Forms::Label^ label7;
private: System::Windows::Forms::Label^ label6;
private: System::Windows::Forms::Label^ label5;
private: System::Windows::Forms::Label^ label4;
private: System::Windows::Forms::Label^ label3;
private: System::Windows::Forms::Label^ label2;
private: System::Windows::Forms::NumericUpDown^ numericUpDown7;
private: System::Windows::Forms::NumericUpDown^ numericUpDown9;
private: System::Windows::Forms::NumericUpDown^ numericUpDown8;
private: System::Windows::Forms::NumericUpDown^ numericUpDown10;
private: System::Windows::Forms::NumericUpDown^ numericUpDown11;
private: System::Windows::Forms::NumericUpDown^ numericUpDown12;
private: System::Windows::Forms::Label^ label8;
private: System::Windows::Forms::TabControl^ tabControl1;
private: System::Windows::Forms::TabPage^ tabPage1;
private: System::Windows::Forms::TabPage^ tabPage2;
private: System::Windows::Forms::TabPage^ tabPage3;
private: System::Windows::Forms::TabPage^ tabPage4;
private: System::Windows::Forms::Label^ label9;
private: System::Windows::Forms::TextBox^ textBox1;
private: System::Windows::Forms::Label^ label1;
private: System::Windows::Forms::Label^ label10;
private: System::Windows::Forms::TextBox^ textBox2;
private: System::Windows::Forms::Label^ label11;
private: System::Windows::Forms::TextBox^ textBox3;
private: System::Windows::Forms::TextBox^ textBox4;
private: System::Windows::Forms::TextBox^ textBox5;
private: System::Windows::Forms::Label^ label12;
private: System::Windows::Forms::TextBox^ textBox6;
private: System::Windows::Forms::Label^ label13;
private: System::Windows::Forms::TextBox^ textBox7;
private: System::Windows::Forms::Label^ label15;
private: System::Windows::Forms::TextBox^ textBox8;
private: System::Windows::Forms::Label^ label14;
private: System::Windows::Forms::Label^ label16;
private: System::Windows::Forms::Label^ label17;
private: System::Windows::Forms::CheckBox^ checkBox1;
private: System::Windows::Forms::Label^ label18;
private: System::Windows::Forms::NumericUpDown^ monsterPDR;
private: System::Windows::Forms::NumericUpDown^ numericUpDown14;
private: System::Windows::Forms::Label^ label19;
private: System::Windows::Forms::NumericUpDown^ numericUpDown13;
private: System::Windows::Forms::Label^ LUKpercent;
private: System::Windows::Forms::Button^ button1;
private: System::Windows::Forms::TabPage^ tabPage5;
private: System::Windows::Forms::TextBox^ textBox12;
private: System::Windows::Forms::Label^ label24;
private: System::Windows::Forms::TextBox^ textBox11;
private: System::Windows::Forms::Label^ label23;
private: System::Windows::Forms::TextBox^ textBox10;
private: System::Windows::Forms::Label^ label22;
private: System::Windows::Forms::Label^ label21;
private: System::Windows::Forms::Label^ label20;
private: System::Windows::Forms::TextBox^ textBox9;
private: System::Windows::Forms::Button^ button2;
private: System::Windows::Forms::TextBox^ textBox16;
private: System::Windows::Forms::Label^ label28;
private: System::Windows::Forms::TextBox^ textBox15;
private: System::Windows::Forms::Label^ label27;
private: System::Windows::Forms::TextBox^ textBox14;
private: System::Windows::Forms::Label^ label26;
private: System::Windows::Forms::TextBox^ textBox13;
private: System::Windows::Forms::Label^ label25;
private: System::Windows::Forms::TextBox^ textBox17;
private: System::Windows::Forms::Label^ label29;
private: System::Windows::Forms::TextBox^ textBox19;
private: System::Windows::Forms::Label^ label31;
private: System::Windows::Forms::TextBox^ textBox18;
private: System::Windows::Forms::Label^ label30;
private: System::Windows::Forms::Label^ label32;
private: System::Windows::Forms::TextBox^ textBox20;
private: System::Windows::Forms::NumericUpDown^ numericUpDown15;
private: System::Windows::Forms::Label^ label33;
private: System::Windows::Forms::TabPage^ tabPage6;
private: System::Windows::Forms::PictureBox^ pictureBox6;
private: System::Windows::Forms::CheckBox^ rageEnable;
private: System::Windows::Forms::CheckBox^ advBless;
private: System::Windows::Forms::CheckBox^ seEnable;
private: System::Windows::Forms::CheckBox^ AdvAura;
private: System::Windows::Forms::CheckBox^ echo;
private: System::Windows::Forms::PictureBox^ pictureBox10;
private: System::Windows::Forms::PictureBox^ pictureBox9;
private: System::Windows::Forms::PictureBox^ pictureBox8;
private: System::Windows::Forms::PictureBox^ pictureBox7;
private: System::Windows::Forms::CheckBox^ decentSE;
private: System::Windows::Forms::CheckBox^ decentBless;
private: System::Windows::Forms::LinkLabel^ linkLabel1;
private: System::ComponentModel::IContainer^ components;
private:
/// <summary>
/// Required designer variable.
/// </summary>
#pragma region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
void InitializeComponent(void)
{
this->components = (gcnew System::ComponentModel::Container());
System::ComponentModel::ComponentResourceManager^ resources = (gcnew System::ComponentModel::ComponentResourceManager(Form1::typeid));
this->radioButton1 = (gcnew System::Windows::Forms::RadioButton());
this->radioButton2 = (gcnew System::Windows::Forms::RadioButton());
this->radioButton3 = (gcnew System::Windows::Forms::RadioButton());
this->groupBox1 = (gcnew System::Windows::Forms::GroupBox());
this->radioButton4 = (gcnew System::Windows::Forms::RadioButton());
this->groupBox2 = (gcnew System::Windows::Forms::GroupBox());
this->radioButton7 = (gcnew System::Windows::Forms::RadioButton());
this->radioButton6 = (gcnew System::Windows::Forms::RadioButton());
this->radioButton5 = (gcnew System::Windows::Forms::RadioButton());
this->groupBox3 = (gcnew System::Windows::Forms::GroupBox());
this->radioButton11 = (gcnew System::Windows::Forms::RadioButton());
this->radioButton10 = (gcnew System::Windows::Forms::RadioButton());
this->radioButton9 = (gcnew System::Windows::Forms::RadioButton());
this->radioButton8 = (gcnew System::Windows::Forms::RadioButton());
this->toolTip1 = (gcnew System::Windows::Forms::ToolTip(this->components));
this->pictureBox1 = (gcnew System::Windows::Forms::PictureBox());
this->pictureBox2 = (gcnew System::Windows::Forms::PictureBox());
this->pictureBox3 = (gcnew System::Windows::Forms::PictureBox());
this->pictureBox4 = (gcnew System::Windows::Forms::PictureBox());
this->pictureBox5 = (gcnew System::Windows::Forms::PictureBox());
this->label12 = (gcnew System::Windows::Forms::Label());
this->label14 = (gcnew System::Windows::Forms::Label());
this->label5 = (gcnew System::Windows::Forms::Label());
this->label4 = (gcnew System::Windows::Forms::Label());
this->LUKpercent = (gcnew System::Windows::Forms::Label());
this->checkBox1 = (gcnew System::Windows::Forms::CheckBox());
this->label19 = (gcnew System::Windows::Forms::Label());
this->label8 = (gcnew System::Windows::Forms::Label());
this->label6 = (gcnew System::Windows::Forms::Label());
this->label17 = (gcnew System::Windows::Forms::Label());
this->pictureBox6 = (gcnew System::Windows::Forms::PictureBox());
this->pictureBox7 = (gcnew System::Windows::Forms::PictureBox());
this->pictureBox8 = (gcnew System::Windows::Forms::PictureBox());
this->pictureBox9 = (gcnew System::Windows::Forms::PictureBox());
this->pictureBox10 = (gcnew System::Windows::Forms::PictureBox());
this->numericUpDown1 = (gcnew System::Windows::Forms::NumericUpDown());
this->numericUpDown2 = (gcnew System::Windows::Forms::NumericUpDown());
this->numericUpDown3 = (gcnew System::Windows::Forms::NumericUpDown());
this->numericUpDown4 = (gcnew System::Windows::Forms::NumericUpDown());
this->numericUpDown5 = (gcnew System::Windows::Forms::NumericUpDown());
this->groupBox4 = (gcnew System::Windows::Forms::GroupBox());
this->numericUpDown15 = (gcnew System::Windows::Forms::NumericUpDown());
this->label33 = (gcnew System::Windows::Forms::Label());
this->numericUpDown14 = (gcnew System::Windows::Forms::NumericUpDown());
this->numericUpDown13 = (gcnew System::Windows::Forms::NumericUpDown());
this->numericUpDown12 = (gcnew System::Windows::Forms::NumericUpDown());
this->numericUpDown11 = (gcnew System::Windows::Forms::NumericUpDown());
this->numericUpDown10 = (gcnew System::Windows::Forms::NumericUpDown());
this->numericUpDown9 = (gcnew System::Windows::Forms::NumericUpDown());
this->numericUpDown8 = (gcnew System::Windows::Forms::NumericUpDown());
this->numericUpDown7 = (gcnew System::Windows::Forms::NumericUpDown());
this->numericUpDown6 = (gcnew System::Windows::Forms::NumericUpDown());
this->label7 = (gcnew System::Windows::Forms::Label());
this->label3 = (gcnew System::Windows::Forms::Label());
this->label2 = (gcnew System::Windows::Forms::Label());
this->tabControl1 = (gcnew System::Windows::Forms::TabControl());
this->tabPage1 = (gcnew System::Windows::Forms::TabPage());
this->button1 = (gcnew System::Windows::Forms::Button());
this->textBox7 = (gcnew System::Windows::Forms::TextBox());
this->label15 = (gcnew System::Windows::Forms::Label());
this->textBox8 = (gcnew System::Windows::Forms::TextBox());
this->textBox6 = (gcnew System::Windows::Forms::TextBox());
this->label13 = (gcnew System::Windows::Forms::Label());
this->textBox5 = (gcnew System::Windows::Forms::TextBox());
this->textBox4 = (gcnew System::Windows::Forms::TextBox());
this->label11 = (gcnew System::Windows::Forms::Label());
this->textBox3 = (gcnew System::Windows::Forms::TextBox());
this->label10 = (gcnew System::Windows::Forms::Label());
this->textBox2 = (gcnew System::Windows::Forms::TextBox());
this->label9 = (gcnew System::Windows::Forms::Label());
this->textBox1 = (gcnew System::Windows::Forms::TextBox());
this->label1 = (gcnew System::Windows::Forms::Label());
this->tabPage2 = (gcnew System::Windows::Forms::TabPage());
this->label18 = (gcnew System::Windows::Forms::Label());
this->monsterPDR = (gcnew System::Windows::Forms::NumericUpDown());
this->tabPage3 = (gcnew System::Windows::Forms::TabPage());
this->tabPage4 = (gcnew System::Windows::Forms::TabPage());
this->tabPage6 = (gcnew System::Windows::Forms::TabPage());
this->decentSE = (gcnew System::Windows::Forms::CheckBox());
this->decentBless = (gcnew System::Windows::Forms::CheckBox());
this->rageEnable = (gcnew System::Windows::Forms::CheckBox());
this->advBless = (gcnew System::Windows::Forms::CheckBox());
this->seEnable = (gcnew System::Windows::Forms::CheckBox());
this->AdvAura = (gcnew System::Windows::Forms::CheckBox());
this->echo = (gcnew System::Windows::Forms::CheckBox());
this->tabPage5 = (gcnew System::Windows::Forms::TabPage());
this->label32 = (gcnew System::Windows::Forms::Label());
this->textBox20 = (gcnew System::Windows::Forms::TextBox());
this->textBox19 = (gcnew System::Windows::Forms::TextBox());
this->label31 = (gcnew System::Windows::Forms::Label());
this->textBox18 = (gcnew System::Windows::Forms::TextBox());
this->label30 = (gcnew System::Windows::Forms::Label());
this->textBox17 = (gcnew System::Windows::Forms::TextBox());
this->label29 = (gcnew System::Windows::Forms::Label());
this->textBox16 = (gcnew System::Windows::Forms::TextBox());
this->label28 = (gcnew System::Windows::Forms::Label());
this->textBox15 = (gcnew System::Windows::Forms::TextBox());
this->label27 = (gcnew System::Windows::Forms::Label());
this->textBox14 = (gcnew System::Windows::Forms::TextBox());
this->label26 = (gcnew System::Windows::Forms::Label());
this->textBox13 = (gcnew System::Windows::Forms::TextBox());
this->label25 = (gcnew System::Windows::Forms::Label());
this->textBox12 = (gcnew System::Windows::Forms::TextBox());
this->label24 = (gcnew System::Windows::Forms::Label());
this->textBox11 = (gcnew System::Windows::Forms::TextBox());
this->label23 = (gcnew System::Windows::Forms::Label());
this->textBox10 = (gcnew System::Windows::Forms::TextBox());
this->label22 = (gcnew System::Windows::Forms::Label());
this->label21 = (gcnew System::Windows::Forms::Label());
this->label20 = (gcnew System::Windows::Forms::Label());
this->textBox9 = (gcnew System::Windows::Forms::TextBox());
this->button2 = (gcnew System::Windows::Forms::Button());
this->label16 = (gcnew System::Windows::Forms::Label());
this->linkLabel1 = (gcnew System::Windows::Forms::LinkLabel());
this->groupBox1->SuspendLayout();
this->groupBox2->SuspendLayout();
this->groupBox3->SuspendLayout();
(cli::safe_cast<System::ComponentModel::ISupportInitialize^ >(this->pictureBox1))->BeginInit();
(cli::safe_cast<System::ComponentModel::ISupportInitialize^ >(this->pictureBox2))->BeginInit();
(cli::safe_cast<System::ComponentModel::ISupportInitialize^ >(this->pictureBox3))->BeginInit();
(cli::safe_cast<System::ComponentModel::ISupportInitialize^ >(this->pictureBox4))->BeginInit();
(cli::safe_cast<System::ComponentModel::ISupportInitialize^ >(this->pictureBox5))->BeginInit();
(cli::safe_cast<System::ComponentModel::ISupportInitialize^ >(this->pictureBox6))->BeginInit();
(cli::safe_cast<System::ComponentModel::ISupportInitialize^ >(this->pictureBox7))->BeginInit();
(cli::safe_cast<System::ComponentModel::ISupportInitialize^ >(this->pictureBox8))->BeginInit();
(cli::safe_cast<System::ComponentModel::ISupportInitialize^ >(this->pictureBox9))->BeginInit();
(cli::safe_cast<System::ComponentModel::ISupportInitialize^ >(this->pictureBox10))->BeginInit();
(cli::safe_cast<System::ComponentModel::ISupportInitialize^ >(this->numericUpDown1))->BeginInit();
(cli::safe_cast<System::ComponentModel::ISupportInitialize^ >(this->numericUpDown2))->BeginInit();
(cli::safe_cast<System::ComponentModel::ISupportInitialize^ >(this->numericUpDown3))->BeginInit();
(cli::safe_cast<System::ComponentModel::ISupportInitialize^ >(this->numericUpDown4))->BeginInit();
(cli::safe_cast<System::ComponentModel::ISupportInitialize^ >(this->numericUpDown5))->BeginInit();
this->groupBox4->SuspendLayout();
(cli::safe_cast<System::ComponentModel::ISupportInitialize^ >(this->numericUpDown15))->BeginInit();
(cli::safe_cast<System::ComponentModel::ISupportInitialize^ >(this->numericUpDown14))->BeginInit();
(cli::safe_cast<System::ComponentModel::ISupportInitialize^ >(this->numericUpDown13))->BeginInit();
(cli::safe_cast<System::ComponentModel::ISupportInitialize^ >(this->numericUpDown12))->BeginInit();
(cli::safe_cast<System::ComponentModel::ISupportInitialize^ >(this->numericUpDown11))->BeginInit();
(cli::safe_cast<System::ComponentModel::ISupportInitialize^ >(this->numericUpDown10))->BeginInit();
(cli::safe_cast<System::ComponentModel::ISupportInitialize^ >(this->numericUpDown9))->BeginInit();
(cli::safe_cast<System::ComponentModel::ISupportInitialize^ >(this->numericUpDown8))->BeginInit();
(cli::safe_cast<System::ComponentModel::ISupportInitialize^ >(this->numericUpDown7))->BeginInit();
(cli::safe_cast<System::ComponentModel::ISupportInitialize^ >(this->numericUpDown6))->BeginInit();
this->tabControl1->SuspendLayout();
this->tabPage1->SuspendLayout();
this->tabPage2->SuspendLayout();
(cli::safe_cast<System::ComponentModel::ISupportInitialize^ >(this->monsterPDR))->BeginInit();
this->tabPage3->SuspendLayout();
this->tabPage4->SuspendLayout();
this->tabPage6->SuspendLayout();
this->tabPage5->SuspendLayout();
this->SuspendLayout();
//
// radioButton1
//
this->radioButton1->AutoSize = true;
this->radioButton1->Location = System::Drawing::Point(6, 19);
this->radioButton1->Name = L"radioButton1";
this->radioButton1->Size = System::Drawing::Size(51, 17);
this->radioButton1->TabIndex = 0;
this->radioButton1->TabStop = true;
this->radioButton1->Text = L"Rage";
this->radioButton1->UseVisualStyleBackColor = true;
this->radioButton1->CheckedChanged += gcnew System::EventHandler(this, &Form1::radioButton1_CheckedChanged);
//
// radioButton2
//
this->radioButton2->AutoSize = true;
this->radioButton2->Location = System::Drawing::Point(118, 19);
this->radioButton2->Name = L"radioButton2";
this->radioButton2->Size = System::Drawing::Size(88, 17);
this->radioButton2->TabIndex = 1;
this->radioButton2->TabStop = true;
this->radioButton2->Text = L"Mental Clarity";
this->radioButton2->UseVisualStyleBackColor = true;
this->radioButton2->CheckedChanged += gcnew System::EventHandler(this, &Form1::radioButton2_CheckedChanged);
//
// radioButton3
//
this->radioButton3->AutoSize = true;
this->radioButton3->Location = System::Drawing::Point(62, 19);
this->radioButton3->Name = L"radioButton3";
this->radioButton3->Size = System::Drawing::Size(50, 17);
this->radioButton3->TabIndex = 2;
this->radioButton3->TabStop = true;
this->radioButton3->Text = L"Bless";
this->radioButton3->UseVisualStyleBackColor = true;
this->radioButton3->CheckedChanged += gcnew System::EventHandler(this, &Form1::radioButton3_CheckedChanged);
//
// groupBox1
//
this->groupBox1->Controls->Add(this->radioButton4);
this->groupBox1->Controls->Add(this->radioButton1);
this->groupBox1->Controls->Add(this->radioButton3);
this->groupBox1->Controls->Add(this->radioButton2);
this->groupBox1->Location = System::Drawing::Point(3, 9);
this->groupBox1->Name = L"groupBox1";
this->groupBox1->Size = System::Drawing::Size(314, 46);
this->groupBox1->TabIndex = 3;
this->groupBox1->TabStop = false;
this->groupBox1->Text = L"2nd Job";
this->toolTip1->SetToolTip(this->groupBox1, L"Enter your 2nd job stolen skill of choice");
//
// radioButton4
//
this->radioButton4->AutoSize = true;
this->radioButton4->Location = System::Drawing::Point(212, 19);
this->radioButton4->Name = L"radioButton4";
this->radioButton4->Size = System::Drawing::Size(68, 17);
this->radioButton4->TabIndex = 3;
this->radioButton4->TabStop = true;
this->radioButton4->Text = L"Threaten";
this->radioButton4->UseVisualStyleBackColor = true;
this->radioButton4->CheckedChanged += gcnew System::EventHandler(this, &Form1::radioButton4_CheckedChanged);
//
// groupBox2
//
this->groupBox2->Controls->Add(this->radioButton7);
this->groupBox2->Controls->Add(this->radioButton6);
this->groupBox2->Controls->Add(this->radioButton5);
this->groupBox2->Location = System::Drawing::Point(3, 61);
this->groupBox2->Name = L"groupBox2";
this->groupBox2->Size = System::Drawing::Size(314, 43);
this->groupBox2->TabIndex = 4;
this->groupBox2->TabStop = false;
this->groupBox2->Text = L"3rd Job";
this->toolTip1->SetToolTip(this->groupBox2, L"Enter your 3rd job stolen skill of choice");
//
// radioButton7
//
this->radioButton7->AutoSize = true;
this->radioButton7->Enabled = false;
this->radioButton7->Location = System::Drawing::Point(212, 19);
this->radioButton7->Name = L"radioButton7";
this->radioButton7->Size = System::Drawing::Size(95, 17);
this->radioButton7->TabIndex = 2;
this->radioButton7->TabStop = true;
this->radioButton7->Text = L"Combat Orders";
this->radioButton7->UseVisualStyleBackColor = true;
this->radioButton7->CheckedChanged += gcnew System::EventHandler(this, &Form1::radioButton7_CheckedChanged);
//
// radioButton6
//
this->radioButton6->AutoSize = true;
this->radioButton6->Location = System::Drawing::Point(118, 19);
this->radioButton6->Name = L"radioButton6";
this->radioButton6->Size = System::Drawing::Size(83, 17);
this->radioButton6->TabIndex = 1;
this->radioButton6->TabStop = true;
this->radioButton6->Text = L"Concentrate";
this->radioButton6->UseVisualStyleBackColor = true;
this->radioButton6->CheckedChanged += gcnew System::EventHandler(this, &Form1::radioButton6_CheckedChanged);
//
// radioButton5
//
this->radioButton5->AutoSize = true;
this->radioButton5->Location = System::Drawing::Point(6, 19);
this->radioButton5->Name = L"radioButton5";
this->radioButton5->Size = System::Drawing::Size(92, 17);
this->radioButton5->TabIndex = 0;
this->radioButton5->TabStop = true;
this->radioButton5->Text = L"Combo Attack";
this->radioButton5->UseVisualStyleBackColor = true;
this->radioButton5->CheckedChanged += gcnew System::EventHandler(this, &Form1::radioButton5_CheckedChanged);
//
// groupBox3
//
this->groupBox3->Controls->Add(this->radioButton11);
this->groupBox3->Controls->Add(this->radioButton10);
this->groupBox3->Controls->Add(this->radioButton9);
this->groupBox3->Controls->Add(this->radioButton8);
this->groupBox3->Location = System::Drawing::Point(3, 110);
this->groupBox3->Name = L"groupBox3";
this->groupBox3->Size = System::Drawing::Size(314, 62);
this->groupBox3->TabIndex = 5;
this->groupBox3->TabStop = false;
this->groupBox3->Text = L"4th Job";
this->toolTip1->SetToolTip(this->groupBox3, L"Enter your 4th job skill of choice");
//
// radioButton11
//
this->radioButton11->AutoSize = true;
this->radioButton11->Location = System::Drawing::Point(6, 41);
this->radioButton11->Name = L"radioButton11";
this->radioButton11->Size = System::Drawing::Size(78, 17);
this->radioButton11->TabIndex = 3;
this->radioButton11->TabStop = true;
this->radioButton11->Text = L"Pirate Style";
this->radioButton11->UseVisualStyleBackColor = true;
this->radioButton11->CheckedChanged += gcnew System::EventHandler(this, &Form1::radioButton11_CheckedChanged);
//
// radioButton10
//
this->radioButton10->AutoSize = true;
this->radioButton10->Location = System::Drawing::Point(212, 19);
this->radioButton10->Name = L"radioButton10";
this->radioButton10->Size = System::Drawing::Size(102, 17);
this->radioButton10->TabIndex = 2;
this->radioButton10->TabStop = true;
this->radioButton10->Text = L"Advanced Bless";
this->radioButton10->UseVisualStyleBackColor = true;
this->radioButton10->CheckedChanged += gcnew System::EventHandler(this, &Form1::radioButton10_CheckedChanged);
//
// radioButton9
//
this->radioButton9->AutoSize = true;
this->radioButton9->Location = System::Drawing::Point(118, 19);
this->radioButton9->Name = L"radioButton9";
this->radioButton9->Size = System::Drawing::Size(79, 17);
this->radioButton9->TabIndex = 1;
this->radioButton9->TabStop = true;
this->radioButton9->Text = L"Sharp Eyes";
this->radioButton9->UseVisualStyleBackColor = true;
this->radioButton9->CheckedChanged += gcnew System::EventHandler(this, &Form1::radioButton9_CheckedChanged);
//
// radioButton8
//
this->radioButton8->AutoSize = true;
this->radioButton8->Location = System::Drawing::Point(6, 19);
this->radioButton8->Name = L"radioButton8";
this->radioButton8->Size = System::Drawing::Size(73, 17);
this->radioButton8->TabIndex = 0;
this->radioButton8->TabStop = true;
this->radioButton8->Text = L"Rapid Fire";
this->toolTip1->SetToolTip(this->radioButton8, L"When checked, this skill will be used to attack");
this->radioButton8->UseVisualStyleBackColor = true;
this->radioButton8->CheckedChanged += gcnew System::EventHandler(this, &Form1::radioButton8_CheckedChanged);
//
// toolTip1
//
this->toolTip1->Popup += gcnew System::Windows::Forms::PopupEventHandler(this, &Form1::toolTip1_Popup);
//
// pictureBox1
//
this->pictureBox1->Image = (cli::safe_cast<System::Drawing::Image^ >(resources->GetObject(L"pictureBox1.Image")));
this->pictureBox1->Location = System::Drawing::Point(13, 16);
this->pictureBox1->Name = L"pictureBox1";
this->pictureBox1->Size = System::Drawing::Size(32, 32);
this->pictureBox1->TabIndex = 6;
this->pictureBox1->TabStop = false;
this->toolTip1->SetToolTip(this->pictureBox1, L"Cane Expert");
//
// pictureBox2
//
this->pictureBox2->Image = (cli::safe_cast<System::Drawing::Image^ >(resources->GetObject(L"pictureBox2.Image")));
this->pictureBox2->Location = System::Drawing::Point(13, 56);
this->pictureBox2->Name = L"pictureBox2";
this->pictureBox2->Size = System::Drawing::Size(32, 32);
this->pictureBox2->TabIndex = 7;
this->pictureBox2->TabStop = false;
this->toolTip1->SetToolTip(this->pictureBox2, L"Pray of Aria");
//
// pictureBox3
//
this->pictureBox3->Image = (cli::safe_cast<System::Drawing::Image^ >(resources->GetObject(L"pictureBox3.Image")));
this->pictureBox3->Location = System::Drawing::Point(115, 16);
this->pictureBox3->Name = L"pictureBox3";
this->pictureBox3->Size = System::Drawing::Size(32, 32);
this->pictureBox3->TabIndex = 8;
this->pictureBox3->TabStop = false;
this->toolTip1->SetToolTip(this->pictureBox3, L"Talent of Phantom Thief IV");
//
// pictureBox4
//
this->pictureBox4->Image = (cli::safe_cast<System::Drawing::Image^ >(resources->GetObject(L"pictureBox4.Image")));
this->pictureBox4->Location = System::Drawing::Point(115, 56);
this->pictureBox4->Name = L"pictureBox4";
this->pictureBox4->Size = System::Drawing::Size(32, 32);
this->pictureBox4->TabIndex = 9;
this->pictureBox4->TabStop = false;
this->toolTip1->SetToolTip(this->pictureBox4, L"Ultimate Drive");
//
// pictureBox5
//
this->pictureBox5->Image = (cli::safe_cast<System::Drawing::Image^ >(resources->GetObject(L"pictureBox5.Image")));
this->pictureBox5->Location = System::Drawing::Point(13, 94);
this->pictureBox5->Name = L"pictureBox5";
this->pictureBox5->Size = System::Drawing::Size(32, 32);
this->pictureBox5->TabIndex = 10;
this->pictureBox5->TabStop = false;
this->toolTip1->SetToolTip(this->pictureBox5, L"Maple Warrior");
//
// label12
//
this->label12->AutoSize = true;
this->label12->Location = System::Drawing::Point(6, 91);
this->label12->Name = L"label12";
this->label12->Size = System::Drawing::Size(82, 13);
this->label12->TabIndex = 8;
this->label12->Text = L"Damage Range";
this->toolTip1->SetToolTip(this->label12, L"How much damage you do to monsters");
//
// label14
//
this->label14->AutoSize = true;
this->label14->Location = System::Drawing::Point(6, 130);
this->label14->Name = L"label14";
this->label14->Size = System::Drawing::Size(108, 13);
this->label14->TabIndex = 12;
this->label14->Text = L"Boss Damage Range";
this->toolTip1->SetToolTip(this->label14, L"Damage you do to bosses.");
//
// label5
//
this->label5->AutoSize = true;
this->label5->Location = System::Drawing::Point(5, 75);
this->label5->Name = L"label5";
this->label5->Size = System::Drawing::Size(55, 13);
this->label5->TabIndex = 3;
this->label5->Text = L"Total LUK";
this->toolTip1->SetToolTip(this->label5, L"Your total LUK before Maple Warrior");
//
// label4
//
this->label4->AutoSize = true;
this->label4->Location = System::Drawing::Point(5, 100);
this->label4->Name = L"label4";
this->label4->Size = System::Drawing::Size(56, 13);
this->label4->TabIndex = 2;
this->label4->Text = L"Total DEX";
this->toolTip1->SetToolTip(this->label4, L"Total DEX before Maple Warrior");
//
// LUKpercent
//
this->LUKpercent->AutoSize = true;
this->LUKpercent->Location = System::Drawing::Point(5, 127);
this->LUKpercent->Name = L"LUKpercent";
this->LUKpercent->Size = System::Drawing::Size(36, 13);
this->LUKpercent->TabIndex = 14;
this->LUKpercent->Text = L"LUK%";
this->toolTip1->SetToolTip(this->LUKpercent, L"Your %LUK including %AllStat but excluding MW");
//
// checkBox1
//
this->checkBox1->AutoSize = true;
this->checkBox1->Location = System::Drawing::Point(14, 182);
this->checkBox1->Name = L"checkBox1";
this->checkBox1->Size = System::Drawing::Size(97, 17);
this->checkBox1->TabIndex = 20;
this->checkBox1->Text = L"Physical Resist";
this->toolTip1->SetToolTip(this->checkBox1, L"Check if the boss is Empress or Hylla");
this->checkBox1->UseVisualStyleBackColor = true;
this->checkBox1->CheckedChanged += gcnew System::EventHandler(this, &Form1::checkBox1_CheckedChanged);
//
// label19
//
this->label19->AutoSize = true;
this->label19->Location = System::Drawing::Point(133, 127);
this->label19->Name = L"label19";
this->label19->Size = System::Drawing::Size(37, 13);
this->label19->TabIndex = 16;
this->label19->Text = L"DEX%";
this->toolTip1->SetToolTip(this->label19, L"%DEX including %All Stat excluding MW");
//
// label8
//
this->label8->AutoSize = true;
this->label8->Location = System::Drawing::Point(133, 75);
this->label8->Name = L"label8";
this->label8->Size = System::Drawing::Size(63, 13);
this->label8->TabIndex = 12;
this->label8->Text = L"Ignore PDR";
this->toolTip1->SetToolTip(this->label8, L"Ignore PDR on Weapon/Codex only.");
//
// label6
//
this->label6->AutoSize = true;
this->label6->Location = System::Drawing::Point(133, 29);
this->label6->Name = L"label6";
this->label6->Size = System::Drawing::Size(82, 13);
this->label6->TabIndex = 4;
this->label6->Text = L"Weapon Attack";
this->toolTip1->SetToolTip(this->label6, L"Total ATT with Empress Blessing but without any self-buffs. ");
//
// label17
//
this->label17->AutoSize = true;
this->label17->Location = System::Drawing::Point(322, 249);
this->label17->Name = L"label17";
this->label17->Size = System::Drawing::Size(28, 13);
this->label17->TabIndex = 20;
this->label17->Text = L"v1.4";
this->toolTip1->SetToolTip(this->label17, L"June 3rd, 2012");
//
// pictureBox6
//
this->pictureBox6->Image = (cli::safe_cast<System::Drawing::Image^ >(resources->GetObject(L"pictureBox6.Image")));
this->pictureBox6->Location = System::Drawing::Point(14, 23);
this->pictureBox6->Name = L"pictureBox6";
this->pictureBox6->Size = System::Drawing::Size(32, 32);
this->pictureBox6->TabIndex = 0;
this->pictureBox6->TabStop = false;
this->toolTip1->SetToolTip(this->pictureBox6, L"Echo of Hero");
//
// pictureBox7
//
this->pictureBox7->Image = (cli::safe_cast<System::Drawing::Image^ >(resources->GetObject(L"pictureBox7.Image")));
this->pictureBox7->Location = System::Drawing::Point(14, 72);
this->pictureBox7->Name = L"pictureBox7";
this->pictureBox7->Size = System::Drawing::Size(32, 32);
this->pictureBox7->TabIndex = 1;
this->pictureBox7->TabStop = false;
this->toolTip1->SetToolTip(this->pictureBox7, L"Advanced Dark Aura");
//
// pictureBox8
//
this->pictureBox8->Image = (cli::safe_cast<System::Drawing::Image^ >(resources->GetObject(L"pictureBox8.Image")));
this->pictureBox8->Location = System::Drawing::Point(14, 123);
this->pictureBox8->Name = L"pictureBox8";
this->pictureBox8->Size = System::Drawing::Size(32, 32);
this->pictureBox8->TabIndex = 2;
this->pictureBox8->TabStop = false;
this->toolTip1->SetToolTip(this->pictureBox8, L"Sharp Eyes");
//
// pictureBox9
//
this->pictureBox9->Image = (cli::safe_cast<System::Drawing::Image^ >(resources->GetObject(L"pictureBox9.Image")));
this->pictureBox9->Location = System::Drawing::Point(136, 23);
this->pictureBox9->Name = L"pictureBox9";
this->pictureBox9->Size = System::Drawing::Size(32, 32);
this->pictureBox9->TabIndex = 3;
this->pictureBox9->TabStop = false;
this->toolTip1->SetToolTip(this->pictureBox9, L"Advanced Bless");
//
// pictureBox10
//
this->pictureBox10->Image = (cli::safe_cast<System::Drawing::Image^ >(resources->GetObject(L"pictureBox10.Image")));
this->pictureBox10->Location = System::Drawing::Point(136, 72);
this->pictureBox10->Name = L"pictureBox10";
this->pictureBox10->Size = System::Drawing::Size(32, 32);
this->pictureBox10->TabIndex = 4;
this->pictureBox10->TabStop = false;
this->toolTip1->SetToolTip(this->pictureBox10, L"Rage");
//
// numericUpDown1
//
this->numericUpDown1->Location = System::Drawing::Point(62, 16);
this->numericUpDown1->Maximum = System::Decimal(gcnew cli::array< System::Int32 >(4) {32, 0, 0, 0});
this->numericUpDown1->Name = L"numericUpDown1";
this->numericUpDown1->Size = System::Drawing::Size(35, 20);
this->numericUpDown1->TabIndex = 11;
this->numericUpDown1->ValueChanged += gcnew System::EventHandler(this, &Form1::numericUpDown1_ValueChanged);
//
// numericUpDown2
//
this->numericUpDown2->Location = System::Drawing::Point(62, 56);
this->numericUpDown2->Maximum = System::Decimal(gcnew cli::array< System::Int32 >(4) {32, 0, 0, 0});
this->numericUpDown2->Name = L"numericUpDown2";
this->numericUpDown2->Size = System::Drawing::Size(35, 20);
this->numericUpDown2->TabIndex = 12;
this->numericUpDown2->ValueChanged += gcnew System::EventHandler(this, &Form1::numericUpDown2_ValueChanged);
//
// numericUpDown3
//
this->numericUpDown3->Location = System::Drawing::Point(164, 16);
this->numericUpDown3->Maximum = System::Decimal(gcnew cli::array< System::Int32 >(4) {32, 0, 0, 0});
this->numericUpDown3->Name = L"numericUpDown3";
this->numericUpDown3->Size = System::Drawing::Size(35, 20);
this->numericUpDown3->TabIndex = 13;
this->numericUpDown3->ValueChanged += gcnew System::EventHandler(this, &Form1::numericUpDown3_ValueChanged);
//
// numericUpDown4
//
this->numericUpDown4->Location = System::Drawing::Point(164, 56);
this->numericUpDown4->Maximum = System::Decimal(gcnew cli::array< System::Int32 >(4) {32, 0, 0, 0});
this->numericUpDown4->Name = L"numericUpDown4";
this->numericUpDown4->Size = System::Drawing::Size(35, 20);
this->numericUpDown4->TabIndex = 14;
this->numericUpDown4->ValueChanged += gcnew System::EventHandler(this, &Form1::numericUpDown4_ValueChanged);
//
// numericUpDown5
//
this->numericUpDown5->Location = System::Drawing::Point(62, 94);
this->numericUpDown5->Maximum = System::Decimal(gcnew cli::array< System::Int32 >(4) {32, 0, 0, 0});
this->numericUpDown5->Name = L"numericUpDown5";
this->numericUpDown5->Size = System::Drawing::Size(35, 20);
this->numericUpDown5->TabIndex = 15;
this->numericUpDown5->ValueChanged += gcnew System::EventHandler(this, &Form1::numericUpDown5_ValueChanged);
//
// groupBox4
//
this->groupBox4->Controls->Add(this->numericUpDown15);
this->groupBox4->Controls->Add(this->label33);
this->groupBox4->Controls->Add(this->numericUpDown14);
this->groupBox4->Controls->Add(this->label19);
this->groupBox4->Controls->Add(this->numericUpDown13);
this->groupBox4->Controls->Add(this->LUKpercent);
this->groupBox4->Controls->Add(this->numericUpDown12);
this->groupBox4->Controls->Add(this->label8);
this->groupBox4->Controls->Add(this->numericUpDown11);
this->groupBox4->Controls->Add(this->numericUpDown10);
this->groupBox4->Controls->Add(this->numericUpDown9);
this->groupBox4->Controls->Add(this->numericUpDown8);
this->groupBox4->Controls->Add(this->numericUpDown7);
this->groupBox4->Controls->Add(this->numericUpDown6);
this->groupBox4->Controls->Add(this->label7);
this->groupBox4->Controls->Add(this->label6);
this->groupBox4->Controls->Add(this->label5);
this->groupBox4->Controls->Add(this->label4);
this->groupBox4->Controls->Add(this->label3);
this->groupBox4->Controls->Add(this->label2);
this->groupBox4->Location = System::Drawing::Point(6, 10);
this->groupBox4->Name = L"groupBox4";
this->groupBox4->Size = System::Drawing::Size(292, 166);
this->groupBox4->TabIndex = 17;
this->groupBox4->TabStop = false;
this->groupBox4->Text = L"Character Stats";
//
// numericUpDown15
//
this->numericUpDown15->Location = System::Drawing::Point(228, 98);
this->numericUpDown15->Maximum = System::Decimal(gcnew cli::array< System::Int32 >(4) {74, 0, 0, 0});
this->numericUpDown15->Name = L"numericUpDown15";
this->numericUpDown15->Size = System::Drawing::Size(50, 20);
this->numericUpDown15->TabIndex = 19;
this->numericUpDown15->ValueChanged += gcnew System::EventHandler(this, &Form1::numericUpDown15_ValueChanged);
//
// label33
//
this->label33->AutoSize = true;
this->label33->Location = System::Drawing::Point(133, 100);
this->label33->Name = L"label33";
this->label33->Size = System::Drawing::Size(46, 13);
this->label33->TabIndex = 18;
this->label33->Text = L"Attack%";
//
// numericUpDown14
//
this->numericUpDown14->Location = System::Drawing::Point(228, 125);
this->numericUpDown14->Maximum = System::Decimal(gcnew cli::array< System::Int32 >(4) {400, 0, 0, 0});
this->numericUpDown14->Name = L"numericUpDown14";
this->numericUpDown14->Size = System::Drawing::Size(50, 20);
this->numericUpDown14->TabIndex = 17;
this->numericUpDown14->ValueChanged += gcnew System::EventHandler(this, &Form1::numericUpDown14_ValueChanged);
//
// numericUpDown13
//
this->numericUpDown13->Location = System::Drawing::Point(66, 127);
this->numericUpDown13->Maximum = System::Decimal(gcnew cli::array< System::Int32 >(4) {400, 0, 0, 0});
this->numericUpDown13->Name = L"numericUpDown13";
this->numericUpDown13->Size = System::Drawing::Size(50, 20);
this->numericUpDown13->TabIndex = 15;
this->numericUpDown13->ValueChanged += gcnew System::EventHandler(this, &Form1::numericUpDown13_ValueChanged);
//
// numericUpDown12
//
this->numericUpDown12->DecimalPlaces = 1;
this->numericUpDown12->Location = System::Drawing::Point(228, 75);
this->numericUpDown12->Name = L"numericUpDown12";
this->numericUpDown12->Size = System::Drawing::Size(50, 20);
this->numericUpDown12->TabIndex = 13;
this->numericUpDown12->ValueChanged += gcnew System::EventHandler(this, &Form1::numericUpDown12_ValueChanged);
//
// numericUpDown11
//
this->numericUpDown11->Increment = System::Decimal(gcnew cli::array< System::Int32 >(4) {10, 0, 0, 0});
this->numericUpDown11->Location = System::Drawing::Point(228, 50);
this->numericUpDown11->Maximum = System::Decimal(gcnew cli::array< System::Int32 >(4) {360, 0, 0, 0});
this->numericUpDown11->Name = L"numericUpDown11";
this->numericUpDown11->Size = System::Drawing::Size(50, 20);
this->numericUpDown11->TabIndex = 11;
this->numericUpDown11->ValueChanged += gcnew System::EventHandler(this, &Form1::numericUpDown11_ValueChanged);
//
// numericUpDown10
//
this->numericUpDown10->Location = System::Drawing::Point(228, 25);
this->numericUpDown10->Maximum = System::Decimal(gcnew cli::array< System::Int32 >(4) {2000, 0, 0, 0});
this->numericUpDown10->Name = L"numericUpDown10";
this->numericUpDown10->Size = System::Drawing::Size(50, 20);
this->numericUpDown10->TabIndex = 10;
this->numericUpDown10->ValueChanged += gcnew System::EventHandler(this, &Form1::numericUpDown10_ValueChanged);
//
// numericUpDown9
//
this->numericUpDown9->Location = System::Drawing::Point(66, 100);
this->numericUpDown9->Maximum = System::Decimal(gcnew cli::array< System::Int32 >(4) {10000, 0, 0, 0});
this->numericUpDown9->Minimum = System::Decimal(gcnew cli::array< System::Int32 >(4) {4, 0, 0, 0});
this->numericUpDown9->Name = L"numericUpDown9";
this->numericUpDown9->Size = System::Drawing::Size(50, 20);
this->numericUpDown9->TabIndex = 9;
this->numericUpDown9->Value = System::Decimal(gcnew cli::array< System::Int32 >(4) {4, 0, 0, 0});
this->numericUpDown9->ValueChanged += gcnew System::EventHandler(this, &Form1::numericUpDown9_ValueChanged);
//
// numericUpDown8
//
this->numericUpDown8->Location = System::Drawing::Point(66, 75);
this->numericUpDown8->Maximum = System::Decimal(gcnew cli::array< System::Int32 >(4) {10000, 0, 0, 0});
this->numericUpDown8->Minimum = System::Decimal(gcnew cli::array< System::Int32 >(4) {4, 0, 0, 0});
this->numericUpDown8->Name = L"numericUpDown8";
this->numericUpDown8->Size = System::Drawing::Size(50, 20);
this->numericUpDown8->TabIndex = 8;
this->numericUpDown8->Value = System::Decimal(gcnew cli::array< System::Int32 >(4) {4, 0, 0, 0});
this->numericUpDown8->ValueChanged += gcnew System::EventHandler(this, &Form1::numericUpDown8_ValueChanged);
//
// numericUpDown7
//
this->numericUpDown7->Location = System::Drawing::Point(66, 50);
this->numericUpDown7->Maximum = System::Decimal(gcnew cli::array< System::Int32 >(4) {999, 0, 0, 0});
this->numericUpDown7->Minimum = System::Decimal(gcnew cli::array< System::Int32 >(4) {4, 0, 0, 0});
this->numericUpDown7->Name = L"numericUpDown7";
this->numericUpDown7->Size = System::Drawing::Size(50, 20);
this->numericUpDown7->TabIndex = 7;
this->numericUpDown7->Value = System::Decimal(gcnew cli::array< System::Int32 >(4) {4, 0, 0, 0});
this->numericUpDown7->ValueChanged += gcnew System::EventHandler(this, &Form1::numericUpDown7_ValueChanged);
//
// numericUpDown6
//
this->numericUpDown6->Location = System::Drawing::Point(66, 25);
this->numericUpDown6->Maximum = System::Decimal(gcnew cli::array< System::Int32 >(4) {999, 0, 0, 0});
this->numericUpDown6->Minimum = System::Decimal(gcnew cli::array< System::Int32 >(4) {4, 0, 0, 0});
this->numericUpDown6->Name = L"numericUpDown6";
this->numericUpDown6->Size = System::Drawing::Size(50, 20);
this->numericUpDown6->TabIndex = 6;
this->numericUpDown6->Value = System::Decimal(gcnew cli::array< System::Int32 >(4) {4, 0, 0, 0});
this->numericUpDown6->ValueChanged += gcnew System::EventHandler(this, &Form1::numericUpDown6_ValueChanged);
//
// label7
//
this->label7->AutoSize = true;
this->label7->Location = System::Drawing::Point(133, 50);
this->label7->Name = L"label7";
this->label7->Size = System::Drawing::Size(73, 13);
this->label7->TabIndex = 5;
this->label7->Text = L"Boss Damage";
this->label7->Click += gcnew System::EventHandler(this, &Form1::label7_Click);
//
// label3
//
this->label3->AutoSize = true;
this->label3->Location = System::Drawing::Point(5, 50);
this->label3->Name = L"label3";
this->label3->Size = System::Drawing::Size(56, 13);
this->label3->TabIndex = 1;
this->label3->Text = L"Base DEX";
//
// label2
//
this->label2->AutoSize = true;
this->label2->Location = System::Drawing::Point(5, 25);
this->label2->Name = L"label2";
this->label2->Size = System::Drawing::Size(55, 13);
this->label2->TabIndex = 0;
this->label2->Text = L"Base LUK";
//
// tabControl1
//
this->tabControl1->Controls->Add(this->tabPage1);
this->tabControl1->Controls->Add(this->tabPage2);
this->tabControl1->Controls->Add(this->tabPage3);
this->tabControl1->Controls->Add(this->tabPage4);
this->tabControl1->Controls->Add(this->tabPage6);
this->tabControl1->Location = System::Drawing::Point(12, 12);
this->tabControl1->Name = L"tabControl1";
this->tabControl1->SelectedIndex = 0;
this->tabControl1->Size = System::Drawing::Size(338, 234);
this->tabControl1->TabIndex = 18;
//
// tabPage1
//
this->tabPage1->Controls->Add(this->linkLabel1);
this->tabPage1->Controls->Add(this->button1);
this->tabPage1->Controls->Add(this->textBox7);
this->tabPage1->Controls->Add(this->label15);
this->tabPage1->Controls->Add(this->textBox8);
this->tabPage1->Controls->Add(this->label14);
this->tabPage1->Controls->Add(this->textBox6);
this->tabPage1->Controls->Add(this->label13);
this->tabPage1->Controls->Add(this->textBox5);
this->tabPage1->Controls->Add(this->label12);
this->tabPage1->Controls->Add(this->textBox4);
this->tabPage1->Controls->Add(this->label11);
this->tabPage1->Controls->Add(this->textBox3);
this->tabPage1->Controls->Add(this->label10);
this->tabPage1->Controls->Add(this->textBox2);
this->tabPage1->Controls->Add(this->label9);
this->tabPage1->Controls->Add(this->textBox1);
this->tabPage1->Controls->Add(this->label1);
this->tabPage1->Location = System::Drawing::Point(4, 22);
this->tabPage1->Name = L"tabPage1";
this->tabPage1->Padding = System::Windows::Forms::Padding(3);
this->tabPage1->Size = System::Drawing::Size(330, 208);
this->tabPage1->TabIndex = 0;
this->tabPage1->Text = L"Calculator";
this->tabPage1->UseVisualStyleBackColor = true;
//
// button1
//
this->button1->Location = System::Drawing::Point(194, 26);
this->button1->Name = L"button1";
this->button1->Size = System::Drawing::Size(79, 25);
this->button1->TabIndex = 16;
this->button1->Text = L"Calculate";
this->button1->UseVisualStyleBackColor = true;
this->button1->Click += gcnew System::EventHandler(this, &Form1::button1_Click);
//
// textBox7
//
this->textBox7->BackColor = System::Drawing::SystemColors::ControlLightLight;
this->textBox7->Location = System::Drawing::Point(105, 146);
this->textBox7->Name = L"textBox7";
this->textBox7->ReadOnly = true;
this->textBox7->Size = System::Drawing::Size(70, 20);
this->textBox7->TabIndex = 15;
this->textBox7->WordWrap = false;
this->textBox7->TextChanged += gcnew System::EventHandler(this, &Form1::textBox7_TextChanged);
//
// label15
//
this->label15->AutoSize = true;
this->label15->Location = System::Drawing::Point(85, 149);
this->label15->Name = L"label15";
this->label15->Size = System::Drawing::Size(14, 13);
this->label15->TabIndex = 14;
this->label15->Text = L"~";
//
// textBox8
//
this->textBox8->BackColor = System::Drawing::SystemColors::ControlLightLight;
this->textBox8->Location = System::Drawing::Point(9, 146);
this->textBox8->Name = L"textBox8";
this->textBox8->ReadOnly = true;
this->textBox8->Size = System::Drawing::Size(70, 20);
this->textBox8->TabIndex = 13;
this->textBox8->WordWrap = false;
this->textBox8->TextChanged += gcnew System::EventHandler(this, &Form1::textBox8_TextChanged);
//
// textBox6
//
this->textBox6->BackColor = System::Drawing::SystemColors::ControlLightLight;
this->textBox6->Location = System::Drawing::Point(105, 107);
this->textBox6->Name = L"textBox6";
this->textBox6->ReadOnly = true;
this->textBox6->Size = System::Drawing::Size(70, 20);
this->textBox6->TabIndex = 11;
this->textBox6->WordWrap = false;
this->textBox6->TextChanged += gcnew System::EventHandler(this, &Form1::textBox6_TextChanged);
//
// label13
//
this->label13->AutoSize = true;
this->label13->Location = System::Drawing::Point(85, 110);
this->label13->Name = L"label13";
this->label13->Size = System::Drawing::Size(14, 13);
this->label13->TabIndex = 10;
this->label13->Text = L"~";
this->label13->Click += gcnew System::EventHandler(this, &Form1::label13_Click);
//
// textBox5
//
this->textBox5->BackColor = System::Drawing::SystemColors::ControlLightLight;
this->textBox5->Location = System::Drawing::Point(9, 107);
this->textBox5->Name = L"textBox5";
this->textBox5->ReadOnly = true;
this->textBox5->Size = System::Drawing::Size(70, 20);
this->textBox5->TabIndex = 9;
this->textBox5->WordWrap = false;
this->textBox5->TextChanged += gcnew System::EventHandler(this, &Form1::textBox5_TextChanged);
//
// textBox4
//
this->textBox4->BackColor = System::Drawing::SystemColors::ControlLightLight;
this->textBox4->Location = System::Drawing::Point(105, 68);
this->textBox4->Name = L"textBox4";
this->textBox4->ReadOnly = true;
this->textBox4->Size = System::Drawing::Size(70, 20);
this->textBox4->TabIndex = 7;
this->textBox4->TextChanged += gcnew System::EventHandler(this, &Form1::textBox4_TextChanged);
//
// label11
//
this->label11->AutoSize = true;
this->label11->Location = System::Drawing::Point(85, 71);
this->label11->Name = L"label11";
this->label11->Size = System::Drawing::Size(14, 13);
this->label11->TabIndex = 6;
this->label11->Text = L"~";
//
// textBox3
//
this->textBox3->BackColor = System::Drawing::SystemColors::ControlLightLight;
this->textBox3->Location = System::Drawing::Point(9, 68);
this->textBox3->Name = L"textBox3";
this->textBox3->ReadOnly = true;
this->textBox3->Size = System::Drawing::Size(70, 20);
this->textBox3->TabIndex = 5;
this->textBox3->WordWrap = false;
this->textBox3->TextChanged += gcnew System::EventHandler(this, &Form1::textBox3_TextChanged);
//
// label10
//
this->label10->AutoSize = true;
this->label10->Location = System::Drawing::Point(6, 52);
this->label10->Name = L"label10";
this->label10->Size = System::Drawing::Size(73, 13);
this->label10->TabIndex = 4;
this->label10->Text = L"Buffed Range";
//
// textBox2
//
this->textBox2->BackColor = System::Drawing::SystemColors::ControlLightLight;
this->textBox2->Location = System::Drawing::Point(105, 29);
this->textBox2->Name = L"textBox2";
this->textBox2->ReadOnly = true;
this->textBox2->Size = System::Drawing::Size(70, 20);
this->textBox2->TabIndex = 3;
this->textBox2->WordWrap = false;
this->textBox2->TextChanged += gcnew System::EventHandler(this, &Form1::textBox2_TextChanged);
//
// label9
//
this->label9->AutoSize = true;
this->label9->Location = System::Drawing::Point(85, 32);
this->label9->Name = L"label9";
this->label9->Size = System::Drawing::Size(14, 13);
this->label9->TabIndex = 2;
this->label9->Text = L"~";
//
// textBox1
//
this->textBox1->BackColor = System::Drawing::SystemColors::ControlLightLight;
this->textBox1->Location = System::Drawing::Point(9, 29);
this->textBox1->Name = L"textBox1";
this->textBox1->ReadOnly = true;
this->textBox1->Size = System::Drawing::Size(70, 20);
this->textBox1->TabIndex = 1;
this->textBox1->WordWrap = false;
this->textBox1->TextChanged += gcnew System::EventHandler(this, &Form1::textBox1_TextChanged);
//
// label1
//
this->label1->AutoSize = true;
this->label1->Location = System::Drawing::Point(6, 13);
this->label1->Name = L"label1";
this->label1->Size = System::Drawing::Size(86, 13);
this->label1->TabIndex = 0;
this->label1->Text = L"Unbuffed Range";
//
// tabPage2
//
this->tabPage2->Controls->Add(this->checkBox1);
this->tabPage2->Controls->Add(this->label18);
this->tabPage2->Controls->Add(this->monsterPDR);
this->tabPage2->Controls->Add(this->groupBox4);
this->tabPage2->Location = System::Drawing::Point(4, 22);
this->tabPage2->Name = L"tabPage2";
this->tabPage2->Padding = System::Windows::Forms::Padding(3);
this->tabPage2->Size = System::Drawing::Size(330, 208);
this->tabPage2->TabIndex = 1;
this->tabPage2->Text = L"Stats";
this->tabPage2->UseVisualStyleBackColor = true;
//
// label18
//
this->label18->AutoSize = true;
this->label18->Location = System::Drawing::Point(139, 182);
this->label18->Name = L"label18";
this->label18->Size = System::Drawing::Size(71, 13);
this->label18->TabIndex = 19;
this->label18->Text = L"Monster PDR";
//
// monsterPDR
//
this->monsterPDR->Location = System::Drawing::Point(234, 182);
this->monsterPDR->Maximum = System::Decimal(gcnew cli::array< System::Int32 >(4) {70, 0, 0, 0});
this->monsterPDR->Name = L"monsterPDR";
this->monsterPDR->Size = System::Drawing::Size(50, 20);
this->monsterPDR->TabIndex = 18;
this->monsterPDR->ValueChanged += gcnew System::EventHandler(this, &Form1::monsterPDR_ValueChanged);
//
// tabPage3
//
this->tabPage3->Controls->Add(this->groupBox1);
this->tabPage3->Controls->Add(this->groupBox2);
this->tabPage3->Controls->Add(this->groupBox3);
this->tabPage3->Location = System::Drawing::Point(4, 22);
this->tabPage3->Name = L"tabPage3";
this->tabPage3->Size = System::Drawing::Size(330, 208);
this->tabPage3->TabIndex = 2;
this->tabPage3->Text = L"Stolen Skills";
this->tabPage3->UseVisualStyleBackColor = true;
//
// tabPage4
//
this->tabPage4->Controls->Add(this->pictureBox1);
this->tabPage4->Controls->Add(this->pictureBox2);
this->tabPage4->Controls->Add(this->numericUpDown5);
this->tabPage4->Controls->Add(this->numericUpDown1);
this->tabPage4->Controls->Add(this->pictureBox5);
this->tabPage4->Controls->Add(this->numericUpDown4);
this->tabPage4->Controls->Add(this->numericUpDown2);
this->tabPage4->Controls->Add(this->numericUpDown3);
this->tabPage4->Controls->Add(this->pictureBox3);
this->tabPage4->Controls->Add(this->pictureBox4);
this->tabPage4->Location = System::Drawing::Point(4, 22);
this->tabPage4->Name = L"tabPage4";
this->tabPage4->Size = System::Drawing::Size(330, 208);
this->tabPage4->TabIndex = 3;
this->tabPage4->Text = L"Skill Level";
this->tabPage4->UseVisualStyleBackColor = true;
//
// tabPage6
//
this->tabPage6->Controls->Add(this->decentSE);
this->tabPage6->Controls->Add(this->decentBless);
this->tabPage6->Controls->Add(this->rageEnable);
this->tabPage6->Controls->Add(this->advBless);
this->tabPage6->Controls->Add(this->seEnable);
this->tabPage6->Controls->Add(this->AdvAura);
this->tabPage6->Controls->Add(this->echo);
this->tabPage6->Controls->Add(this->pictureBox10);
this->tabPage6->Controls->Add(this->pictureBox9);
this->tabPage6->Controls->Add(this->pictureBox8);
this->tabPage6->Controls->Add(this->pictureBox7);
this->tabPage6->Controls->Add(this->pictureBox6);
this->tabPage6->Location = System::Drawing::Point(4, 22);
this->tabPage6->Name = L"tabPage6";
this->tabPage6->Padding = System::Windows::Forms::Padding(3);
this->tabPage6->Size = System::Drawing::Size(330, 208);
this->tabPage6->TabIndex = 4;
this->tabPage6->Text = L"Party Skills";
this->tabPage6->UseVisualStyleBackColor = true;
//
// decentSE
//
this->decentSE->AutoSize = true;
this->decentSE->Enabled = false;
this->decentSE->Location = System::Drawing::Point(125, 138);
this->decentSE->Name = L"decentSE";
this->decentSE->Size = System::Drawing::Size(61, 17);
this->decentSE->TabIndex = 11;
this->decentSE->Text = L"Decent";
this->decentSE->UseVisualStyleBackColor = true;
this->decentSE->CheckedChanged += gcnew System::EventHandler(this, &Form1::decentSE_CheckedChanged);
//
// decentBless
//
this->decentBless->AutoSize = true;
this->decentBless->Enabled = false;
this->decentBless->Location = System::Drawing::Point(247, 38);
this->decentBless->Name = L"decentBless";
this->decentBless->Size = System::Drawing::Size(61, 17);
this->decentBless->TabIndex = 10;
this->decentBless->Text = L"Decent";
this->decentBless->UseVisualStyleBackColor = true;
this->decentBless->CheckedChanged += gcnew System::EventHandler(this, &Form1::decentBless_CheckedChanged);
//
// rageEnable
//
this->rageEnable->AutoSize = true;
this->rageEnable->Location = System::Drawing::Point(174, 87);
this->rageEnable->Name = L"rageEnable";
this->rageEnable->Size = System::Drawing::Size(67, 17);
this->rageEnable->TabIndex = 9;
this->rageEnable->Text = L"Disabled";
this->rageEnable->UseVisualStyleBackColor = true;
this->rageEnable->CheckedChanged += gcnew System::EventHandler(this, &Form1::rageEnable_CheckedChanged);
//
// advBless
//
this->advBless->AutoSize = true;
this->advBless->Location = System::Drawing::Point(174, 38);
this->advBless->Name = L"advBless";
this->advBless->Size = System::Drawing::Size(67, 17);
this->advBless->TabIndex = 8;
this->advBless->Text = L"Disabled";
this->advBless->UseVisualStyleBackColor = true;
this->advBless->CheckedChanged += gcnew System::EventHandler(this, &Form1::advBless_CheckedChanged);
//
// seEnable
//
this->seEnable->AutoSize = true;
this->seEnable->Location = System::Drawing::Point(52, 138);
this->seEnable->Name = L"seEnable";
this->seEnable->Size = System::Drawing::Size(67, 17);
this->seEnable->TabIndex = 7;
this->seEnable->Text = L"Disabled";
this->seEnable->UseVisualStyleBackColor = true;
this->seEnable->CheckedChanged += gcnew System::EventHandler(this, &Form1::seEnable_CheckedChanged);
//
// AdvAura
//
this->AdvAura->AutoSize = true;
this->AdvAura->Location = System::Drawing::Point(52, 87);
this->AdvAura->Name = L"AdvAura";
this->AdvAura->Size = System::Drawing::Size(67, 17);
this->AdvAura->TabIndex = 6;
this->AdvAura->Text = L"Disabled";
this->AdvAura->UseVisualStyleBackColor = true;
this->AdvAura->CheckedChanged += gcnew System::EventHandler(this, &Form1::AdvAura_CheckedChanged);
//
// echo
//
this->echo->AutoSize = true;
this->echo->Location = System::Drawing::Point(52, 38);
this->echo->Name = L"echo";
this->echo->Size = System::Drawing::Size(67, 17);
this->echo->TabIndex = 5;
this->echo->Text = L"Disabled";
this->echo->UseVisualStyleBackColor = true;
this->echo->CheckedChanged += gcnew System::EventHandler(this, &Form1::echo_CheckedChanged);
//
// tabPage5
//
this->tabPage5->Controls->Add(this->label32);
this->tabPage5->Controls->Add(this->textBox20);
this->tabPage5->Controls->Add(this->textBox19);
this->tabPage5->Controls->Add(this->label31);
this->tabPage5->Controls->Add(this->textBox18);
this->tabPage5->Controls->Add(this->label30);
this->tabPage5->Controls->Add(this->textBox17);
this->tabPage5->Controls->Add(this->label29);
this->tabPage5->Controls->Add(this->textBox16);
this->tabPage5->Controls->Add(this->label28);
this->tabPage5->Controls->Add(this->textBox15);
this->tabPage5->Controls->Add(this->label27);
this->tabPage5->Controls->Add(this->textBox14);
this->tabPage5->Controls->Add(this->label26);
this->tabPage5->Controls->Add(this->textBox13);
this->tabPage5->Controls->Add(this->label25);
this->tabPage5->Controls->Add(this->textBox12);
this->tabPage5->Controls->Add(this->label24);
this->tabPage5->Controls->Add(this->textBox11);
this->tabPage5->Controls->Add(this->label23);
this->tabPage5->Controls->Add(this->textBox10);
this->tabPage5->Controls->Add(this->label22);
this->tabPage5->Controls->Add(this->label21);
this->tabPage5->Controls->Add(this->label20);
this->tabPage5->Controls->Add(this->textBox9);
this->tabPage5->Controls->Add(this->button2);
this->tabPage5->Location = System::Drawing::Point(4, 22);
this->tabPage5->Name = L"tabPage5";
this->tabPage5->Padding = System::Windows::Forms::Padding(3);
this->tabPage5->Size = System::Drawing::Size(330, 208);
this->tabPage5->TabIndex = 4;
this->tabPage5->Text = L"Debug";
this->tabPage5->UseVisualStyleBackColor = true;
//
// label32
//
this->label32->AutoSize = true;
this->label32->Location = System::Drawing::Point(189, 65);
this->label32->Name = L"label32";
this->label32->Size = System::Drawing::Size(59, 13);
this->label32->TabIndex = 25;
this->label32->Text = L"ignorePDR";
//
// textBox20
//
this->textBox20->BackColor = System::Drawing::SystemColors::ControlLightLight;
this->textBox20->Location = System::Drawing::Point(271, 65);
this->textBox20->Name = L"textBox20";
this->textBox20->ReadOnly = true;
this->textBox20->Size = System::Drawing::Size(31, 20);
this->textBox20->TabIndex = 24;
//
// textBox19
//
this->textBox19->BackColor = System::Drawing::SystemColors::ControlLightLight;
this->textBox19->Location = System::Drawing::Point(271, 42);
this->textBox19->Name = L"textBox19";
this->textBox19->ReadOnly = true;
this->textBox19->Size = System::Drawing::Size(31, 20);
this->textBox19->TabIndex = 23;
//
// label31
//
this->label31->AutoSize = true;
this->label31->Location = System::Drawing::Point(189, 43);
this->label31->Name = L"label31";
this->label31->Size = System::Drawing::Size(64, 13);
this->label31->TabIndex = 22;
this->label31->Text = L"cleanAttack";
//
// textBox18
//
this->textBox18->BackColor = System::Drawing::SystemColors::ControlLightLight;
this->textBox18->Location = System::Drawing::Point(142, 68);
this->textBox18->Name = L"textBox18";
this->textBox18->ReadOnly = true;
this->textBox18->Size = System::Drawing::Size(31, 20);
this->textBox18->TabIndex = 21;
//
// label30
//
this->label30->AutoSize = true;
this->label30->Location = System::Drawing::Point(108, 72);
this->label30->Name = L"label30";
this->label30->Size = System::Drawing::Size(32, 13);
this->label30->TabIndex = 20;
this->label30->Text = L"padX";
//
// textBox17
//
this->textBox17->BackColor = System::Drawing::SystemColors::ControlLightLight;
this->textBox17->Location = System::Drawing::Point(271, 17);
this->textBox17->Name = L"textBox17";
this->textBox17->ReadOnly = true;
this->textBox17->Size = System::Drawing::Size(31, 20);
this->textBox17->TabIndex = 19;
//
// label29
//
this->label29->AutoSize = true;
this->label29->Location = System::Drawing::Point(188, 20);
this->label29->Name = L"label29";
this->label29->Size = System::Drawing::Size(61, 13);
this->label29->TabIndex = 18;
this->label29->Text = L"skillPercent";
//
// textBox16
//
this->textBox16->BackColor = System::Drawing::SystemColors::ControlLightLight;
this->textBox16->Location = System::Drawing::Point(142, 43);
this->textBox16->Name = L"textBox16";
this->textBox16->ReadOnly = true;
this->textBox16->Size = System::Drawing::Size(31, 20);
this->textBox16->TabIndex = 17;
//
// label28
//
this->label28->AutoSize = true;
this->label28->Location = System::Drawing::Point(108, 46);
this->label28->Name = L"label28";
this->label28->Size = System::Drawing::Size(29, 13);
this->label28->TabIndex = 16;
this->label28->Text = L"DEX";
//
// textBox15
//
this->textBox15->BackColor = System::Drawing::SystemColors::ControlLightLight;
this->textBox15->Location = System::Drawing::Point(142, 17);
this->textBox15->Name = L"textBox15";
this->textBox15->ReadOnly = true;
this->textBox15->Size = System::Drawing::Size(31, 20);
this->textBox15->TabIndex = 15;
//
// label27
//
this->label27->AutoSize = true;
this->label27->Location = System::Drawing::Point(108, 20);
this->label27->Name = L"label27";
this->label27->Size = System::Drawing::Size(28, 13);
this->label27->TabIndex = 14;
this->label27->Text = L"LUK";
//
// textBox14
//
this->textBox14->BackColor = System::Drawing::SystemColors::ControlLightLight;
this->textBox14->Location = System::Drawing::Point(57, 149);
this->textBox14->Name = L"textBox14";
this->textBox14->ReadOnly = true;
this->textBox14->Size = System::Drawing::Size(31, 20);
this->textBox14->TabIndex = 13;
//
// label26
//
this->label26->AutoSize = true;
this->label26->Location = System::Drawing::Point(7, 149);
this->label26->Name = L"label26";
this->label26->Size = System::Drawing::Size(44, 13);
this->label26->TabIndex = 12;
this->label26->Text = L"CritDmg";
//
// textBox13
//
this->textBox13->BackColor = System::Drawing::SystemColors::ControlLightLight;
this->textBox13->Location = System::Drawing::Point(57, 123);
this->textBox13->Name = L"textBox13";
this->textBox13->ReadOnly = true;
this->textBox13->Size = System::Drawing::Size(31, 20);
this->textBox13->TabIndex = 11;
//
// label25
//
this->label25->AutoSize = true;
this->label25->Location = System::Drawing::Point(8, 123);
this->label25->Name = L"label25";
this->label25->Size = System::Drawing::Size(44, 13);
this->label25->TabIndex = 10;
this->label25->Text = L"Mastery";
//
// textBox12
//
this->textBox12->BackColor = System::Drawing::SystemColors::ControlLightLight;
this->textBox12->Location = System::Drawing::Point(57, 98);
this->textBox12->Name = L"textBox12";
this->textBox12->ReadOnly = true;
this->textBox12->Size = System::Drawing::Size(31, 20);
this->textBox12->TabIndex = 9;
//
// label24
//
this->label24->AutoSize = true;
this->label24->Location = System::Drawing::Point(7, 98);
this->label24->Name = L"label24";
this->label24->Size = System::Drawing::Size(44, 13);
this->label24->TabIndex = 8;
this->label24->Text = L"DmgInc";
//
// textBox11
//
this->textBox11->BackColor = System::Drawing::SystemColors::ControlLightLight;
this->textBox11->Location = System::Drawing::Point(58, 72);
this->textBox11->Name = L"textBox11";
this->textBox11->ReadOnly = true;
this->textBox11->Size = System::Drawing::Size(30, 20);
this->textBox11->TabIndex = 7;
//
// label23
//
this->label23->AutoSize = true;
this->label23->Location = System::Drawing::Point(7, 75);
this->label23->Name = L"label23";
this->label23->Size = System::Drawing::Size(45, 13);
this->label23->TabIndex = 6;
this->label23->Text = L"PDRate";
//
// textBox10
//
this->textBox10->BackColor = System::Drawing::SystemColors::ControlLightLight;
this->textBox10->Location = System::Drawing::Point(58, 46);
this->textBox10->Name = L"textBox10";
this->textBox10->ReadOnly = true;
this->textBox10->Size = System::Drawing::Size(30, 20);
this->textBox10->TabIndex = 5;
//
// label22
//
this->label22->AutoSize = true;
this->label22->Location = System::Drawing::Point(18, 49);
this->label22->Name = L"label22";
this->label22->Size = System::Drawing::Size(34, 13);
this->label22->TabIndex = 4;
this->label22->Text = L"Skill%";
//
// label21
//
this->label21->AutoSize = true;
this->label21->Location = System::Drawing::Point(20, 46);
this->label21->Name = L"label21";
this->label21->Size = System::Drawing::Size(0, 13);
this->label21->TabIndex = 3;
//
// label20
//
this->label20->AutoSize = true;
this->label20->Location = System::Drawing::Point(18, 20);
this->label20->Name = L"label20";
this->label20->Size = System::Drawing::Size(38, 13);
this->label20->TabIndex = 2;
this->label20->Text = L"Attack";
//
// textBox9
//
this->textBox9->BackColor = System::Drawing::SystemColors::ControlLightLight;
this->textBox9->Location = System::Drawing::Point(58, 17);
this->textBox9->Name = L"textBox9";
this->textBox9->ReadOnly = true;
this->textBox9->Size = System::Drawing::Size(30, 20);
this->textBox9->TabIndex = 1;
//
// button2
//
this->button2->Location = System::Drawing::Point(249, 170);
this->button2->Name = L"button2";
this->button2->Size = System::Drawing::Size(75, 23);
this->button2->TabIndex = 0;
this->button2->Text = L"Update";
this->button2->UseVisualStyleBackColor = true;
this->button2->Click += gcnew System::EventHandler(this, &Form1::button2_Click);
//
// label16
//
this->label16->AutoSize = true;
this->label16->Location = System::Drawing::Point(19, 249);
this->label16->Name = L"label16";
this->label16->Size = System::Drawing::Size(95, 13);
this->label16->TabIndex = 19;
this->label16->Text = L"Created by Rapptz";
//
// linkLabel1
//
this->linkLabel1->AutoSize = true;
this->linkLabel1->Location = System::Drawing::Point(45, 179);
this->linkLabel1->Name = L"linkLabel1";
this->linkLabel1->Size = System::Drawing::Size(243, 13);
this->linkLabel1->TabIndex = 17;
this->linkLabel1->TabStop = true;
this->linkLabel1->Text = L"Looking for a calculator for all classes\? Click here.";
this->linkLabel1->LinkClicked += gcnew System::Windows::Forms::LinkLabelLinkClickedEventHandler(this, &Form1::linkLabel1_LinkClicked);
//
// Form1
//
this->AutoScaleDimensions = System::Drawing::SizeF(6, 13);
this->AutoScaleMode = System::Windows::Forms::AutoScaleMode::Font;
this->ClientSize = System::Drawing::Size(377, 271);
this->Controls->Add(this->label17);
this->Controls->Add(this->label16);
this->Controls->Add(this->tabControl1);
this->FormBorderStyle = System::Windows::Forms::FormBorderStyle::FixedSingle;
this->Icon = (cli::safe_cast<System::Drawing::Icon^ >(resources->GetObject(L"$this.Icon")));
this->MaximizeBox = false;
this->Name = L"Form1";
this->Text = L"Phantom Calculator";
this->groupBox1->ResumeLayout(false);
this->groupBox1->PerformLayout();
this->groupBox2->ResumeLayout(false);
this->groupBox2->PerformLayout();
this->groupBox3->ResumeLayout(false);
this->groupBox3->PerformLayout();
(cli::safe_cast<System::ComponentModel::ISupportInitialize^ >(this->pictureBox1))->EndInit();
(cli::safe_cast<System::ComponentModel::ISupportInitialize^ >(this->pictureBox2))->EndInit();
(cli::safe_cast<System::ComponentModel::ISupportInitialize^ >(this->pictureBox3))->EndInit();
(cli::safe_cast<System::ComponentModel::ISupportInitialize^ >(this->pictureBox4))->EndInit();
(cli::safe_cast<System::ComponentModel::ISupportInitialize^ >(this->pictureBox5))->EndInit();
(cli::safe_cast<System::ComponentModel::ISupportInitialize^ >(this->pictureBox6))->EndInit();
(cli::safe_cast<System::ComponentModel::ISupportInitialize^ >(this->pictureBox7))->EndInit();
(cli::safe_cast<System::ComponentModel::ISupportInitialize^ >(this->pictureBox8))->EndInit();
(cli::safe_cast<System::ComponentModel::ISupportInitialize^ >(this->pictureBox9))->EndInit();
(cli::safe_cast<System::ComponentModel::ISupportInitialize^ >(this->pictureBox10))->EndInit();
(cli::safe_cast<System::ComponentModel::ISupportInitialize^ >(this->numericUpDown1))->EndInit();
(cli::safe_cast<System::ComponentModel::ISupportInitialize^ >(this->numericUpDown2))->EndInit();
(cli::safe_cast<System::ComponentModel::ISupportInitialize^ >(this->numericUpDown3))->EndInit();
(cli::safe_cast<System::ComponentModel::ISupportInitialize^ >(this->numericUpDown4))->EndInit();
(cli::safe_cast<System::ComponentModel::ISupportInitialize^ >(this->numericUpDown5))->EndInit();
this->groupBox4->ResumeLayout(false);
this->groupBox4->PerformLayout();
(cli::safe_cast<System::ComponentModel::ISupportInitialize^ >(this->numericUpDown15))->EndInit();
(cli::safe_cast<System::ComponentModel::ISupportInitialize^ >(this->numericUpDown14))->EndInit();
(cli::safe_cast<System::ComponentModel::ISupportInitialize^ >(this->numericUpDown13))->EndInit();
(cli::safe_cast<System::ComponentModel::ISupportInitialize^ >(this->numericUpDown12))->EndInit();
(cli::safe_cast<System::ComponentModel::ISupportInitialize^ >(this->numericUpDown11))->EndInit();
(cli::safe_cast<System::ComponentModel::ISupportInitialize^ >(this->numericUpDown10))->EndInit();
(cli::safe_cast<System::ComponentModel::ISupportInitialize^ >(this->numericUpDown9))->EndInit();
(cli::safe_cast<System::ComponentModel::ISupportInitialize^ >(this->numericUpDown8))->EndInit();
(cli::safe_cast<System::ComponentModel::ISupportInitialize^ >(this->numericUpDown7))->EndInit();
(cli::safe_cast<System::ComponentModel::ISupportInitialize^ >(this->numericUpDown6))->EndInit();
this->tabControl1->ResumeLayout(false);
this->tabPage1->ResumeLayout(false);
this->tabPage1->PerformLayout();
this->tabPage2->ResumeLayout(false);
this->tabPage2->PerformLayout();
(cli::safe_cast<System::ComponentModel::ISupportInitialize^ >(this->monsterPDR))->EndInit();
this->tabPage3->ResumeLayout(false);
this->tabPage4->ResumeLayout(false);
this->tabPage6->ResumeLayout(false);
this->tabPage6->PerformLayout();
this->tabPage5->ResumeLayout(false);
this->tabPage5->PerformLayout();
this->ResumeLayout(false);
this->PerformLayout();
}
#pragma endregion
private: System::Void radioButton9_CheckedChanged(System::Object^ sender, System::EventArgs^ e);
private: System::Void radioButton1_CheckedChanged(System::Object^ sender, System::EventArgs^ e);
private: System::Void radioButton3_CheckedChanged(System::Object^ sender, System::EventArgs^ e);
private: System::Void radioButton2_CheckedChanged(System::Object^ sender, System::EventArgs^ e);
private: System::Void radioButton4_CheckedChanged(System::Object^ sender, System::EventArgs^ e);
private: System::Void radioButton5_CheckedChanged(System::Object^ sender, System::EventArgs^ e);
private: System::Void radioButton6_CheckedChanged(System::Object^ sender, System::EventArgs^ e);
private: System::Void radioButton7_CheckedChanged(System::Object^ sender, System::EventArgs^ e);
private: System::Void radioButton8_CheckedChanged(System::Object^ sender, System::EventArgs^ e);
private: System::Void radioButton10_CheckedChanged(System::Object^ sender, System::EventArgs^ e);
private: System::Void radioButton11_CheckedChanged(System::Object^ sender, System::EventArgs^ e);
private: System::Void toolTip1_Popup(System::Object^ sender, System::Windows::Forms::PopupEventArgs^ e) {
}
private: System::Void numericUpDown2_ValueChanged(System::Object^ sender, System::EventArgs^ e);
private: System::Void numericUpDown1_ValueChanged(System::Object^ sender, System::EventArgs^ e);
private: System::Void numericUpDown3_ValueChanged(System::Object^ sender, System::EventArgs^ e);
private: System::Void numericUpDown4_ValueChanged(System::Object^ sender, System::EventArgs^ e);
private: System::Void numericUpDown5_ValueChanged(System::Object^ sender, System::EventArgs^ e);
private: System::Void numericUpDown6_ValueChanged(System::Object^ sender, System::EventArgs^ e);
private: System::Void numericUpDown7_ValueChanged(System::Object^ sender, System::EventArgs^ e);
private: System::Void numericUpDown8_ValueChanged(System::Object^ sender, System::EventArgs^ e);
private: System::Void numericUpDown9_ValueChanged(System::Object^ sender, System::EventArgs^ e);
private: System::Void numericUpDown10_ValueChanged(System::Object^ sender, System::EventArgs^ e);
private: System::Void label7_Click(System::Object^ sender, System::EventArgs^ e) {
}
private: System::Void numericUpDown11_ValueChanged(System::Object^ sender, System::EventArgs^ e);
private: System::Void numericUpDown12_ValueChanged(System::Object^ sender, System::EventArgs^ e);
private: System::Void textBox1_TextChanged(System::Object^ sender, System::EventArgs^ e);
private: System::Void textBox2_TextChanged(System::Object^ sender, System::EventArgs^ e);
private: System::Void textBox3_TextChanged(System::Object^ sender, System::EventArgs^ e);
private: System::Void textBox4_TextChanged(System::Object^ sender, System::EventArgs^ e);
private: System::Void textBox5_TextChanged(System::Object^ sender, System::EventArgs^ e);
private: System::Void textBox6_TextChanged(System::Object^ sender, System::EventArgs^ e);
private: System::Void label13_Click(System::Object^ sender, System::EventArgs^ e) {
}
private: System::Void textBox8_TextChanged(System::Object^ sender, System::EventArgs^ e);
private: System::Void textBox7_TextChanged(System::Object^ sender, System::EventArgs^ e);
private: System::Void monsterPDR_ValueChanged(System::Object^ sender, System::EventArgs^ e);
private: System::Void checkBox1_CheckedChanged(System::Object^ sender, System::EventArgs^ e);
private: System::Void numericUpDown14_ValueChanged(System::Object^ sender, System::EventArgs^ e);
private: System::Void numericUpDown13_ValueChanged(System::Object^ sender, System::EventArgs^ e);
private: System::Void button1_Click(System::Object^ sender, System::EventArgs^ e);
private: System::Void button2_Click(System::Object^ sender, System::EventArgs^ e);
private: System::Void numericUpDown15_ValueChanged(System::Object^ sender, System::EventArgs^ e);
private: System::Void rageEnable_CheckedChanged(System::Object^ sender, System::EventArgs^ e);
private: System::Void AdvAura_CheckedChanged(System::Object^ sender, System::EventArgs^ e);
private: System::Void seEnable_CheckedChanged(System::Object^ sender, System::EventArgs^ e);
private: System::Void advBless_CheckedChanged(System::Object^ sender, System::EventArgs^ e);
private: System::Void echo_CheckedChanged(System::Object^ sender, System::EventArgs^ e);
private: System::Void decentBless_CheckedChanged(System::Object^ sender, System::EventArgs^ e);
private: System::Void decentSE_CheckedChanged(System::Object^ sender, System::EventArgs^ e);
private: System::Void linkLabel1_LinkClicked(System::Object^ sender, System::Windows::Forms::LinkLabelLinkClickedEventArgs^ e) {
System::Diagnostics::Process::Start(L"http://www.southperry.net/showthread.php?t=56490");
}
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment