-
Notifications
You must be signed in to change notification settings - Fork 23
/
Form1.Designer.cs
770 lines (763 loc) · 40.9 KB
/
Form1.Designer.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
partial class Form1
{
/// <summary>
/// Variable nécessaire au concepteur.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Nettoyage des ressources utilisées.
/// </summary>
/// <param name="disposing">true si les ressources managées doivent être supprimées ; sinon, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Code généré par le Concepteur Windows Form
/// <summary>
/// Méthode requise pour la prise en charge du concepteur - ne modifiez pas
/// le contenu de cette méthode avec l'éditeur de code.
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
this.button1 = new System.Windows.Forms.Button();
this.dataGridView1 = new System.Windows.Forms.DataGridView();
this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.colorDialog1 = new System.Windows.Forms.ColorDialog();
this.richTextBox1 = new System.Windows.Forms.RichTextBox();
this.richTextBox2 = new System.Windows.Forms.RichTextBox();
this.tabControl1 = new System.Windows.Forms.TabControl();
this.tabPage1 = new System.Windows.Forms.TabPage();
this.tabPage2 = new System.Windows.Forms.TabPage();
this.tabPage8 = new System.Windows.Forms.TabPage();
this.richTextBoxErrorLogs = new System.Windows.Forms.RichTextBox();
this.tabPage9 = new System.Windows.Forms.TabPage();
this.richTextBoxGamesLogs = new System.Windows.Forms.RichTextBox();
this.tabPage10 = new System.Windows.Forms.TabPage();
this.richTextBoSoldLogs = new System.Windows.Forms.RichTextBox();
this.button2 = new System.Windows.Forms.Button();
this.tabControl2 = new System.Windows.Forms.TabControl();
this.tabPage3 = new System.Windows.Forms.TabPage();
this.comboBoxItemsCategory = new System.Windows.Forms.ComboBox();
this.label1 = new System.Windows.Forms.Label();
this.richTextBoxDebugItems = new System.Windows.Forms.RichTextBox();
this.tabPage4 = new System.Windows.Forms.TabPage();
this.checkBoxShowOnlyValidMobs = new System.Windows.Forms.CheckBox();
this.richTextBoxDebugMobs = new System.Windows.Forms.RichTextBox();
this.tabPage5 = new System.Windows.Forms.TabPage();
this.checkBoxShowValidObjectOnly = new System.Windows.Forms.CheckBox();
this.richTextBoxDebugObjects = new System.Windows.Forms.RichTextBox();
this.tabPage6 = new System.Windows.Forms.TabPage();
this.richTextBoxDebugMapData = new System.Windows.Forms.RichTextBox();
this.tabPage7 = new System.Windows.Forms.TabPage();
this.comboBoxCollisionArea = new System.Windows.Forms.ComboBox();
this.label2 = new System.Windows.Forms.Label();
this.richTextBoxDebugMapCollision = new System.Windows.Forms.RichTextBox();
this.statusStrip1 = new System.Windows.Forms.StatusStrip();
this.labelGameName = new System.Windows.Forms.ToolStripStatusLabel();
this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
this.labelGames = new System.Windows.Forms.ToolStripStatusLabel();
this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
this.labelGameTime = new System.Windows.Forms.ToolStripStatusLabel();
this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
this.LabelChickenCount = new System.Windows.Forms.ToolStripStatusLabel();
this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
this.LabelDeadCount = new System.Windows.Forms.ToolStripStatusLabel();
this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
this.buttonPauseResume = new System.Windows.Forms.Button();
this.buttonUpdate = new System.Windows.Forms.Button();
this.buttonD2LOD = new System.Windows.Forms.Button();
this.button5 = new System.Windows.Forms.Button();
this.button4 = new System.Windows.Forms.Button();
this.button3 = new System.Windows.Forms.Button();
this.folderBrowserDialog1 = new System.Windows.Forms.FolderBrowserDialog();
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
this.tabControl1.SuspendLayout();
this.tabPage1.SuspendLayout();
this.tabPage2.SuspendLayout();
this.tabPage8.SuspendLayout();
this.tabPage9.SuspendLayout();
this.tabPage10.SuspendLayout();
this.tabControl2.SuspendLayout();
this.tabPage3.SuspendLayout();
this.tabPage4.SuspendLayout();
this.tabPage5.SuspendLayout();
this.tabPage6.SuspendLayout();
this.tabPage7.SuspendLayout();
this.statusStrip1.SuspendLayout();
this.SuspendLayout();
//
// button1
//
this.button1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.button1.ForeColor = System.Drawing.Color.Blue;
this.button1.Image = global::app.Properties.Resources.control;
this.button1.Location = new System.Drawing.Point(5, 3);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(37, 25);
this.button1.TabIndex = 0;
this.toolTip1.SetToolTip(this.button1, "Start or Stop the Bot");
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// dataGridView1
//
this.dataGridView1.AllowUserToAddRows = false;
this.dataGridView1.AllowUserToDeleteRows = false;
this.dataGridView1.AllowUserToResizeRows = false;
this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.Column1,
this.Column2});
this.dataGridView1.Location = new System.Drawing.Point(342, 5);
this.dataGridView1.Name = "dataGridView1";
this.dataGridView1.ReadOnly = true;
this.dataGridView1.RowHeadersVisible = false;
this.dataGridView1.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.CellSelect;
this.dataGridView1.Size = new System.Drawing.Size(207, 376);
this.dataGridView1.TabIndex = 2;
//this.dataGridView1.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView1_CellContentClick);
//
// Column1
//
this.Column1.HeaderText = "Descriptions";
this.Column1.Name = "Column1";
this.Column1.ReadOnly = true;
this.Column1.Width = 95;
//
// Column2
//
this.Column2.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
this.Column2.HeaderText = "Values";
this.Column2.Name = "Column2";
this.Column2.ReadOnly = true;
//
// richTextBox1
//
this.richTextBox1.DetectUrls = false;
this.richTextBox1.Dock = System.Windows.Forms.DockStyle.Fill;
this.richTextBox1.Location = new System.Drawing.Point(3, 3);
this.richTextBox1.Name = "richTextBox1";
this.richTextBox1.ReadOnly = true;
this.richTextBox1.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.ForcedVertical;
this.richTextBox1.Size = new System.Drawing.Size(317, 318);
this.richTextBox1.TabIndex = 5;
this.richTextBox1.Text = "";
//
// richTextBox2
//
this.richTextBox2.DetectUrls = false;
this.richTextBox2.Dock = System.Windows.Forms.DockStyle.Fill;
this.richTextBox2.Location = new System.Drawing.Point(3, 3);
this.richTextBox2.Name = "richTextBox2";
this.richTextBox2.ReadOnly = true;
this.richTextBox2.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.ForcedVertical;
this.richTextBox2.Size = new System.Drawing.Size(317, 318);
this.richTextBox2.TabIndex = 7;
this.richTextBox2.Text = "";
//
// tabControl1
//
this.tabControl1.Controls.Add(this.tabPage1);
this.tabControl1.Controls.Add(this.tabPage2);
this.tabControl1.Controls.Add(this.tabPage8);
this.tabControl1.Controls.Add(this.tabPage9);
this.tabControl1.Controls.Add(this.tabPage10);
this.tabControl1.Location = new System.Drawing.Point(5, 31);
this.tabControl1.Name = "tabControl1";
this.tabControl1.SelectedIndex = 0;
this.tabControl1.Size = new System.Drawing.Size(331, 350);
this.tabControl1.TabIndex = 14;
//
// tabPage1
//
this.tabPage1.Controls.Add(this.richTextBox1);
this.tabPage1.Location = new System.Drawing.Point(4, 22);
this.tabPage1.Name = "tabPage1";
this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
this.tabPage1.Size = new System.Drawing.Size(323, 324);
this.tabPage1.TabIndex = 0;
this.tabPage1.Text = "Logs";
this.tabPage1.UseVisualStyleBackColor = true;
//
// tabPage2
//
this.tabPage2.Controls.Add(this.richTextBox2);
this.tabPage2.Location = new System.Drawing.Point(4, 22);
this.tabPage2.Name = "tabPage2";
this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
this.tabPage2.Size = new System.Drawing.Size(323, 324);
this.tabPage2.TabIndex = 1;
this.tabPage2.Text = "Items Logs";
this.tabPage2.UseVisualStyleBackColor = true;
//
// tabPage8
//
this.tabPage8.Controls.Add(this.richTextBoxErrorLogs);
this.tabPage8.Location = new System.Drawing.Point(4, 22);
this.tabPage8.Name = "tabPage8";
this.tabPage8.Size = new System.Drawing.Size(323, 324);
this.tabPage8.TabIndex = 2;
this.tabPage8.Text = "Errors Logs";
this.tabPage8.UseVisualStyleBackColor = true;
//
// richTextBoxErrorLogs
//
this.richTextBoxErrorLogs.DetectUrls = false;
this.richTextBoxErrorLogs.Dock = System.Windows.Forms.DockStyle.Fill;
this.richTextBoxErrorLogs.Location = new System.Drawing.Point(0, 0);
this.richTextBoxErrorLogs.Name = "richTextBoxErrorLogs";
this.richTextBoxErrorLogs.ReadOnly = true;
this.richTextBoxErrorLogs.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.ForcedVertical;
this.richTextBoxErrorLogs.Size = new System.Drawing.Size(323, 324);
this.richTextBoxErrorLogs.TabIndex = 8;
this.richTextBoxErrorLogs.Text = "";
//
// tabPage9
//
this.tabPage9.Controls.Add(this.richTextBoxGamesLogs);
this.tabPage9.Location = new System.Drawing.Point(4, 22);
this.tabPage9.Name = "tabPage9";
this.tabPage9.Size = new System.Drawing.Size(323, 324);
this.tabPage9.TabIndex = 3;
this.tabPage9.Text = "Games Logs";
this.tabPage9.UseVisualStyleBackColor = true;
//
// richTextBoxGamesLogs
//
this.richTextBoxGamesLogs.DetectUrls = false;
this.richTextBoxGamesLogs.Dock = System.Windows.Forms.DockStyle.Fill;
this.richTextBoxGamesLogs.Location = new System.Drawing.Point(0, 0);
this.richTextBoxGamesLogs.Name = "richTextBoxGamesLogs";
this.richTextBoxGamesLogs.ReadOnly = true;
this.richTextBoxGamesLogs.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.ForcedVertical;
this.richTextBoxGamesLogs.Size = new System.Drawing.Size(323, 324);
this.richTextBoxGamesLogs.TabIndex = 8;
this.richTextBoxGamesLogs.Text = "";
//
// tabPage10
//
this.tabPage10.Controls.Add(this.richTextBoSoldLogs);
this.tabPage10.Location = new System.Drawing.Point(4, 22);
this.tabPage10.Name = "tabPage10";
this.tabPage10.Size = new System.Drawing.Size(323, 324);
this.tabPage10.TabIndex = 4;
this.tabPage10.Text = "Sold Logs";
this.tabPage10.UseVisualStyleBackColor = true;
//
// richTextBoSoldLogs
//
this.richTextBoSoldLogs.DetectUrls = false;
this.richTextBoSoldLogs.Dock = System.Windows.Forms.DockStyle.Fill;
this.richTextBoSoldLogs.Location = new System.Drawing.Point(0, 0);
this.richTextBoSoldLogs.Name = "richTextBoSoldLogs";
this.richTextBoSoldLogs.ReadOnly = true;
this.richTextBoSoldLogs.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.ForcedVertical;
this.richTextBoSoldLogs.Size = new System.Drawing.Size(323, 324);
this.richTextBoSoldLogs.TabIndex = 6;
this.richTextBoSoldLogs.Text = "";
this.richTextBoSoldLogs.WordWrap = false;
this.richTextBoSoldLogs.MouseLeave += new System.EventHandler(this.richTextBoSoldLogs_MouseLeave);
this.richTextBoSoldLogs.MouseMove += new System.Windows.Forms.MouseEventHandler(this.richTextBoSoldLogs_MouseMove);
//
// button2
//
this.button2.Location = new System.Drawing.Point(249, 3);
this.button2.Name = "button2";
this.button2.Size = new System.Drawing.Size(87, 25);
this.button2.TabIndex = 18;
this.button2.Text = "Debug Menu";
this.toolTip1.SetToolTip(this.button2, "Open the Debug menu\'s");
this.button2.UseVisualStyleBackColor = true;
this.button2.Click += new System.EventHandler(this.button2_Click);
//
// tabControl2
//
this.tabControl2.Controls.Add(this.tabPage3);
this.tabControl2.Controls.Add(this.tabPage4);
this.tabControl2.Controls.Add(this.tabPage5);
this.tabControl2.Controls.Add(this.tabPage6);
this.tabControl2.Controls.Add(this.tabPage7);
this.tabControl2.Location = new System.Drawing.Point(5, 385);
this.tabControl2.Name = "tabControl2";
this.tabControl2.SelectedIndex = 0;
this.tabControl2.Size = new System.Drawing.Size(544, 228);
this.tabControl2.TabIndex = 19;
this.tabControl2.SelectedIndexChanged += new System.EventHandler(this.tabControl2_SelectedIndexChanged);
//
// tabPage3
//
this.tabPage3.BackColor = System.Drawing.Color.LightGray;
this.tabPage3.Controls.Add(this.comboBoxItemsCategory);
this.tabPage3.Controls.Add(this.label1);
this.tabPage3.Controls.Add(this.richTextBoxDebugItems);
this.tabPage3.Location = new System.Drawing.Point(4, 22);
this.tabPage3.Name = "tabPage3";
this.tabPage3.Padding = new System.Windows.Forms.Padding(3);
this.tabPage3.Size = new System.Drawing.Size(536, 202);
this.tabPage3.TabIndex = 0;
this.tabPage3.Text = "Items";
//
// comboBoxItemsCategory
//
this.comboBoxItemsCategory.FormattingEnabled = true;
this.comboBoxItemsCategory.Items.AddRange(new object[] {
"All Items",
"On Cursor",
"In Inventory",
"In Stash",
"In Shared Stash1",
"In Shared Stash2",
"In Shared Stash3",
"In Cube",
"Equipped",
"In Belt",
"On Ground",
"In Shop",
"Others"});
this.comboBoxItemsCategory.Location = new System.Drawing.Point(66, 5);
this.comboBoxItemsCategory.Name = "comboBoxItemsCategory";
this.comboBoxItemsCategory.Size = new System.Drawing.Size(121, 21);
this.comboBoxItemsCategory.TabIndex = 22;
this.comboBoxItemsCategory.SelectedIndexChanged += new System.EventHandler(this.comboBoxItemsCategory_SelectedIndexChanged);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(8, 8);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(52, 13);
this.label1.TabIndex = 21;
this.label1.Text = "Category:";
//
// richTextBoxDebugItems
//
this.richTextBoxDebugItems.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.richTextBoxDebugItems.DetectUrls = false;
this.richTextBoxDebugItems.Location = new System.Drawing.Point(3, 30);
this.richTextBoxDebugItems.Name = "richTextBoxDebugItems";
this.richTextBoxDebugItems.ReadOnly = true;
this.richTextBoxDebugItems.Size = new System.Drawing.Size(530, 169);
this.richTextBoxDebugItems.TabIndex = 20;
this.richTextBoxDebugItems.Text = "";
this.richTextBoxDebugItems.WordWrap = false;
//
// tabPage4
//
this.tabPage4.BackColor = System.Drawing.Color.LightGray;
this.tabPage4.Controls.Add(this.checkBoxShowOnlyValidMobs);
this.tabPage4.Controls.Add(this.richTextBoxDebugMobs);
this.tabPage4.Location = new System.Drawing.Point(4, 22);
this.tabPage4.Name = "tabPage4";
this.tabPage4.Padding = new System.Windows.Forms.Padding(3);
this.tabPage4.Size = new System.Drawing.Size(536, 202);
this.tabPage4.TabIndex = 1;
this.tabPage4.Text = "Mobs/NPC";
//
// checkBoxShowOnlyValidMobs
//
this.checkBoxShowOnlyValidMobs.AutoSize = true;
this.checkBoxShowOnlyValidMobs.Location = new System.Drawing.Point(6, 6);
this.checkBoxShowOnlyValidMobs.Name = "checkBoxShowOnlyValidMobs";
this.checkBoxShowOnlyValidMobs.Size = new System.Drawing.Size(220, 17);
this.checkBoxShowOnlyValidMobs.TabIndex = 22;
this.checkBoxShowOnlyValidMobs.Text = "Show Mobs/NPC with valid Position Only";
this.checkBoxShowOnlyValidMobs.UseVisualStyleBackColor = true;
//
// richTextBoxDebugMobs
//
this.richTextBoxDebugMobs.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.richTextBoxDebugMobs.DetectUrls = false;
this.richTextBoxDebugMobs.Location = new System.Drawing.Point(3, 29);
this.richTextBoxDebugMobs.Name = "richTextBoxDebugMobs";
this.richTextBoxDebugMobs.ReadOnly = true;
this.richTextBoxDebugMobs.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.ForcedVertical;
this.richTextBoxDebugMobs.Size = new System.Drawing.Size(530, 170);
this.richTextBoxDebugMobs.TabIndex = 21;
this.richTextBoxDebugMobs.Text = "";
//
// tabPage5
//
this.tabPage5.BackColor = System.Drawing.Color.LightGray;
this.tabPage5.Controls.Add(this.checkBoxShowValidObjectOnly);
this.tabPage5.Controls.Add(this.richTextBoxDebugObjects);
this.tabPage5.Location = new System.Drawing.Point(4, 22);
this.tabPage5.Name = "tabPage5";
this.tabPage5.Size = new System.Drawing.Size(536, 202);
this.tabPage5.TabIndex = 5;
this.tabPage5.Text = "Objects";
//
// checkBoxShowValidObjectOnly
//
this.checkBoxShowValidObjectOnly.AutoSize = true;
this.checkBoxShowValidObjectOnly.Location = new System.Drawing.Point(3, 5);
this.checkBoxShowValidObjectOnly.Name = "checkBoxShowValidObjectOnly";
this.checkBoxShowValidObjectOnly.Size = new System.Drawing.Size(203, 17);
this.checkBoxShowValidObjectOnly.TabIndex = 23;
this.checkBoxShowValidObjectOnly.Text = "Show Objects with valid Position Only";
this.checkBoxShowValidObjectOnly.UseVisualStyleBackColor = true;
//
// richTextBoxDebugObjects
//
this.richTextBoxDebugObjects.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.richTextBoxDebugObjects.DetectUrls = false;
this.richTextBoxDebugObjects.Location = new System.Drawing.Point(0, 28);
this.richTextBoxDebugObjects.Name = "richTextBoxDebugObjects";
this.richTextBoxDebugObjects.ReadOnly = true;
this.richTextBoxDebugObjects.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.ForcedVertical;
this.richTextBoxDebugObjects.Size = new System.Drawing.Size(536, 174);
this.richTextBoxDebugObjects.TabIndex = 22;
this.richTextBoxDebugObjects.Text = "";
//
// tabPage6
//
this.tabPage6.Controls.Add(this.richTextBoxDebugMapData);
this.tabPage6.Location = new System.Drawing.Point(4, 22);
this.tabPage6.Name = "tabPage6";
this.tabPage6.Size = new System.Drawing.Size(536, 202);
this.tabPage6.TabIndex = 3;
this.tabPage6.Text = "Map Data";
this.tabPage6.UseVisualStyleBackColor = true;
//
// richTextBoxDebugMapData
//
this.richTextBoxDebugMapData.DetectUrls = false;
this.richTextBoxDebugMapData.Dock = System.Windows.Forms.DockStyle.Fill;
this.richTextBoxDebugMapData.Location = new System.Drawing.Point(0, 0);
this.richTextBoxDebugMapData.Name = "richTextBoxDebugMapData";
this.richTextBoxDebugMapData.ReadOnly = true;
this.richTextBoxDebugMapData.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.ForcedVertical;
this.richTextBoxDebugMapData.Size = new System.Drawing.Size(536, 202);
this.richTextBoxDebugMapData.TabIndex = 21;
this.richTextBoxDebugMapData.Text = "";
//
// tabPage7
//
this.tabPage7.BackColor = System.Drawing.Color.LightGray;
this.tabPage7.Controls.Add(this.comboBoxCollisionArea);
this.tabPage7.Controls.Add(this.label2);
this.tabPage7.Controls.Add(this.richTextBoxDebugMapCollision);
this.tabPage7.Location = new System.Drawing.Point(4, 22);
this.tabPage7.Name = "tabPage7";
this.tabPage7.Size = new System.Drawing.Size(536, 202);
this.tabPage7.TabIndex = 4;
this.tabPage7.Text = "Map Collisions";
//
// comboBoxCollisionArea
//
this.comboBoxCollisionArea.FormattingEnabled = true;
this.comboBoxCollisionArea.Items.AddRange(new object[] {
"All Items",
"On Cursor",
"In Inventory",
"In Stash",
"In Shared Stash1",
"In Shared Stash2",
"In Shared Stash3",
"In Cube",
"Equipped",
"In Belt",
"On Ground",
"In Shop",
"Others"});
this.comboBoxCollisionArea.Location = new System.Drawing.Point(64, 3);
this.comboBoxCollisionArea.Name = "comboBoxCollisionArea";
this.comboBoxCollisionArea.Size = new System.Drawing.Size(121, 21);
this.comboBoxCollisionArea.TabIndex = 24;
this.comboBoxCollisionArea.SelectedIndexChanged += new System.EventHandler(this.comboBoxCollisionArea_SelectedIndexChanged);
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(6, 6);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(32, 13);
this.label2.TabIndex = 23;
this.label2.Text = "Area:";
//
// richTextBoxDebugMapCollision
//
this.richTextBoxDebugMapCollision.DetectUrls = false;
this.richTextBoxDebugMapCollision.Font = new System.Drawing.Font("Courier New", 1.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.richTextBoxDebugMapCollision.Location = new System.Drawing.Point(0, 28);
this.richTextBoxDebugMapCollision.Name = "richTextBoxDebugMapCollision";
this.richTextBoxDebugMapCollision.ReadOnly = true;
this.richTextBoxDebugMapCollision.Size = new System.Drawing.Size(536, 174);
this.richTextBoxDebugMapCollision.TabIndex = 21;
this.richTextBoxDebugMapCollision.Text = "";
this.richTextBoxDebugMapCollision.WordWrap = false;
//
// statusStrip1
//
this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.labelGameName,
this.toolStripSeparator2,
this.labelGames,
this.toolStripSeparator3,
this.labelGameTime,
this.toolStripSeparator4,
this.LabelChickenCount,
this.toolStripSeparator5,
this.LabelDeadCount});
this.statusStrip1.Location = new System.Drawing.Point(0, 616);
this.statusStrip1.Name = "statusStrip1";
this.statusStrip1.Size = new System.Drawing.Size(552, 23);
this.statusStrip1.TabIndex = 101;
this.statusStrip1.Text = "statusStrip1";
//
// labelGameName
//
this.labelGameName.BackColor = System.Drawing.SystemColors.Control;
this.labelGameName.Name = "labelGameName";
this.labelGameName.Size = new System.Drawing.Size(70, 18);
this.labelGameName.Text = "GameName";
this.labelGameName.ToolTipText = "Game Name";
//
// toolStripSeparator2
//
this.toolStripSeparator2.Name = "toolStripSeparator2";
this.toolStripSeparator2.Size = new System.Drawing.Size(6, 23);
//
// labelGames
//
this.labelGames.BackColor = System.Drawing.SystemColors.Control;
this.labelGames.Name = "labelGames";
this.labelGames.Size = new System.Drawing.Size(78, 18);
this.labelGames.Text = "GameEntered";
this.labelGames.ToolTipText = "Game Entered";
//
// toolStripSeparator3
//
this.toolStripSeparator3.Name = "toolStripSeparator3";
this.toolStripSeparator3.Size = new System.Drawing.Size(6, 23);
//
// labelGameTime
//
this.labelGameTime.BackColor = System.Drawing.SystemColors.Control;
this.labelGameTime.Name = "labelGameTime";
this.labelGameTime.Size = new System.Drawing.Size(55, 18);
this.labelGameTime.Text = "00:00.000";
this.labelGameTime.ToolTipText = "Game Timer";
//
// toolStripSeparator4
//
this.toolStripSeparator4.Name = "toolStripSeparator4";
this.toolStripSeparator4.Size = new System.Drawing.Size(6, 23);
//
// LabelChickenCount
//
this.LabelChickenCount.BackColor = System.Drawing.SystemColors.Control;
this.LabelChickenCount.Name = "LabelChickenCount";
this.LabelChickenCount.Size = new System.Drawing.Size(55, 18);
this.LabelChickenCount.Text = "Chickens";
this.LabelChickenCount.ToolTipText = "Chickens Count";
//
// toolStripSeparator5
//
this.toolStripSeparator5.Name = "toolStripSeparator5";
this.toolStripSeparator5.Size = new System.Drawing.Size(6, 23);
//
// LabelDeadCount
//
this.LabelDeadCount.BackColor = System.Drawing.SystemColors.Control;
this.LabelDeadCount.Name = "LabelDeadCount";
this.LabelDeadCount.Size = new System.Drawing.Size(34, 18);
this.LabelDeadCount.Text = "Dead";
this.LabelDeadCount.ToolTipText = "Deads Count";
//
// buttonPauseResume
//
this.buttonPauseResume.Enabled = false;
this.buttonPauseResume.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.buttonPauseResume.ForeColor = System.Drawing.Color.Blue;
this.buttonPauseResume.Image = global::app.Properties.Resources.control_pause;
this.buttonPauseResume.Location = new System.Drawing.Point(41, 3);
this.buttonPauseResume.Name = "buttonPauseResume";
this.buttonPauseResume.Size = new System.Drawing.Size(26, 25);
this.buttonPauseResume.TabIndex = 107;
this.toolTip1.SetToolTip(this.buttonPauseResume, "Pause/Resume the Bot");
this.buttonPauseResume.UseVisualStyleBackColor = true;
this.buttonPauseResume.Click += new System.EventHandler(this.buttonPauseResume_Click);
//
// buttonUpdate
//
this.buttonUpdate.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.buttonUpdate.ForeColor = System.Drawing.Color.Blue;
this.buttonUpdate.Image = global::app.Properties.Resources.Update;
this.buttonUpdate.Location = new System.Drawing.Point(193, 3);
this.buttonUpdate.Name = "buttonUpdate";
this.buttonUpdate.Size = new System.Drawing.Size(26, 25);
this.buttonUpdate.TabIndex = 106;
this.toolTip1.SetToolTip(this.buttonUpdate, "Open github download page for updates");
this.buttonUpdate.UseVisualStyleBackColor = true;
this.buttonUpdate.Visible = false;
this.buttonUpdate.Click += new System.EventHandler(this.buttonUpdate_Click);
//
// buttonD2LOD
//
this.buttonD2LOD.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.buttonD2LOD.ForeColor = System.Drawing.Color.Blue;
this.buttonD2LOD.Image = global::app.Properties.Resources.Error;
this.buttonD2LOD.Location = new System.Drawing.Point(218, 3);
this.buttonD2LOD.Name = "buttonD2LOD";
this.buttonD2LOD.Size = new System.Drawing.Size(26, 25);
this.buttonD2LOD.TabIndex = 105;
this.toolTip1.SetToolTip(this.buttonD2LOD, "Diablo2 LOD - 1.13C Help Tool");
this.buttonD2LOD.UseVisualStyleBackColor = true;
this.buttonD2LOD.Visible = false;
this.buttonD2LOD.Click += new System.EventHandler(this.buttonD2LOD_Click);
//
// button5
//
this.button5.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.button5.ForeColor = System.Drawing.Color.Blue;
this.button5.Image = global::app.Properties.Resources.Person;
this.button5.Location = new System.Drawing.Point(143, 3);
this.button5.Name = "button5";
this.button5.Size = new System.Drawing.Size(26, 25);
this.button5.TabIndex = 104;
this.toolTip1.SetToolTip(this.button5, "Char Settings");
this.button5.UseVisualStyleBackColor = true;
this.button5.Click += new System.EventHandler(this.button5_Click);
//
// button4
//
this.button4.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.button4.ForeColor = System.Drawing.Color.Blue;
this.button4.Image = global::app.Properties.Resources.Equipment;
this.button4.Location = new System.Drawing.Point(168, 3);
this.button4.Name = "button4";
this.button4.Size = new System.Drawing.Size(26, 25);
this.button4.TabIndex = 103;
this.toolTip1.SetToolTip(this.button4, "Items + Cubing Settings");
this.button4.UseVisualStyleBackColor = true;
this.button4.Click += new System.EventHandler(this.button4_Click);
//
// button3
//
this.button3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.button3.ForeColor = System.Drawing.Color.Blue;
this.button3.Image = global::app.Properties.Resources.Application;
this.button3.Location = new System.Drawing.Point(118, 3);
this.button3.Name = "button3";
this.button3.Size = new System.Drawing.Size(26, 25);
this.button3.TabIndex = 102;
this.toolTip1.SetToolTip(this.button3, "Bot Settings");
this.button3.UseVisualStyleBackColor = true;
this.button3.Click += new System.EventHandler(this.button3_Click_1);
//
// folderBrowserDialog1
//
this.folderBrowserDialog1.Description = "Select the folder where D2 LOD 1.13C is located";
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.SystemColors.ControlDark;
this.ClientSize = new System.Drawing.Size(552, 639);
this.Controls.Add(this.buttonPauseResume);
this.Controls.Add(this.buttonUpdate);
this.Controls.Add(this.buttonD2LOD);
this.Controls.Add(this.button5);
this.Controls.Add(this.button4);
this.Controls.Add(this.button3);
this.Controls.Add(this.statusStrip1);
this.Controls.Add(this.tabControl2);
this.Controls.Add(this.button2);
this.Controls.Add(this.tabControl1);
this.Controls.Add(this.dataGridView1);
this.Controls.Add(this.button1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.Name = "Form1";
this.Text = "D2R - BMBot";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form1_FormClosing);
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
this.tabControl1.ResumeLayout(false);
this.tabPage1.ResumeLayout(false);
this.tabPage2.ResumeLayout(false);
this.tabPage8.ResumeLayout(false);
this.tabPage9.ResumeLayout(false);
this.tabPage10.ResumeLayout(false);
this.tabControl2.ResumeLayout(false);
this.tabPage3.ResumeLayout(false);
this.tabPage3.PerformLayout();
this.tabPage4.ResumeLayout(false);
this.tabPage4.PerformLayout();
this.tabPage5.ResumeLayout(false);
this.tabPage5.PerformLayout();
this.tabPage6.ResumeLayout(false);
this.tabPage7.ResumeLayout(false);
this.tabPage7.PerformLayout();
this.statusStrip1.ResumeLayout(false);
this.statusStrip1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button button1;
private System.Windows.Forms.DataGridView dataGridView1;
private System.Windows.Forms.ColorDialog colorDialog1;
private System.Windows.Forms.RichTextBox richTextBox1;
private System.Windows.Forms.RichTextBox richTextBox2;
private System.Windows.Forms.DataGridViewTextBoxColumn Column1;
private System.Windows.Forms.DataGridViewTextBoxColumn Column2;
private System.Windows.Forms.TabControl tabControl1;
private System.Windows.Forms.TabPage tabPage1;
private System.Windows.Forms.TabPage tabPage2;
private System.Windows.Forms.Button button2;
private System.Windows.Forms.TabControl tabControl2;
private System.Windows.Forms.TabPage tabPage3;
private System.Windows.Forms.TabPage tabPage6;
private System.Windows.Forms.TabPage tabPage7;
public System.Windows.Forms.RichTextBox richTextBoxDebugMobs;
private System.Windows.Forms.TabPage tabPage5;
public System.Windows.Forms.RichTextBox richTextBoxDebugMapData;
public System.Windows.Forms.RichTextBox richTextBoxDebugMapCollision;
public System.Windows.Forms.RichTextBox richTextBoxDebugObjects;
public System.Windows.Forms.RichTextBox richTextBoxDebugItems;
private System.Windows.Forms.TabPage tabPage4;
private System.Windows.Forms.StatusStrip statusStrip1;
public System.Windows.Forms.ToolStripStatusLabel labelGameName;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator2;
public System.Windows.Forms.ToolStripStatusLabel labelGames;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator3;
public System.Windows.Forms.ToolStripStatusLabel labelGameTime;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator4;
public System.Windows.Forms.ToolStripStatusLabel LabelChickenCount;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator5;
public System.Windows.Forms.ToolStripStatusLabel LabelDeadCount;
private System.Windows.Forms.Button button3;
private System.Windows.Forms.TabPage tabPage8;
private System.Windows.Forms.RichTextBox richTextBoxErrorLogs;
private System.Windows.Forms.TabPage tabPage9;
private System.Windows.Forms.RichTextBox richTextBoxGamesLogs;
private System.Windows.Forms.Button button4;
private System.Windows.Forms.Button button5;
private System.Windows.Forms.ToolTip toolTip1;
private System.Windows.Forms.Button buttonD2LOD;
private System.Windows.Forms.Button buttonUpdate;
private System.Windows.Forms.Label label1;
public System.Windows.Forms.ComboBox comboBoxItemsCategory;
public System.Windows.Forms.CheckBox checkBoxShowOnlyValidMobs;
public System.Windows.Forms.CheckBox checkBoxShowValidObjectOnly;
private System.Windows.Forms.Button buttonPauseResume;
private System.Windows.Forms.FolderBrowserDialog folderBrowserDialog1;
private System.Windows.Forms.TabPage tabPage10;
private System.Windows.Forms.RichTextBox richTextBoSoldLogs;
public System.Windows.Forms.ComboBox comboBoxCollisionArea;
private System.Windows.Forms.Label label2;
}