Skocz do zawartości
  • 👋 Witaj na MPCForum!

    Przeglądasz forum jako gość, co oznacza, że wiele świetnych funkcji jest jeszcze przed Tobą! 😎

    • Pełny dostęp do działów i ukrytych treści
    • Możliwość pisania i odpowiadania w tematach
    • System prywatnych wiadomości
    • Zbieranie reputacji i rozwijanie swojego profilu
    • Członkostwo w jednej z największych społeczności graczy

    👉 Dołączenie zajmie Ci mniej niż minutę – a zyskasz znacznie więcej!

    Zarejestruj się teraz

[DL]GUI Task


Gość Pan Szymek

Rekomendowane odpowiedzi

Gość Pan Szymek
Opublikowano

Task bardziej do uczenia się niż użycia, przynajmniej w aktualnej fazie, bowiem teraz nie ma nawet zapisu opcji.

 

Kod:

 

using System;
using PBDOBot.Helper;
using PBDOBot.Api;
using PBDOBot.Api.Task;
using System.Collections.Generic;
using System.Windows.Forms;

namespace Tasks
{
public class Task : BBaseTask
{
	Ustawienia ust;
	public override void onreset()
	{
		BoostDictionary = new Dictionary<string, Enums.ResourceType>();
	}
	public override void ChooseLogic()
	{
		ust = new Ustawienia();
		if (!Ustawienia.pokazanoUstawienia)
		{
			ust.ShowDialog();
			Ustawienia.pokazanoUstawienia = true;
			for (int i = 0; i < ust.checkedListBox1.Items.Count; i++)
			{
				if (ust.checkedListBox1.GetItemChecked(i))
					HuntNpcsList.Add(ust.checkedListBox1.Items[i].ToString());
			}
		}
		if (!ActionList.Contains("GUI Task"))
		{
			BMain.WriteLog("Task by Miszczu");
			Reset();
			AttackNpcs = ust.checkBox13.Checked;
			AttackBossNpcs = ust.checkBox14.Checked;
			AttackTaggedNpcs = false;
			Restock = ust.checkBox15.Checked;
			LaserAmmoType = (Enums.LaserAmmoType)ust.comboBox2.SelectedValue;
			LaserAmmoMinCount = 200;
			LaserAmmoBuyMaxCount = 10000;
			RocketAmmoType = (Enums.RocketAmmoType)ust.comboBox4.SelectedValue;
			RocketAmmoMinCount = 50;
			RocketAmmoBuyMaxCount = 500;
			FleeOnEnemyInRadius = ust.checkBox7.Checked;
			FleeOnClanWarEnemyInRadius = ust.checkBox8.Checked;
			FleeOnAttacked = ust.checkBox9.Checked;
			SwitchConfigWhileFleeing = ust.checkBox10.Checked;
			Repair = ust.checkBox12.Checked;
			MinDurability = ust.trackBar1.Value;
			MinFreeSlots = 50;
			UsePet = ust.checkBox4.Checked;
			PetMode = (Enums.PetMode)ust.comboBox1.SelectedValue;
			RepairPetWhenDead = ust.checkBox5.Checked;
			DeactivatePetWhileFleeing = ust.checkBox6.Checked;
			TaskMap = ust.comboBox3.Text;
			CollectBonusBoxes = ust.checkBox1.Checked;
			CollectCargoBoxes = ust.checkBox2.Checked;
			CollectPirateBoxes = ust.checkBox3.Checked;
			UseExtraGateEnergy = false;
			ActionList.Add("GUI Task");
		}
	}
}
public class Ustawienia : Form
   {
       #region gui
       public System.Windows.Forms.Label label1;
       public System.Windows.Forms.Label label2;
       public System.Windows.Forms.GroupBox groupBox1;
       public System.Windows.Forms.CheckBox checkBox3;
       public System.Windows.Forms.CheckBox checkBox2;
       public System.Windows.Forms.CheckBox checkBox1;
       public System.Windows.Forms.GroupBox groupBox2;
       public System.Windows.Forms.GroupBox groupBox3;
       public System.Windows.Forms.CheckBox checkBox4;
       public System.Windows.Forms.ComboBox comboBox1;
       public System.Windows.Forms.CheckBox checkBox6;
       public System.Windows.Forms.CheckBox checkBox5;
       public System.Windows.Forms.GroupBox groupBox4;
       public System.Windows.Forms.CheckBox checkBox10;
       public System.Windows.Forms.CheckBox checkBox9;
       public System.Windows.Forms.CheckBox checkBox8;
       public System.Windows.Forms.CheckBox checkBox7;
       public System.Windows.Forms.GroupBox groupBox5;
       public System.Windows.Forms.GroupBox groupBox6;
       public System.Windows.Forms.Label label3;
       public System.Windows.Forms.TrackBar trackBar1;
       public System.Windows.Forms.CheckBox checkBox12;
       public System.Windows.Forms.CheckBox checkBox11;
       public System.Windows.Forms.GroupBox groupBox7;
       public System.Windows.Forms.GroupBox groupBox8;
       public System.Windows.Forms.CheckBox checkBox13;
       public System.Windows.Forms.ComboBox comboBox2;
       public System.Windows.Forms.Label label4;
       public System.Windows.Forms.ComboBox comboBox3;
       public System.Windows.Forms.Label label5;
       public System.Windows.Forms.CheckBox checkBox15;
       public System.Windows.Forms.CheckBox checkBox14;
       public System.Windows.Forms.CheckedListBox checkedListBox1;
       public System.Windows.Forms.ComboBox comboBox4;
       public System.Windows.Forms.Label label6;
       public Ustawienia()
       {
           this.label1 = new System.Windows.Forms.Label();
           this.label2 = new System.Windows.Forms.Label();
           this.groupBox1 = new System.Windows.Forms.GroupBox();
           this.checkBox3 = new System.Windows.Forms.CheckBox();
           this.checkBox2 = new System.Windows.Forms.CheckBox();
           this.checkBox1 = new System.Windows.Forms.CheckBox();
           this.groupBox2 = new System.Windows.Forms.GroupBox();
           this.groupBox3 = new System.Windows.Forms.GroupBox();
           this.comboBox1 = new System.Windows.Forms.ComboBox();
           this.checkBox6 = new System.Windows.Forms.CheckBox();
           this.checkBox5 = new System.Windows.Forms.CheckBox();
           this.checkBox4 = new System.Windows.Forms.CheckBox();
           this.groupBox4 = new System.Windows.Forms.GroupBox();
           this.checkBox10 = new System.Windows.Forms.CheckBox();
           this.checkBox9 = new System.Windows.Forms.CheckBox();
           this.checkBox8 = new System.Windows.Forms.CheckBox();
           this.checkBox7 = new System.Windows.Forms.CheckBox();
           this.groupBox5 = new System.Windows.Forms.GroupBox();
           this.groupBox6 = new System.Windows.Forms.GroupBox();
           this.label3 = new System.Windows.Forms.Label();
           this.trackBar1 = new System.Windows.Forms.TrackBar();
           this.checkBox12 = new System.Windows.Forms.CheckBox();
           this.checkBox11 = new System.Windows.Forms.CheckBox();
           this.groupBox7 = new System.Windows.Forms.GroupBox();
           this.checkBox13 = new System.Windows.Forms.CheckBox();
           this.groupBox8 = new System.Windows.Forms.GroupBox();
           this.label4 = new System.Windows.Forms.Label();
           this.comboBox2 = new System.Windows.Forms.ComboBox();
           this.label5 = new System.Windows.Forms.Label();
           this.comboBox3 = new System.Windows.Forms.ComboBox();
           this.label6 = new System.Windows.Forms.Label();
           this.comboBox4 = new System.Windows.Forms.ComboBox();
           this.checkedListBox1 = new System.Windows.Forms.CheckedListBox();
           this.checkBox14 = new System.Windows.Forms.CheckBox();
           this.checkBox15 = new System.Windows.Forms.CheckBox();
           this.groupBox1.SuspendLayout();
           this.groupBox2.SuspendLayout();
           this.groupBox3.SuspendLayout();
           this.groupBox4.SuspendLayout();
           this.groupBox5.SuspendLayout();
           this.groupBox6.SuspendLayout();
           ((System.ComponentModel.ISupportInitialize)(this.trackBar1)).BeginInit();
           this.groupBox7.SuspendLayout();
           this.groupBox8.SuspendLayout();
           this.SuspendLayout();
           // 
           // label1
           // 
           this.label1.AutoSize = true;
           this.label1.Font = new System.Drawing.Font("Myriad Pro", 24F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
           this.label1.Location = new System.Drawing.Point(204, 9);
           this.label1.Name = "label1";
           this.label1.Size = new System.Drawing.Size(130, 38);
           this.label1.TabIndex = 0;
           this.label1.Text = "GUI Task";
           // 
           // label2
           // 
           this.label2.AutoSize = true;
           this.label2.Location = new System.Drawing.Point(288, 40);
           this.label2.Name = "label2";
           this.label2.Size = new System.Drawing.Size(82, 19);
           this.label2.TabIndex = 1;
           this.label2.Text = "by Miszczu";
           // 
           // groupBox1
           // 
           this.groupBox1.Controls.Add(this.checkBox3);
           this.groupBox1.Controls.Add(this.checkBox2);
           this.groupBox1.Controls.Add(this.checkBox1);
           this.groupBox1.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
           this.groupBox1.Location = new System.Drawing.Point(12, 84);
           this.groupBox1.Name = "groupBox1";
           this.groupBox1.Size = new System.Drawing.Size(213, 116);
           this.groupBox1.TabIndex = 2;
           this.groupBox1.TabStop = false;
           this.groupBox1.Text = "Zbieranie";
           // 
           // checkBox3
           // 
           this.checkBox3.AutoSize = true;
           this.checkBox3.Location = new System.Drawing.Point(20, 65);
           this.checkBox3.Name = "checkBox3";
           this.checkBox3.Size = new System.Drawing.Size(139, 23);
           this.checkBox3.TabIndex = 2;
           this.checkBox3.Text = "Pirackie skrzynki";
           this.checkBox3.UseVisualStyleBackColor = true;
           // 
           // checkBox2
           // 
           this.checkBox2.AutoSize = true;
           this.checkBox2.Location = new System.Drawing.Point(20, 45);
           this.checkBox2.Name = "checkBox2";
           this.checkBox2.Size = new System.Drawing.Size(128, 23);
           this.checkBox2.TabIndex = 1;
           this.checkBox2.Text = "Skrzynki Cargo";
           this.checkBox2.UseVisualStyleBackColor = true;
           // 
           // checkBox1
           // 
           this.checkBox1.AutoSize = true;
           this.checkBox1.Location = new System.Drawing.Point(20, 26);
           this.checkBox1.Name = "checkBox1";
           this.checkBox1.Size = new System.Drawing.Size(103, 23);
           this.checkBox1.TabIndex = 0;
           this.checkBox1.Text = "BonusBoxy";
           this.checkBox1.UseVisualStyleBackColor = true;
           // 
           // groupBox2
           // 
           this.groupBox2.Controls.Add(this.groupBox3);
           this.groupBox2.Controls.Add(this.checkBox4);
           this.groupBox2.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
           this.groupBox2.Location = new System.Drawing.Point(12, 199);
           this.groupBox2.Name = "groupBox2";
           this.groupBox2.Size = new System.Drawing.Size(306, 175);
           this.groupBox2.TabIndex = 3;
           this.groupBox2.TabStop = false;
           this.groupBox2.Text = "PET";
           // 
           // groupBox3
           // 
           this.groupBox3.Controls.Add(this.comboBox1);
           this.groupBox3.Controls.Add(this.checkBox6);
           this.groupBox3.Controls.Add(this.checkBox5);
           this.groupBox3.Enabled = false;
           this.groupBox3.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
           this.groupBox3.Location = new System.Drawing.Point(31, 35);
           this.groupBox3.Name = "groupBox3";
           this.groupBox3.Size = new System.Drawing.Size(269, 115);
           this.groupBox3.TabIndex = 1;
           this.groupBox3.TabStop = false;
           this.groupBox3.Text = "Opcje";
           // 
           // comboBox1
           // 
           this.comboBox1.BackColor = System.Drawing.SystemColors.GrayText;
           this.comboBox1.ForeColor = System.Drawing.SystemColors.Window;
           this.comboBox1.FormattingEnabled = true;
           this.comboBox1.Location = new System.Drawing.Point(20, 75);
           this.comboBox1.Name = "comboBox1";
           this.comboBox1.Size = new System.Drawing.Size(196, 27);
           this.comboBox1.TabIndex = 2;
           this.comboBox1.Text = "Enums.PetMode.None ";
           // 
           // checkBox6
           // 
           this.checkBox6.AutoSize = true;
           this.checkBox6.Location = new System.Drawing.Point(20, 46);
           this.checkBox6.Name = "checkBox6";
           this.checkBox6.Size = new System.Drawing.Size(196, 23);
           this.checkBox6.TabIndex = 1;
           this.checkBox6.Text = "Wyłącz w trakcie ucieczki";
           this.checkBox6.UseVisualStyleBackColor = true;
           // 
           // checkBox5
           // 
           this.checkBox5.AutoSize = true;
           this.checkBox5.Location = new System.Drawing.Point(20, 26);
           this.checkBox5.Name = "checkBox5";
           this.checkBox5.Size = new System.Drawing.Size(97, 23);
           this.checkBox5.TabIndex = 0;
           this.checkBox5.Text = "Naprawiaj";
           this.checkBox5.UseVisualStyleBackColor = true;
           // 
           // checkBox4
           // 
           this.checkBox4.AutoSize = true;
           this.checkBox4.Location = new System.Drawing.Point(17, 16);
           this.checkBox4.Name = "checkBox4";
           this.checkBox4.Size = new System.Drawing.Size(112, 23);
           this.checkBox4.TabIndex = 0;
           this.checkBox4.Text = "Używaj PETa";
           this.checkBox4.UseVisualStyleBackColor = true;
           this.checkBox4.CheckedChanged += new System.EventHandler(this.checkBox4_CheckedChanged);
           // 
           // groupBox4
           // 
           this.groupBox4.Controls.Add(this.checkBox10);
           this.groupBox4.Controls.Add(this.checkBox9);
           this.groupBox4.Controls.Add(this.checkBox8);
           this.groupBox4.Controls.Add(this.checkBox7);
           this.groupBox4.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
           this.groupBox4.Location = new System.Drawing.Point(233, 84);
           this.groupBox4.Name = "groupBox4";
           this.groupBox4.Size = new System.Drawing.Size(355, 116);
           this.groupBox4.TabIndex = 4;
           this.groupBox4.TabStop = false;
           this.groupBox4.Text = "Opcje ucieczki";
           // 
           // checkBox10
           // 
           this.checkBox10.AutoSize = true;
           this.checkBox10.Location = new System.Drawing.Point(20, 86);
           this.checkBox10.Name = "checkBox10";
           this.checkBox10.Size = new System.Drawing.Size(278, 23);
           this.checkBox10.TabIndex = 6;
           this.checkBox10.Text = "Zmień konfigurację w trakcie ucieczki";
           this.checkBox10.UseVisualStyleBackColor = true;
           // 
           // checkBox9
           // 
           this.checkBox9.AutoSize = true;
           this.checkBox9.Location = new System.Drawing.Point(20, 65);
           this.checkBox9.Name = "checkBox9";
           this.checkBox9.Size = new System.Drawing.Size(182, 23);
           this.checkBox9.TabIndex = 5;
           this.checkBox9.Text = "Uciekaj od atakujących";
           this.checkBox9.UseVisualStyleBackColor = true;
           // 
           // checkBox8
           // 
           this.checkBox8.AutoSize = true;
           this.checkBox8.Location = new System.Drawing.Point(20, 45);
           this.checkBox8.Name = "checkBox8";
           this.checkBox8.Size = new System.Drawing.Size(209, 23);
           this.checkBox8.TabIndex = 4;
           this.checkBox8.Text = "Uciekaj od wrogich klanów";
           this.checkBox8.UseVisualStyleBackColor = true;
           // 
           // checkBox7
           // 
           this.checkBox7.AutoSize = true;
           this.checkBox7.Location = new System.Drawing.Point(20, 26);
           this.checkBox7.Name = "checkBox7";
           this.checkBox7.Size = new System.Drawing.Size(157, 23);
           this.checkBox7.TabIndex = 3;
           this.checkBox7.Text = "Uciekaj od wrogów";
           this.checkBox7.UseVisualStyleBackColor = true;
           // 
           // groupBox5
           // 
           this.groupBox5.Controls.Add(this.comboBox3);
           this.groupBox5.Controls.Add(this.label5);
           this.groupBox5.Controls.Add(this.groupBox6);
           this.groupBox5.Controls.Add(this.checkBox12);
           this.groupBox5.Controls.Add(this.checkBox11);
           this.groupBox5.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
           this.groupBox5.Location = new System.Drawing.Point(324, 203);
           this.groupBox5.Name = "groupBox5";
           this.groupBox5.Size = new System.Drawing.Size(264, 171);
           this.groupBox5.TabIndex = 5;
           this.groupBox5.TabStop = false;
           this.groupBox5.Text = "Inne";
           // 
           // groupBox6
           // 
           this.groupBox6.Controls.Add(this.label3);
           this.groupBox6.Controls.Add(this.trackBar1);
           this.groupBox6.Enabled = false;
           this.groupBox6.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
           this.groupBox6.Location = new System.Drawing.Point(18, 75);
           this.groupBox6.Name = "groupBox6";
           this.groupBox6.Size = new System.Drawing.Size(235, 85);
           this.groupBox6.TabIndex = 2;
           this.groupBox6.TabStop = false;
           this.groupBox6.Text = "Opcje naprawy";
           // 
           // label3
           // 
           this.label3.AutoSize = true;
           this.label3.Location = new System.Drawing.Point(97, 52);
           this.label3.Name = "label3";
           this.label3.Size = new System.Drawing.Size(38, 19);
           this.label3.TabIndex = 1;
           this.label3.Text = "50%";
           // 
           // trackBar1
           // 
           this.trackBar1.Location = new System.Drawing.Point(6, 20);
           this.trackBar1.Maximum = 100;
           this.trackBar1.Minimum = 1;
           this.trackBar1.Name = "trackBar1";
           this.trackBar1.Size = new System.Drawing.Size(223, 45);
           this.trackBar1.TabIndex = 0;
           this.trackBar1.TickFrequency = 10;
           this.trackBar1.TickStyle = System.Windows.Forms.TickStyle.None;
           this.trackBar1.Value = 50;
           // 
           // checkBox12
           // 
           this.checkBox12.AutoSize = true;
           this.checkBox12.Location = new System.Drawing.Point(18, 46);
           this.checkBox12.Name = "checkBox12";
           this.checkBox12.Size = new System.Drawing.Size(140, 23);
           this.checkBox12.TabIndex = 1;
           this.checkBox12.Text = "Naprawiaj statek";
           this.checkBox12.UseVisualStyleBackColor = true;
           this.checkBox12.CheckedChanged += new System.EventHandler(this.checkBox12_CheckedChanged);
           // 
           // checkBox11
           // 
           this.checkBox11.AutoSize = true;
           this.checkBox11.Location = new System.Drawing.Point(18, 26);
           this.checkBox11.Name = "checkBox11";
           this.checkBox11.Size = new System.Drawing.Size(138, 23);
           this.checkBox11.TabIndex = 0;
           this.checkBox11.Text = "Używaj niewidki";
           this.checkBox11.UseVisualStyleBackColor = true;
           // 
           // groupBox7
           // 
           this.groupBox7.Controls.Add(this.groupBox8);
           this.groupBox7.Controls.Add(this.checkBox13);
           this.groupBox7.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
           this.groupBox7.Location = new System.Drawing.Point(12, 380);
           this.groupBox7.Name = "groupBox7";
           this.groupBox7.Size = new System.Drawing.Size(576, 195);
           this.groupBox7.TabIndex = 6;
           this.groupBox7.TabStop = false;
           this.groupBox7.Text = "NPC";
           // 
           // checkBox13
           // 
           this.checkBox13.AutoSize = true;
           this.checkBox13.Location = new System.Drawing.Point(23, 16);
           this.checkBox13.Name = "checkBox13";
           this.checkBox13.Size = new System.Drawing.Size(106, 23);
           this.checkBox13.TabIndex = 0;
           this.checkBox13.Text = "Zabijaj NPC";
           this.checkBox13.UseVisualStyleBackColor = true;
           this.checkBox13.CheckedChanged += new System.EventHandler(this.checkBox13_CheckedChanged);
           // 
           // groupBox8
           // 
           this.groupBox8.Controls.Add(this.checkBox15);
           this.groupBox8.Controls.Add(this.checkBox14);
           this.groupBox8.Controls.Add(this.checkedListBox1);
           this.groupBox8.Controls.Add(this.comboBox4);
           this.groupBox8.Controls.Add(this.label6);
           this.groupBox8.Controls.Add(this.comboBox2);
           this.groupBox8.Controls.Add(this.label4);
           this.groupBox8.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
           this.groupBox8.Location = new System.Drawing.Point(31, 43);
           this.groupBox8.Name = "groupBox8";
           this.groupBox8.Size = new System.Drawing.Size(534, 137);
           this.groupBox8.TabIndex = 1;
           this.groupBox8.TabStop = false;
           this.groupBox8.Text = "Ustawienia";
           // 
           // label4
           // 
           this.label4.AutoSize = true;
           this.label4.Location = new System.Drawing.Point(16, 23);
           this.label4.Name = "label4";
           this.label4.Size = new System.Drawing.Size(76, 19);
           this.label4.TabIndex = 0;
           this.label4.Text = "Amunicja:";
           // 
           // comboBox2
           // 
           this.comboBox2.BackColor = System.Drawing.SystemColors.GrayText;
           this.comboBox2.ForeColor = System.Drawing.SystemColors.Window;
           this.comboBox2.FormattingEnabled = true;
           this.comboBox2.Location = new System.Drawing.Point(98, 20);
           this.comboBox2.Name = "comboBox2";
           this.comboBox2.Size = new System.Drawing.Size(251, 27);
           this.comboBox2.TabIndex = 3;
           this.comboBox2.Text = "none";
           // 
           // label5
           // 
           this.label5.AutoSize = true;
           this.label5.Location = new System.Drawing.Point(187, 13);
           this.label5.Name = "label5";
           this.label5.Size = new System.Drawing.Size(50, 19);
           this.label5.TabIndex = 3;
           this.label5.Text = "Mapa:";
           // 
           // comboBox3
           // 
           this.comboBox3.BackColor = System.Drawing.SystemColors.ControlDarkDark;
           this.comboBox3.ForeColor = System.Drawing.SystemColors.Window;
           this.comboBox3.FormattingEnabled = true;
           this.comboBox3.Items.AddRange(new object[] {
           "x-1",
           "x-2",
           "x-3",
           "x-4",
           "4-1",
           "4-2",
           "4-3",
           "4-4",
           "x-5",
           "x-6",
           "x-7",
           "x-8"});
           this.comboBox3.Location = new System.Drawing.Point(191, 35);
           this.comboBox3.Name = "comboBox3";
           this.comboBox3.Size = new System.Drawing.Size(67, 27);
           this.comboBox3.TabIndex = 4;
           this.comboBox3.Text = "x-1";
           // 
           // label6
           // 
           this.label6.AutoSize = true;
           this.label6.Location = new System.Drawing.Point(16, 56);
           this.label6.Name = "label6";
           this.label6.Size = new System.Drawing.Size(62, 19);
           this.label6.TabIndex = 4;
           this.label6.Text = "Rakiety:";
           // 
           // comboBox4
           // 
           this.comboBox4.BackColor = System.Drawing.SystemColors.GrayText;
           this.comboBox4.ForeColor = System.Drawing.SystemColors.Window;
           this.comboBox4.FormattingEnabled = true;
           this.comboBox4.Location = new System.Drawing.Point(98, 53);
           this.comboBox4.Name = "comboBox4";
           this.comboBox4.Size = new System.Drawing.Size(251, 27);
           this.comboBox4.TabIndex = 5;
           this.comboBox4.Text = "Enums.RocketAmmoType.none";
           // 
           // checkedListBox1
           // 
           this.checkedListBox1.BackColor = System.Drawing.SystemColors.ControlDarkDark;
           this.checkedListBox1.ForeColor = System.Drawing.SystemColors.Menu;
           this.checkedListBox1.FormattingEnabled = true;
           this.checkedListBox1.Items.AddRange(new object[] {
           "-=[ Streuner ]=-",
           "-=[ Lordakia ]=-",
           "-=[ Saimon ]=-",
           "-=[ Mordon ]=-",
           "-=[ Devolarium ]=-",
           "-=[ Sibelon ]=-",
           "-=[ Sibelonit ]=-",
           "-=[ Lordakium ]=-",
           "-=[ Kristallin ]=-",
           "-=[ Kristallon ]=-",
           "-=[ StreuneR ]=-",
           "-=[ Cubikon ]=-",
           "-=[ Protegit ]=-"});
           this.checkedListBox1.Location = new System.Drawing.Point(355, 20);
           this.checkedListBox1.Name = "checkedListBox1";
           this.checkedListBox1.Size = new System.Drawing.Size(173, 114);
           this.checkedListBox1.TabIndex = 6;
           // 
           // checkBox14
           // 
           this.checkBox14.AutoSize = true;
           this.checkBox14.Location = new System.Drawing.Point(20, 86);
           this.checkBox14.Name = "checkBox14";
           this.checkBox14.Size = new System.Drawing.Size(113, 23);
           this.checkBox14.TabIndex = 7;
           this.checkBox14.Text = "Atakuj bossy";
           this.checkBox14.UseVisualStyleBackColor = true;
           // 
           // checkBox15
           // 
           this.checkBox15.AutoSize = true;
           this.checkBox15.Location = new System.Drawing.Point(20, 108);
           this.checkBox15.Name = "checkBox15";
           this.checkBox15.Size = new System.Drawing.Size(133, 23);
           this.checkBox15.TabIndex = 8;
           this.checkBox15.Text = "Kupuj amunicję";
           this.checkBox15.UseVisualStyleBackColor = true;
           // 
           // Form
           // 
           this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 19F);
           this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
           this.BackColor = System.Drawing.SystemColors.ControlDarkDark;
           this.ClientSize = new System.Drawing.Size(608, 587);
           this.Controls.Add(this.groupBox7);
           this.Controls.Add(this.groupBox5);
           this.Controls.Add(this.groupBox4);
           this.Controls.Add(this.groupBox2);
           this.Controls.Add(this.groupBox1);
           this.Controls.Add(this.label2);
           this.Controls.Add(this.label1);
           this.Font = new System.Drawing.Font("Myriad Pro", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
           this.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
           this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
           this.Margin = new System.Windows.Forms.Padding(4);
           this.Name = "Form1";
           this.Text = "GUI Task";
		this.Load += new EventHandler((object s, EventArgs a) =>
		{				
			this.comboBox2.DataSource = Enum.GetValues(typeof(Enums.LaserAmmoType));
			this.comboBox4.DataSource = Enum.GetValues(typeof(Enums.RocketAmmoType));
			this.comboBox1.DataSource = Enum.GetValues(typeof(Enums.PetMode));
			comboBox1.SelectedIndex = 0;
			comboBox2.SelectedIndex = 0;
			comboBox3.SelectedIndex = 0;
			comboBox4.SelectedIndex = 0;
		});
           this.groupBox1.ResumeLayout(false);
           this.groupBox1.PerformLayout();
           this.groupBox2.ResumeLayout(false);
           this.groupBox2.PerformLayout();
           this.groupBox3.ResumeLayout(false);
           this.groupBox3.PerformLayout();
           this.groupBox4.ResumeLayout(false);
           this.groupBox4.PerformLayout();
           this.groupBox5.ResumeLayout(false);
           this.groupBox5.PerformLayout();
           this.groupBox6.ResumeLayout(false);
           this.groupBox6.PerformLayout();
           ((System.ComponentModel.ISupportInitialize)(this.trackBar1)).EndInit();
           this.groupBox7.ResumeLayout(false);
           this.groupBox7.PerformLayout();
           this.groupBox8.ResumeLayout(false);
           this.groupBox8.PerformLayout();
           this.ResumeLayout(false);
           this.PerformLayout();
       }
#endregion
       public static bool pokazanoUstawienia = false;
       private void checkBox4_CheckedChanged(object sender, EventArgs e)
       {
           groupBox3.Enabled = checkBox4.Checked;
       }

       private void checkBox12_CheckedChanged(object sender, EventArgs e)
       {
           groupBox6.Enabled = checkBox12.Checked;
       }

       private void checkBox13_CheckedChanged(object sender, EventArgs e)
       {
           groupBox8.Enabled = checkBox13.Checked;
       }
   }
}

 

 

SS:

jnwb.png

Opublikowano

Nowy darmowy bot ?? Czy już jest na niego licka? .

To nie jest bot tylko task, kiedy go włożysz do PBDOBota/QBota i odpalisz to po zalogowaniu sie na konto poprzez PBDOBota/QBota włączy Ci się on i będziesz mógł wybrać podobnie jak w K/IBocie co bot ma robić :)

//zakaz handlu

//BR3ND

Opublikowano

Nowy darmowy bot ?? Czy już jest na niego licka? .

 

To jest GUI Task a nie bot -.-

Zamiast taski pisać to wsadza się to i zaznacza tak jak w kbocie co ma robić..

Opublikowano

To jest GUI Task a nie bot -.-

Zamiast taski pisać to wsadza się to i zaznacza tak jak w kbocie co ma robić..

 

Wygodnie i praktyczne ale było już takie coś o nazwie ultra task czy coś takiego .

Macie jakiś problem z czymś piszcie na PW@@ ;) sygnaturka03800x200.png

Opublikowano

Wygodnie i praktyczne ale było już takie coś o nazwie ultra task czy coś takiego .

Owszem, ale to Miszczu zrobił sam :)

//zakaz handlu

//BR3ND

Zarchiwizowany

Ten temat przebywa obecnie w archiwum. Dodawanie nowych odpowiedzi zostało zablokowane.

×
×
  • Dodaj nową pozycję...