-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRotationLab.cs
More file actions
4455 lines (4383 loc) · 102 KB
/
Copy pathRotationLab.cs
File metadata and controls
4455 lines (4383 loc) · 102 KB
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
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Drawing.Imaging;
using System.Runtime.InteropServices;
using System.Windows.Forms;
using MyU9Ep58ZH3s5ThDFJQ;
using XR7RtrxI8Vm7Dgx9BKr;
namespace RotationLabEngine
{
// Token: 0x02000048 RID: 72
public class RotationLab
{
// Token: 0x0600071F RID: 1823
[DllImport("gdi32.dll", CharSet = CharSet.Auto, EntryPoint = "BitBlt", ExactSpelling = true, SetLastError = true)]
private static extern int QUhcRNgNQQ(IntPtr \u0020, int \u0020, int \u0020, int \u0020, int \u0020, IntPtr \u0020, int \u0020, int \u0020, int \u0020);
// Token: 0x06000720 RID: 1824 RVA: 0x000350BC File Offset: 0x000332BC
public void _SetCheckPixels(int R, int G, int B)
{
int num = 1;
int num2 = num;
for (;;)
{
switch (num2)
{
case 1:
this.CheckR = R;
num2 = 0;
if (<Module>{cb13cea5-238d-4db2-b197-7f40acede0b8}.m_f1e441e915f3465198512fda3e140bf5 != 0)
{
num2 = 0;
continue;
}
continue;
case 2:
return;
}
this.CheckB = B;
this.CheckG = G;
num2 = 2;
if (<Module>{cb13cea5-238d-4db2-b197-7f40acede0b8}.m_f1e441e915f3465198512fda3e140bf5 == 0)
{
num2 = 2;
}
}
}
// Token: 0x06000721 RID: 1825 RVA: 0x00035140 File Offset: 0x00033340
private int T9ScL73g8k(Color \u0020)
{
return 65536 * (int)\u0020.R + 256 * (int)\u0020.G + (int)\u0020.B;
}
// Token: 0x06000722 RID: 1826 RVA: 0x00035168 File Offset: 0x00033368
private bool ji3clPYm2y(int \u0020)
{
return \u0020 == 255;
}
// Token: 0x06000723 RID: 1827 RVA: 0x00035174 File Offset: 0x00033374
private bool Gytca2Eyra()
{
bool result;
try
{
int num = 700;
int num2 = 48;
if (<Module>{cb13cea5-238d-4db2-b197-7f40acede0b8}.m_e3b631d8a3e54afc92ab7132d2862d60 != 0)
{
num2 = 47;
}
int num4;
Color color;
Color u2;
string text;
int num21;
for (;;)
{
int num3;
int num5;
Color color2;
int num6;
int num8;
Bitmap bitmap;
int num9;
int num10;
int num11;
Color color3;
BuffsDebuffs buffsDebuffs;
Dictionary<string, UnitInformation> dictionary;
int num12;
Color u3;
int num13;
int r;
bool flag;
Dictionary<int, SpellInformation> dictionary2;
int num14;
Color u4;
int num15;
Dictionary<int, ItemInformation> dictionary3;
int num16;
bool flag2;
int num17;
bool flag3;
BuffsDebuffs buffsDebuffs2;
int num18;
int num19;
int b;
Color u5;
int num20;
Color u6;
int num22;
int u8;
int num27;
int g;
int num28;
Color u9;
Color u10;
switch (num2)
{
case 0:
goto IL_18CE;
case 1:
goto IL_7E0;
case 2:
num3 = 0;
num2 = 267;
if (<Module>{cb13cea5-238d-4db2-b197-7f40acede0b8}.m_a4220304efac479885fc7bed52e95949 == 0)
{
num2 = 68;
continue;
}
continue;
case 3:
goto IL_14F4;
case 4:
num3 = 0;
num2 = 26;
if (<Module>{cb13cea5-238d-4db2-b197-7f40acede0b8}.m_30d33a1ced8343dfb34aa8f1408e62af == 0)
{
num2 = 27;
continue;
}
continue;
case 5:
if (num4 + 1 == (int)color.G)
{
num2 = 23;
continue;
}
goto IL_21B1;
case 6:
goto IL_2703;
case 7:
num5 = 0;
num2 = 37;
if (<Module>{cb13cea5-238d-4db2-b197-7f40acede0b8}.m_c835c27d43a14f3da6b7339e694b8c99 == 0)
{
num2 = 38;
continue;
}
continue;
case 8:
RotationLab.ybwkVIOgbYM3M2pKHMO(this.CR, RotationLab.hyOVLrOXaO40SpKFcFP(RotationLab.MHhyiHOtXqhFeE532tB(1654110737 ^ -473083753 ^ -2124765934), this.CR._InGameToggleList[num4]));
num2 = 350;
continue;
case 9:
this.CR._PlayerRuneType[2] = (int)color2.B;
num6 = 424;
break;
case 10:
{
int num7;
if (num7 != 1)
{
num2 = 313;
continue;
}
goto IL_3535;
}
case 11:
num8 = 0;
num2 = 307;
continue;
case 12:
goto IL_2F73;
case 13:
goto IL_24B9;
case 14:
goto IL_31BD;
case 15:
{
Color pixel = bitmap.GetPixel(num9 + 1, 0);
Color u;
this.CR._PlayerPower[num10] = this.T9ScL73g8k(u);
num2 = 226;
continue;
}
case 16:
if (num11 <= 0)
{
goto IL_3B09;
}
num2 = 283;
if (<Module>{cb13cea5-238d-4db2-b197-7f40acede0b8}.m_f1e441e915f3465198512fda3e140bf5 == 0)
{
num2 = 370;
continue;
}
continue;
case 17:
goto IL_2ABD;
case 18:
goto IL_3282;
case 19:
goto IL_AB0;
case 20:
color3 = RotationLab.souMiQONFJxvqHRk1rF(bitmap, 15, 0);
num2 = 293;
continue;
case 21:
goto IL_E2D;
case 22:
buffsDebuffs.Stacks = (int)u2.G;
if (!dictionary[text].Debuffs.ContainsKey(this.CR._DebuffList[buffsDebuffs.Index]))
{
goto IL_10CA;
}
num2 = 437;
if (<Module>{cb13cea5-238d-4db2-b197-7f40acede0b8}.m_78ab67cec1824b2289ca2a9b24f27de2 != 0)
{
num2 = 252;
continue;
}
continue;
case 23:
if (RotationLab.ba0qyZOH9EcifSiyJwt(this.CR._InGameToggleList) <= num4)
{
num2 = 369;
continue;
}
goto IL_323C;
case 24:
goto IL_30BE;
case 25:
RotationLab.nN4dlcOjRD0DnIoUbPk(this.CR.GlyphList);
num2 = 18;
if (<Module>{cb13cea5-238d-4db2-b197-7f40acede0b8}.m_912464c7521643f2968751cbbc64f3cf == 0)
{
num2 = 18;
continue;
}
continue;
case 26:
num12 = 0;
num6 = 299;
break;
case 27:
goto IL_2A26;
case 28:
num3 = 0;
num2 = 319;
continue;
case 29:
goto IL_348A;
case 30:
goto IL_346E;
case 31:
{
List<SpellCast> spellCastHistory = this.CR.SpellCastHistory;
int index = 0;
SpellCast spellCast = new SpellCast();
spellCast.SpellId = num11;
DateTimeOffset dateTimeOffset = RotationLab.nTPRdGO0vwiYH4yBXcT();
spellCast.Timestamp = dateTimeOffset.ToUnixTimeMilliseconds();
spellCastHistory.Insert(index, spellCast);
if (RotationLab.SgXMFrOJuydnwEmfCMt(this.CR.SpellCastHistory) > 100)
{
RotationLab.Mq77IGOmag33RGpudiJ(this.CR.SpellCastHistory, RotationLab.SgXMFrOJuydnwEmfCMt(this.CR.SpellCastHistory) - 1);
num2 = 345;
continue;
}
goto IL_3B09;
}
case 32:
goto IL_14F4;
case 33:
goto IL_348A;
case 34:
this.CR.TargetCreatureType = (int)u3.B;
num2 = 68;
continue;
case 35:
if ((int)color3.R == this.CheckR)
{
num2 = 237;
continue;
}
goto IL_3709;
case 36:
if (u2.B != 140)
{
goto IL_3FDA;
}
num2 = 326;
if (<Module>{cb13cea5-238d-4db2-b197-7f40acede0b8}.m_450de79ddfe6409a988b8682e74747f2 == 0)
{
num2 = 366;
continue;
}
continue;
case 37:
goto IL_1719;
case 38:
num13 = 0;
num2 = 204;
if (<Module>{cb13cea5-238d-4db2-b197-7f40acede0b8}.m_912464c7521643f2968751cbbc64f3cf != 0)
{
num2 = 47;
continue;
}
continue;
case 39:
goto IL_1A41;
case 40:
r = (int)u2.R;
num2 = 432;
continue;
case 41:
buffsDebuffs.Index = num5 - 1;
num2 = 160;
if (<Module>{cb13cea5-238d-4db2-b197-7f40acede0b8}.m_5570c327a6334a12993e71a93a06169a != 0)
{
num2 = 127;
continue;
}
continue;
case 42:
flag = false;
num2 = 402;
if (<Module>{cb13cea5-238d-4db2-b197-7f40acede0b8}.m_912464c7521643f2968751cbbc64f3cf != 0)
{
num2 = 77;
continue;
}
continue;
case 43:
goto IL_3203;
case 44:
goto IL_891;
case 45:
goto IL_3282;
case 46:
dictionary2 = new Dictionary<int, SpellInformation>();
num2 = 62;
continue;
case 47:
goto IL_2682;
case 48:
if (RotationLab.h3bR2nOeoSINbIeDGtm(this.CR))
{
num2 = 151;
continue;
}
goto IL_16D3;
case 49:
goto IL_1D81;
case 50:
goto IL_419C;
case 51:
this.CR.PlayerHasOneHand = this.ji3clPYm2y((int)u3.B);
num2 = 304;
if (<Module>{cb13cea5-238d-4db2-b197-7f40acede0b8}.m_450de79ddfe6409a988b8682e74747f2 != 0)
{
num2 = 112;
continue;
}
continue;
case 52:
{
Graphics graphics = RotationLab.RQAK4OOrfZieTkW4BBS(bitmap);
num6 = 273;
break;
}
case 53:
goto IL_1EAC;
case 54:
goto IL_3B09;
case 55:
switch (num14)
{
case 40:
goto IL_1F3C;
case 41:
this.CR.FireTotemTimeRemaining = this.T9ScL73g8k(u4);
num2 = 6;
if (<Module>{cb13cea5-238d-4db2-b197-7f40acede0b8}.m_a5d4b7819e164965bb08f6d803806b82 != 0)
{
num2 = 33;
continue;
}
continue;
case 42:
goto IL_76F;
case 43:
goto IL_103E;
case 44:
goto IL_3741;
case 45:
this.CR.EarthTotemTimeElasped = this.T9ScL73g8k(u4);
num2 = 155;
continue;
case 46:
goto IL_16EC;
case 47:
goto IL_3C4C;
case 48:
goto IL_2060;
case 49:
goto IL_16A6;
case 50:
goto IL_2743;
case 51:
goto IL_3E94;
default:
num2 = 37;
if (<Module>{cb13cea5-238d-4db2-b197-7f40acede0b8}.m_114c8e4d680c4b9997b685901f6ff336 != 0)
{
num2 = 70;
continue;
}
continue;
}
break;
case 56:
goto IL_2A26;
case 57:
num15 = 64;
num2 = 427;
continue;
case 58:
goto IL_323C;
case 59:
dictionary[text].UnitIsMouseover = this.ji3clPYm2y((int)u2.B);
goto IL_2A26;
case 60:
goto IL_710;
case 61:
if ((int)u2.G <= RotationLab.SgtbJDOvuGP5yrNSsj7(this.CR._ItemList))
{
num12 = this.CR._ItemList[(int)(u2.G - 1)];
num2 = 184;
continue;
}
goto IL_34CA;
case 62:
dictionary3 = new Dictionary<int, ItemInformation>();
num6 = 28;
break;
case 63:
goto IL_2A26;
case 64:
goto IL_125D;
case 65:
if (color.R == 200)
{
num2 = 5;
continue;
}
goto IL_21B1;
case 66:
goto IL_36B7;
case 67:
num16 = 0;
goto IL_14F4;
case 68:
goto IL_3B09;
case 69:
goto IL_302D;
case 70:
goto IL_348A;
case 71:
if (this.CR._ToggleOptionEnabled[num4] != flag2)
{
num2 = 338;
continue;
}
goto IL_E4D;
case 72:
goto IL_1A41;
case 73:
this.CR._PlayerRuneType[5] = (int)color2.B;
num2 = 13;
continue;
case 74:
goto IL_3E94;
case 75:
goto IL_2C7C;
case 76:
if (num17 != 62)
{
num2 = 295;
continue;
}
goto IL_12BE;
case 77:
goto IL_3B09;
case 78:
goto IL_300A;
case 79:
dictionary2[num16].ChargeMax = (int)u2.G;
num2 = 3;
continue;
case 80:
goto IL_17C9;
case 81:
goto IL_348A;
case 82:
if (u2.G <= 0)
{
goto IL_96E;
}
num2 = 293;
if (<Module>{cb13cea5-238d-4db2-b197-7f40acede0b8}.m_b7f67e3eba18452ab17dba1f1cebde43 == 0)
{
num2 = 348;
continue;
}
continue;
case 83:
result = true;
num2 = 26;
if (<Module>{cb13cea5-238d-4db2-b197-7f40acede0b8}.m_b8bb7cdbcd66488bbe9aea1b375752f3 != 0)
{
num2 = 85;
continue;
}
continue;
case 84:
flag3 = false;
num2 = 99;
if (<Module>{cb13cea5-238d-4db2-b197-7f40acede0b8}.m_2450e204911e419ba8c7c2ba4ba001f5 == 0)
{
num2 = 96;
continue;
}
continue;
case 85:
goto IL_42C3;
case 86:
goto IL_3B09;
case 87:
goto IL_E4D;
case 88:
goto IL_2CF5;
case 89:
goto IL_3CAF;
case 90:
goto IL_2CB8;
case 91:
goto IL_14F4;
case 92:
dictionary[text].PowerTypeIndex = (int)u2.B;
goto IL_2A26;
case 93:
this.CR._PlayerRuneType[1] = (int)color2.G;
num2 = 9;
continue;
case 94:
if (u2.B != 68)
{
goto IL_34F4;
}
num6 = 162;
break;
case 95:
this.CR._SpellInfo = dictionary2;
this.CR._ItemInfo = dictionary3;
num2 = 54;
if (<Module>{cb13cea5-238d-4db2-b197-7f40acede0b8}.m_f67918d8ca3e4dfd9e21621dec4357d8 != 0)
{
num2 = 83;
continue;
}
continue;
case 96:
this.CR.PlayerRaceId = (int)u3.G;
num2 = 8;
if (<Module>{cb13cea5-238d-4db2-b197-7f40acede0b8}.m_a65af4741e8c4e4da9b36e623cb150b3 == 0)
{
num2 = 154;
continue;
}
continue;
case 97:
dictionary[text].Buffs[this.CR._BuffList[buffsDebuffs2.Index]] = buffsDebuffs2;
num2 = 85;
if (<Module>{cb13cea5-238d-4db2-b197-7f40acede0b8}.m_f9e98f6a964b4abbaedd241bdefc81fd != 0)
{
num2 = 344;
continue;
}
continue;
case 98:
this.CR.PlayerIsOutdoor = this.ji3clPYm2y((int)u3.G);
num2 = 144;
continue;
case 99:
flag = false;
num6 = 325;
break;
case 100:
this.CR.PlayerTankingStatus = (int)u3.G;
num2 = 232;
continue;
case 101:
if (this._PixelLocation == 1)
{
num2 = 353;
continue;
}
goto IL_309F;
case 102:
goto IL_236B;
case 103:
goto IL_1B57;
case 104:
goto IL_CC1;
case 105:
goto IL_220C;
case 106:
if ((int)color3.B != this.CheckB)
{
num2 = 138;
continue;
}
goto IL_11E7;
case 107:
goto IL_151C;
case 108:
goto IL_1A41;
case 109:
goto IL_3282;
case 110:
goto IL_2591;
case 111:
goto IL_348A;
case 112:
goto IL_3FFB;
case 113:
goto IL_ACD;
case 114:
goto IL_31E6;
case 115:
goto IL_24B9;
case 116:
num18 = 16;
num2 = 423;
continue;
case 117:
goto IL_B7C;
case 118:
goto IL_348A;
case 119:
goto IL_3B09;
case 120:
goto IL_13E2;
case 121:
if (u2.B != 168)
{
goto IL_2CA6;
}
if (u2.G <= 0)
{
goto Block_163;
}
goto IL_20FB;
case 122:
num19 = 2;
num2 = 415;
if (<Module>{cb13cea5-238d-4db2-b197-7f40acede0b8}.m_d808aff233c746968dbfcb5437cf67e9 != 0)
{
num2 = 381;
continue;
}
continue;
case 123:
goto IL_4285;
case 124:
goto IL_17F2;
case 125:
goto IL_DEB;
case 126:
num13 = 0;
num2 = 287;
continue;
case 127:
goto IL_2840;
case 128:
goto IL_2A26;
case 129:
{
Color u = RotationLab.souMiQONFJxvqHRk1rF(bitmap, num9, 0);
num6 = 15;
break;
}
case 130:
goto IL_2A26;
case 131:
goto IL_2663;
case 132:
goto IL_348A;
case 133:
goto IL_17F2;
case 134:
goto IL_2A26;
case 135:
dictionary[text].CurrentCastIsChannelling = this.ji3clPYm2y((int)u2.G);
num2 = 6;
if (<Module>{cb13cea5-238d-4db2-b197-7f40acede0b8}.m_d7db82c175de47d2b5f36bc0c7f71006 == 0)
{
num2 = 59;
continue;
}
continue;
case 136:
goto IL_3B09;
case 137:
goto IL_93B;
case 138:
goto IL_3709;
case 139:
goto IL_1946;
case 140:
goto IL_3D8F;
case 141:
goto IL_117A;
case 142:
goto IL_38B4;
case 143:
goto IL_3B09;
case 144:
this.CR.PlayerIsInRaid = this.ji3clPYm2y((int)u3.B);
num2 = 376;
continue;
case 145:
dictionary[text].UnitIsTarget = this.ji3clPYm2y((int)u2.B);
num6 = 220;
break;
case 146:
dictionary2.Add(num16, new SpellInformation());
num6 = 190;
break;
case 147:
goto IL_2DFE;
case 148:
{
DateTimeOffset dateTimeOffset = RotationLab.nTPRdGO0vwiYH4yBXcT();
num2 = 280;
continue;
}
case 149:
if (u2.B == 132)
{
num2 = 358;
continue;
}
goto IL_2851;
case 150:
dictionary[text] = new UnitInformation();
num2 = 4;
continue;
case 151:
num = 1150;
num2 = 386;
continue;
case 152:
goto IL_B64;
case 153:
goto IL_14F4;
case 154:
this.CR.PlayerIsInVehicle = this.ji3clPYm2y((int)u3.B);
num2 = 211;
continue;
case 155:
goto IL_348A;
case 156:
goto IL_3B09;
case 157:
goto IL_B64;
case 158:
goto IL_3FDA;
case 159:
goto IL_2D4A;
case 160:
goto IL_17F2;
case 161:
goto IL_36D4;
case 162:
if (u2.G > 0)
{
num2 = 61;
continue;
}
goto IL_34CA;
case 163:
goto IL_7E0;
case 164:
goto IL_3741;
case 165:
goto IL_F38;
case 166:
{
bool flag4 = this.ji3clPYm2y((int)u2.B);
num2 = 413;
continue;
}
case 167:
goto IL_14CF;
case 168:
dictionary[text].IsInCombat = this.ji3clPYm2y((int)u2.B);
num2 = 326;
continue;
case 169:
goto IL_348A;
case 170:
goto IL_3B09;
case 171:
dictionary[text].Debuffs[this.CR._DebuffList[buffsDebuffs.Index]] = buffsDebuffs;
num2 = 283;
continue;
case 172:
goto IL_1368;
case 173:
{
Color pixel2;
if (this.T9ScL73g8k(pixel2) == this._lastCastInGameTimestamp)
{
goto IL_3B09;
}
this._lastCastInGameTimestamp = this.T9ScL73g8k(pixel2);
num2 = 31;
if (<Module>{cb13cea5-238d-4db2-b197-7f40acede0b8}.m_40d264c41f474fea9eba2908d12918c1 != 0)
{
num2 = 11;
continue;
}
continue;
}
case 174:
goto IL_72A;
case 175:
goto IL_3945;
case 176:
if (u2.G == 67)
{
num2 = 435;
continue;
}
goto IL_2840;
case 177:
b = (int)color.B;
num2 = 118;
if (<Module>{cb13cea5-238d-4db2-b197-7f40acede0b8}.m_e9ed32793f344edc971bad365818217d == 0)
{
num2 = 249;
continue;
}
continue;
case 178:
if (num15 == 64)
{
num2 = 392;
continue;
}
goto IL_1CF3;
case 179:
goto IL_2A26;
case 180:
goto IL_186F;
case 181:
switch (num3)
{
case 1:
goto IL_148F;
case 2:
goto IL_1E1F;
case 3:
goto IL_1368;
case 4:
goto IL_E2D;
case 5:
goto IL_2703;
case 6:
goto IL_1946;
case 7:
goto IL_247A;
case 8:
goto IL_29AC;
case 9:
goto IL_DEB;
case 10:
goto IL_2D4A;
case 11:
goto IL_E77;
case 12:
goto IL_17C9;
case 13:
goto IL_CF1;
case 14:
goto IL_11C2;
case 15:
goto IL_33AE;
case 16:
goto IL_2283;
case 17:
goto IL_3050;
case 18:
dictionary[text].PlayerClass = (int)u2.R;
goto IL_2A26;
default:
num2 = 13;
if (<Module>{cb13cea5-238d-4db2-b197-7f40acede0b8}.m_5b41e96a488843f6bf9e80607461149a != 0)
{
num2 = 78;
continue;
}
continue;
}
break;
case 182:
this.CR.LossOfControlType = (int)u5.G;
num2 = 239;
continue;
case 183:
dictionary[text].UnitRange = (int)u2.G;
num2 = 335;
continue;
case 184:
dictionary3.Add(num12, new ItemInformation());
dictionary3[num12].Index = (int)(u2.G - 1);
num2 = 2;
continue;
case 185:
goto IL_1CF3;
case 186:
goto IL_2888;
case 187:
goto IL_ACD;
case 188:
goto IL_148F;
case 189:
goto IL_3107;
case 190:
dictionary2[num16].Index = (int)(u2.G - 1);
num2 = 397;
continue;
case 191:
buffsDebuffs2.Index = num8 - 1;
num2 = 291;
continue;
case 192:
goto IL_2A26;
case 193:
goto IL_2851;
case 194:
goto IL_1A41;
case 195:
num20 = 52;
num2 = 252;
if (<Module>{cb13cea5-238d-4db2-b197-7f40acede0b8}.m_37d2e63e4691457582d3a8717f754394 == 0)
{
num2 = 16;
continue;
}
continue;
case 196:
goto IL_B64;
case 197:
goto IL_300A;
case 198:
if (num13 == 2)
{
buffsDebuffs.SrcPlayer = this.ji3clPYm2y((int)u2.R);
num2 = 22;
continue;
}
num2 = 48;
if (<Module>{cb13cea5-238d-4db2-b197-7f40acede0b8}.m_e0aba0d9fb124085a8bd5fdd21baeb5d != 0)
{
num2 = 133;
continue;
}
continue;
case 199:
goto IL_E77;
case 200:
goto IL_2A26;