-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLoL Log.txt
1689 lines (1633 loc) · 184 KB
/
LoL Log.txt
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
000000.000| ALWAYS| Logging started at 2016-04-07T17:16:05.012
000000.000| OKAY| Riot::RADS::Reader::RadsMain::Initialize: RADS library initializing with specified working directory "C:\Riot Games\League of Legends\RADS\solutions\lol_game_client_sln\releases\0.0.1.128\deploy".
000000.000| OKAY| Riot::RADS::Reader::RuntimeEnvironment::Create: Creating RADS runtime environment: RADS root directory = "C:/Riot Games/League of Legends/RADS"
000000.000| OKAY| Riot::RADS::Reader::SolutionManifest::Load: ("C:/Riot Games/League of Legends/RADS/solutions/lol_game_client_sln/releases/0.0.1.128/solutionmanifest")
000000.000| OKAY| Riot::RADS::Reader::ConfigurationManifest::Load: ("C:/Riot Games/League of Legends/RADS/solutions/lol_game_client_sln/releases/0.0.1.128/configurationmanifest")
000000.000| OKAY| Riot::RADS::Reader::ReleaseManifest::LoadInternal: ("C:/Riot Games/League of Legends/RADS/projects/lol_game_client_en_gb/releases/0.0.1.41/releasemanifest")
000000.040| OKAY| Riot::RADS::Reader::ReleaseManifest::LoadInternal: ("C:/Riot Games/League of Legends/RADS/projects/lol_game_client/releases/0.0.1.69/releasemanifest")
000000.431| OKAY| Unable to process data overlay file ./ToolsConfig.xml, defaulting to overlay now
000000.431| ALWAYS| Data overlay start folder initialized to DATA, Content/Src
000000.431| ALWAYS| Global logging level set to WARN
000000.431| ALWAYS| GameClock LockToSystemClock time: 0.000000 diff: 0.431287
000000.433| ALWAYS| Build Version: Version 6.7.139.4318 (Apr 5 2016/15:22:31) [PUBLIC] <Releases/6.7> ChangeList: 1394318
000000.556| ALWAYS| Started System Init
000000.557| ALWAYS| Maestro Init
000000.560| ALWAYS| Maestro completed init
000000.561| ALWAYS| zip manifest, 'ClientZips.txt', not found (expected).
000000.561| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "DATA/Loadouts/SummonerBadges.bin" because it's not in the manifest.
000000.575| ALWAYS| StartSession called
000000.575| ALWAYS| Started Init event arguments
000000.576| ALWAYS| Waiting until connection...
000000.729| ALWAYS| InitRenderer() enter
000000.729| ALWAYS| r3dRenderLayer::Init(0x00200D20) enter
000000.743| ALWAYS| r3dRenderLayer::Init() exit successfully
000000.917| ALWAYS| Loaded locale en_GB via fontconfig
000000.920| ALWAYS| IME file, 'C:/Riot Games/League of Legends/RADS/solutions/lol_game_client_sln/releases/0.0.1.128/deploy/Data/Menu/IMEConfig.xml', is optional. The following error is expected.
000000.920| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "C:/Riot Games/League of Legends/RADS/solutions/lol_game_client_sln/releases/0.0.1.128/deploy/Data/Menu/IMEConfig.xml" because it's not in the manifest.
000000.920| ERROR| Missing file on r3dGFile open :C:/Riot Games/League of Legends/RADS/solutions/lol_game_client_sln/releases/0.0.1.128/deploy/Data/Menu/IMEConfig.xml
000000.920| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "\Bin\Data\C:/Riot Games/League of Legends/RADS/solutions/lol_game_client_sln/releases/0.0.1.128/deploy/Data/Menu/IMEConfig.xml" because it's not in the manifest.
000000.920| ERROR| Missing file on r3dGFile open :\Bin\Data\C:/Riot Games/League of Legends/RADS/solutions/lol_game_client_sln/releases/0.0.1.128/deploy/Data/Menu/IMEConfig.xml
000000.925| ALWAYS| SharedConfigPath: C:\Riot Games\League of Legends\RADS\projects/lol_air_client/releases/0.0.1.195/deploy/preferences/
000000.926| ALWAYS| r3dRenderer::SetMode: Trying resolution 1920x1080, bpp 32, windowMode 2, vsync on...
000000.926| ALWAYS| In Riot::Win::Resize: Resizing the window and retrieving monitor info
000000.926| ALWAYS| In Riot::Win::Resize: Initial VideoMode(bda8560) and resolution (1920 x 1080)
000000.926| ALWAYS| In Riot::Win::Resize: VideoMode(bda8560) and resolution (960 x 540)
000000.932| ALWAYS| In Riot::Win::Resize: Resized window to resolution 1920x1080
000000.932| ALWAYS| rr3dRenderLayer::InitDevice(XRes = 1920, YRes = 1080, BPP = 32, Flags=1284) enter
000000.932| ALWAYS| rr3dRenderLayer::InitDevice: Creating d3d device
000000.932| ALWAYS| CreateDevice: Disabling EnableAutoDepthStencil in favor of an INTZ depth buffer.
000000.932| ALWAYS| CreateDevice: Disabling present depth discard in favor of an INTZ depth buffer.
000001.068| ALWAYS| Success
000001.068| ALWAYS| r3dRenderLayer::RecreateOwnedResources
000001.120| ALWAYS| r3dRenderLayer::InitResources exit successfully
000001.120| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "UX/Fonts.bin" because it's not in the manifest.
000001.135| ALWAYS| Waiting for client ID
000001.336| ALWAYS| {"messageType":"riot__game_client__connection_info","message_body":"Hard Connect"}
000001.336| ALWAYS| Received client ID
000001.337| ALWAYS| Set focus to app
000001.337| ALWAYS| Input started
000001.353| ALWAYS| Query Status Req started
000001.572| ALWAYS| Query Status Req ended
000001.573| ALWAYS| Waiting for server response...
000001.661| ALWAYS| OS Version String: 10 Professional, x64
000001.661| ALWAYS| CPU: GenuineIntel, Intel(R) Core(TM) i7-4790K CPU @ 4.00GHz, Intel64 Family 6 Model 60 Stepping 3, 4000 (0 core)
000001.661| ALWAYS| Measured processor speed: 4081
000001.661| ALWAYS| Display info: NVIDIA GeForce GTX 970 4293918720 10.18.13.6200
000001.661| ALWAYS| Physical memory: 12884901888
000001.661| ALWAYS| {"messageType":"hardware_information","message_body":"Hardware Info","operating_system":"10 Professional, x64","cpu":"GenuineIntel","cpu_processor":"Intel(R) Core(TM) i7-4790K CPU @ 4.00GHz","cpu_identifier":"Intel64 Family 6 Model 60 Stepping 3","cpu_topology":4,"gpu":"NVIDIA GeForce GTX 970","video_memory":"4293918720","driver_version":"10.18.13.6200","physical_memory":12884901888,"wine":false}
000001.661| ALWAYS| -----HARDWARE INFORMATION START-----
000001.661| ALWAYS| Operating System: 10 Professional, x64
000001.661| ALWAYS| GPU Manufacturer: NVIDIA GeForce GTX 970
000001.661| ALWAYS| GPU Memory: 4293918720
000001.661| ALWAYS| GPU Driver Version: 10.18.13.6200
000001.661| ALWAYS| CPU Brand: GenuineIntel
000001.661| ALWAYS| CPU Processor Name: Intel(R) Core(TM) i7-4790K CPU @ 4.00GHz
000001.661| ALWAYS| CPU Identifier: Intel64 Family 6 Model 60 Stepping 3
000001.661| ALWAYS| CPU Speed: 4000
000001.661| ALWAYS| CPU Topology: 4 Core
000001.661| ALWAYS| Physical memory: 12884901888
000001.661| ALWAYS| -----HARDWARE INFORMATION END-----
000002.176| ALWAYS| Initializing GameModeComponents for mode=CLASSIC.
000002.176| ALWAYS| ... Processing GameMode Mutator = default.
000002.176| ALWAYS| ... Processing GameMode Mutator = LoadingScreenBackground(Data).
000002.176| ALWAYS| ... Processing GameMode Mutator = FOWTexture(FogOfWarOverlay.dds).
000002.176| ALWAYS| ... Processing GameMode Mutator = HudSkin(Default).
000002.176| ALWAYS| ... Processing GameMode Mutator = NavigationMesh(AIPath).
000002.176| ALWAYS| ... Processing GameMode Mutator = MiniMapTexture(2DLevelMinimap.dds).
000002.176| ALWAYS| ... Processing GameMode Mutator = MapMusic(None).
000002.176| ALWAYS| ... Processing GameMode Mutator = BotSummonerIcon(0).
000002.176| ALWAYS| ... Processing GameMode Mutator = EndOfGameScreenText(Default).
000002.176| ALWAYS| ... Processing GameMode Mutator = HealthTextModifier(default).
000002.176| ALWAYS| ... Processing GameMode Mutator = DamageTextModifier(default).
000002.176| ALWAYS| ... Processing GameMode Mutator = MapObjectESportTeamCustomization(0).
000002.176| ALWAYS| ... Processing GameMode Mutator = LocalizationEncryptKey(none).
000002.176| ALWAYS| ... Processing GameMode Mutator = SuppressMinionSpawn(0).
000002.176| ALWAYS| ... Processing GameMode Mutator = RestrictedItemShopCategories(none).
000002.177| ALWAYS| ... Processing GameMode Mutator = UsePropertyUI(1).
000002.177| ALWAYS| ... Processing GameMode Mutator = LevelPropsScript(CreateLevelProps.lua).
000002.177| ALWAYS| ... Processing GameMode Mutator = NeutralMinionSpawnScript(NeutralMinionSpawn.lua).
000002.177| ALWAYS| ... Processing GameMode Mutator = MapObjects(MapObjects.mob).
000002.177| ALWAYS| ... Processing GameMode Mutator = SpectatorHudSkin(SpectatorUpdate).
000002.177| ALWAYS| ... Processing GameMode Mutator = SpectatorMiniMapTexture(2DLevelMinimap.dds).
000002.177| ALWAYS| ... Processing GameMode Mutator = WorldGeometry(room).
000002.177| ALWAYS| ... Processing GameMode Mutator = LevelScriptFile(LevelScript.lua).
000002.177| ALWAYS| ... Processing GameMode Mutator = NewSummonerBadgeSystem(0).
000002.177| ALWAYS| ... Processing GameMode Mutator = CLASSIC.
000002.177| ALWAYS| netUID: 0 defaultname
000002.181| ALWAYS| PlayGame Started
000002.181| ALWAYS| r3dRenderLayer::InitDefaultShaders: Initialize shaders for current rendering path
000002.331| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "UX/FloatingText.bin" because it's not in the manifest.
000003.154| WARN| General performance warning: more than 11 texture samplers are being used simultanously.
Please bump this number if this is intentional up to 16 (inclusive)
000003.157| ALWAYS| PlayGame Entered
000003.157| ALWAYS| gRenderPipeline
000003.157| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "UX/Globals.bin" because it's not in the manifest.
000003.157| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "UX/FloatingHealthBars.bin" because it's not in the manifest.
000003.320| ALWAYS| CreateParticleSystemManager
000004.662| ALWAYS| CreateAudioManager: Create audio manager Wwise.
000004.674| ALWAYS| AudioManager: Wwise Version v2013.2.2 initialized.
000004.681| WARN| Duplicate key/value pair ([OnKilledUnitOnKillingSpreeTripleKill_YOffset3, 8] in DATA/CFG/defaults/Announcements_CLASSIC.ini
000004.681| WARN| Duplicate key/value pair ([OnKilledUnitOnKillingSpreeUnrealKill_YOffset3, 8] in DATA/CFG/defaults/Announcements_CLASSIC.ini
000004.684| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "DATA/Maps/Map11/Map11.bin" because it's not in the manifest.
000005.597| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/SRU_orderminionsiege/skins/base/animations/cannon_order_attack1.anm" because it's not in the manifest.
000005.597| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/SRU_orderminionsiege/skins/base/animations/cannon_order_attack2.anm" because it's not in the manifest.
000005.598| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/SRU_orderminionsiege/skins/base/animations/cannon_order_win1.anm" because it's not in the manifest.
000005.598| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_orderminionsiege/skins/base/animations/cannon_order_death1.anm" because it's not in the manifest.
000005.598| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_orderminionsiege/skins/base/animations/cannon_order_idle1.anm" because it's not in the manifest.
000005.598| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/SRU_orderminionsiege/skins/base/animations/cannon_order_run1.anm" because it's not in the manifest.
000005.598| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/SRU_orderminionsiege/skins/base/animations/cannon_order_attack3.anm" because it's not in the manifest.
000005.598| ERROR| Cant load particle system SRU_Order_CanM_death.troy
000005.598| ERROR| Failed to preload particle system "SRU_Order_CanM_death.troy"
000005.608| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000005.608| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000005.608| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000005.608| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000005.615| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_orderminionsuper/skins/base/animations/superminion_blue_attack1.anm" because it's not in the manifest.
000005.615| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_orderminionsuper/skins/base/animations/superminion_blue_attack2.anm" because it's not in the manifest.
000005.615| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/SRU_orderminionsuper/skins/base/animations/superminion_blue_idle.anm" because it's not in the manifest.
000005.616| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_orderminionsuper/skins/base/animations/superminion_blue_death.anm" because it's not in the manifest.
000005.616| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_orderminionsuper/skins/base/animations/superminion_blue_death2.anm" because it's not in the manifest.
000005.616| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/SRU_orderminionsuper/skins/base/animations/superminion_blue_run.anm" because it's not in the manifest.
000005.626| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/SRU_orderminionmelee/skins/base/animations/minion_melee_idle.anm" because it's not in the manifest.
000005.627| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/SRU_orderminionmelee/skins/base/animations/minion_melee_run.anm" because it's not in the manifest.
000005.627| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/SRU_orderminionmelee/skins/base/animations/minion_melee_attack.anm" because it's not in the manifest.
000005.627| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/SRU_orderminionmelee/skins/base/animations/minion_melee_death.anm" because it's not in the manifest.
000005.627| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/SRU_orderminionmelee/skins/base/animations/minion_melee_death4.anm" because it's not in the manifest.
000005.627| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/SRU_orderminionmelee/skins/base/animations/minion_melee_death2.anm" because it's not in the manifest.
000005.627| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/SRU_orderminionmelee/skins/base/animations/minion_melee_death3.anm" because it's not in the manifest.
000005.627| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/SRU_orderminionmelee/skins/base/animations/minion_melee_attack2.anm" because it's not in the manifest.
000005.627| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/SRU_orderminionmelee/skins/base/animations/minion_melee_attack3.anm" because it's not in the manifest.
000005.628| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/SRU_orderminionmelee/skins/base/animations/minion_melee_attack3b.anm" because it's not in the manifest.
000005.637| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_orderminionranged/skins/base/animations/minion_caster_idle.anm" because it's not in the manifest.
000005.637| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/SRU_orderminionranged/skins/base/animations/minion_caster_death3.anm" because it's not in the manifest.
000005.637| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_orderminionranged/skins/base/animations/minion_caster_attack2.anm" because it's not in the manifest.
000005.637| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/SRU_orderminionranged/skins/base/animations/minion_caster_death.anm" because it's not in the manifest.
000005.638| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/SRU_orderminionranged/skins/base/animations/minion_caster_death2.anm" because it's not in the manifest.
000005.638| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/SRU_orderminionranged/skins/base/animations/minion_caster_run.anm" because it's not in the manifest.
000005.638| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_orderminionranged/skins/base/animations/minion_caster_attack1.anm" because it's not in the manifest.
000005.638| ERROR| Cant load particle system SRU_order_cm_death_melee.troy
000005.638| ERROR| Failed to preload particle system "SRU_order_cm_death_melee.troy"
000005.651| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/SRU_chaosminionsiege/skins/base/animations/cannon_chaos_attack1.anm" because it's not in the manifest.
000005.651| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/SRU_chaosminionsiege/skins/base/animations/cannon_chaos_attack2.anm" because it's not in the manifest.
000005.652| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/SRU_chaosminionsiege/skins/base/animations/cannon_chaos_win1.anm" because it's not in the manifest.
000005.652| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_chaosminionsiege/skins/base/animations/cannon_chaos_death1.anm" because it's not in the manifest.
000005.652| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_chaosminionsiege/skins/base/animations/cannon_chaos_idle1.anm" because it's not in the manifest.
000005.652| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/SRU_chaosminionsiege/skins/base/animations/cannon_chaos_run1.anm" because it's not in the manifest.
000005.652| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/SRU_chaosminionsiege/skins/base/animations/cannon_chaos_attack3.anm" because it's not in the manifest.
000005.652| ERROR| Cant load particle system SRU_Chaos_CanM_death.troy
000005.652| ERROR| Failed to preload particle system "SRU_Chaos_CanM_death.troy"
000005.656| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000005.657| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000005.657| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000005.657| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000005.663| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_chaosminionsuper/skins/base/animations/superminion_red_attack1.anm" because it's not in the manifest.
000005.663| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_chaosminionsuper/skins/base/animations/superminion_red_attack2.anm" because it's not in the manifest.
000005.663| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_chaosminionsuper/skins/base/animations/superminion_red_death.anm" because it's not in the manifest.
000005.664| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_chaosminionsuper/skins/base/animations/superminion_red_death2.anm" because it's not in the manifest.
000005.664| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/SRU_chaosminionsuper/skins/base/animations/superminion_red_run.anm" because it's not in the manifest.
000005.666| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000005.666| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000005.666| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000005.666| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000005.667| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000005.667| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000005.672| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/SRU_chaosminionmelee/skins/base/animations/minion_melee_attack.anm" because it's not in the manifest.
000005.672| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/SRU_chaosminionmelee/skins/base/animations/minion_melee_attack2.anm" because it's not in the manifest.
000005.672| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/SRU_chaosminionmelee/skins/base/animations/minion_melee_attack3.anm" because it's not in the manifest.
000005.680| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_chaosminionranged/skins/base/animations/minion_caster_idle.anm" because it's not in the manifest.
000005.680| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_chaosminionranged/skins/base/animations/minion_caster_attack.anm" because it's not in the manifest.
000005.680| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_chaosminionranged/skins/base/animations/minion_caster_attack2.anm" because it's not in the manifest.
000005.680| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/SRU_chaosminionranged/skins/base/animations/minion_caster_chaos_death_2.anm" because it's not in the manifest.
000005.680| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/SRU_chaosminionranged/skins/base/animations/minion_caster_chaos_death.anm" because it's not in the manifest.
000005.680| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/SRU_chaosminionranged/skins/base/animations/minion_caster_run.anm" because it's not in the manifest.
000005.702| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sruap_turret_order1/skins/base/animations/sruap_orderturret1_idle1.anm" because it's not in the manifest.
000005.702| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sruap_turret_order1/skins/base/animations/sruap_orderturret1_idle1_seq.anm" because it's not in the manifest.
000005.719| ERROR| Can not open file <TurretInitialArmor.dds> *********
000005.719| ERROR| Failed to load TurretInitialArmor.dds
000005.719| WARN| r3dTexture EX: TurretInitialArmor.dds - not found. Dummy texture created.
000005.722| ERROR| Can not open file <LuxCrashingBlitz2.dds> *********
000005.722| ERROR| Failed to load LuxCrashingBlitz2.dds
000005.722| WARN| r3dTexture EX: LuxCrashingBlitz2.dds - not found. Dummy texture created.
000005.749| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sruap_turret_chaos1/skins/base/animations/sruap_chaosturret1_idle1.anm" because it's not in the manifest.
000005.750| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sruap_turret_chaos1/skins/base/animations/sruap_chaosturret1_idle2.anm" because it's not in the manifest.
000005.750| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sruap_turret_chaos1/skins/base/animations/sruap_chaosturret1_idle1_seq.anm" because it's not in the manifest.
000005.750| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sruap_turret_chaos1/skins/base/animations/sruap_turret_chaos_cloth_stage1.anm" because it's not in the manifest.
000005.750| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sruap_turret_chaos1/skins/base/animations/sruap_turret_chaos_cloth_stage2.anm" because it's not in the manifest.
000005.750| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sruap_turret_chaos1/skins/base/animations/sruap_chaosturret1_idle0.anm" because it's not in the manifest.
000005.788| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sruap_orderinhibitor/skins/base/animations/sruap_orderinhibitor_idle1.anm" because it's not in the manifest.
000005.788| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sruap_orderinhibitor/skins/base/animations/sruap_orderinhibitor_death.anm" because it's not in the manifest.
000005.789| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sruap_orderinhibitor/skins/base/animations/sruap_orderinhibitor_spawn.anm" because it's not in the manifest.
000005.789| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sruap_orderinhibitor/skins/base/animations/sruap_orderinhibitor_idle_dead.anm" because it's not in the manifest.
000005.789| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sruap_orderinhibitor/skins/base/animations/sruap_orderinhibitor_respawn.anm" because it's not in the manifest.
000005.790| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sruap_orderinhibitor/skins/base/animations/sruap_orderinhibitor_idle2.anm" because it's not in the manifest.
000005.790| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sruap_orderinhibitor/skins/base/animations/sruap_orderinhibitor_idle3.anm" because it's not in the manifest.
000005.790| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sruap_orderinhibitor/skins/base/animations/sruap_orderinhibitor_hold.anm" because it's not in the manifest.
000005.812| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sruap_chaosinhibitor/skins/base/animations/sruap_chaosinhibitor_idle_normal.anm" because it's not in the manifest.
000005.812| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sruap_chaosinhibitor/skins/base/animations/sruap_chaosinhibitor_death.anm" because it's not in the manifest.
000005.813| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sruap_chaosinhibitor/skins/base/animations/sruap_chaosinhibitor_spawn.anm" because it's not in the manifest.
000005.813| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sruap_chaosinhibitor/skins/base/animations/sruap_chaosinhibitor_idle_death.anm" because it's not in the manifest.
000005.813| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sruap_chaosinhibitor/skins/base/animations/sruap_chaosinhibitor_idle_hold.anm" because it's not in the manifest.
000005.813| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sruap_chaosinhibitor/skins/base/animations/sruap_chaosinhibitor_respawn.anm" because it's not in the manifest.
000005.814| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sruap_chaosinhibitor/skins/base/animations/sruap_chaosinhibitor_idle_normal2.anm" because it's not in the manifest.
000005.814| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sruap_chaosinhibitor/skins/base/animations/sruap_chaosinhibitor_idle_normal3.anm" because it's not in the manifest.
000005.867| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/SRUAP_OrderNexus/skins/base/animations/SRUAP_OrderNexus_death.anm" because it's not in the manifest.
000005.868| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/SRUAP_OrderNexus/skins/base/animations/SRUAP_OrderNexus_idle.anm" because it's not in the manifest.
000005.868| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/SRUAP_OrderNexus/skins/base/animations/SRUAP_OrderNexus_spawn.anm" because it's not in the manifest.
000005.868| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/SRUAP_OrderNexus/skins/base/animations/SRUAP_OrderNexus_spawn_hold.anm" because it's not in the manifest.
000005.906| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sruap_chaosnexus/skins/base/animations/sruap_chaosnexus_death.anm" because it's not in the manifest.
000005.906| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sruap_chaosnexus/skins/base/animations/sruap_chaosnexus_idle.anm" because it's not in the manifest.
000005.907| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sruap_chaosnexus/skins/base/animations/sruap_chaosnexus_spawn_hold.anm" because it's not in the manifest.
000005.907| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sruap_chaosnexus/skins/base/animations/sruap_chaosnexus_spawn.anm" because it's not in the manifest.
000005.907| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sruap_chaosnexus/skins/base/animations/sruap_chaosnexus_idlein.anm" because it's not in the manifest.
000005.910| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "DATA/Characters/SRU_Blue/SRU_Blue.bin" because it's not in the manifest.
000005.911| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "DATA/Characters/brush_SRU_J/brush_SRU_J.bin" because it's not in the manifest.
000005.912| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "DATA/Characters/brush_SRU_A/brush_SRU_A.bin" because it's not in the manifest.
000005.917| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000005.917| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000005.918| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000005.918| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000005.918| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000005.918| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000005.935| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/SRU_Blue/skins/base/animations/SRU_Blue_attack1.anm" because it's not in the manifest.
000005.935| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/SRU_Blue/skins/base/animations/SRU_Blue_attack2.anm" because it's not in the manifest.
000005.935| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/SRU_Blue/skins/base/animations/SRU_Blue_spawn.anm" because it's not in the manifest.
000005.936| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_blue/skins/base/animations/sru_blue_idle_normal.anm" because it's not in the manifest.
000005.936| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/SRU_Blue/skins/base/animations/SRU_Blue_attack3.anm" because it's not in the manifest.
000005.936| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/SRU_Blue/skins/base/animations/SRU_Blue_idle_aggro.anm" because it's not in the manifest.
000005.936| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/SRU_Blue/skins/base/animations/SRU_Blue_run.anm" because it's not in the manifest.
000005.936| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/SRU_Blue/skins/base/animations/SRU_Blue_idle_n2a.anm" because it's not in the manifest.
000005.937| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_blue/skins/base/animations/sru_blue_idle_a2n.anm" because it's not in the manifest.
000005.937| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/SRU_Blue/skins/base/animations/SRU_Blue_death.anm" because it's not in the manifest.
000005.937| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/SRU_Blue/skins/base/animations/SRU_Blue_idle_aggro2.anm" because it's not in the manifest.
000005.937| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/SRU_Blue/skins/base/animations/SRU_Blue_idle_aggro3.anm" because it's not in the manifest.
000005.937| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/brush_sru_j/skins/base/brush_test_bb_a.anm" because it's not in the manifest.
000005.938| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_blue/skins/base/animations/sru_blue_idle_lookat_l.anm" because it's not in the manifest.
000005.938| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_blue/skins/base/animations/sru_blue_idle_lookat_m.anm" because it's not in the manifest.
000005.938| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_blue/skins/base/animations/sru_blue_idle_lookat_r.anm" because it's not in the manifest.
000005.975| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "DATA/Characters/SRU_BlueMini/SRU_BlueMini.bin" because it's not in the manifest.
000005.984| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/SRU_BlueMini/skins/base/animations/SRU_BlueMini_run.anm" because it's not in the manifest.
000005.984| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/SRU_BlueMini/skins/base/animations/SRU_BlueMini_death.anm" because it's not in the manifest.
000005.984| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/SRU_BlueMini/skins/base/animations/SRU_BlueMini_idle1.anm" because it's not in the manifest.
000005.984| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/SRU_BlueMini/skins/base/animations/SRU_BlueMini_attack1.anm" because it's not in the manifest.
000005.984| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_bluemini/skins/base/animations/sru_bluemini_spawn2.anm" because it's not in the manifest.
000005.985| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/SRU_BlueMini/skins/base/animations/SRU_BlueMini_intro_dormant.anm" because it's not in the manifest.
000005.985| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/SRU_BlueMini/skins/base/animations/SRU_BlueMini_attack2.anm" because it's not in the manifest.
000005.985| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/SRU_BlueMini/skins/base/animations/SRU_BlueMini_idle2.anm" because it's not in the manifest.
000005.985| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_bluemini/skins/base/animations/sru_bluemini_lookat_0.anm" because it's not in the manifest.
000005.985| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_bluemini/skins/base/animations/sru_bluemini_lookat_l.anm" because it's not in the manifest.
000005.985| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_bluemini/skins/base/animations/sru_bluemini_lookat_r.anm" because it's not in the manifest.
000005.992| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "DATA/Characters/SRU_BlueMini2/SRU_BlueMini2.bin" because it's not in the manifest.
000005.997| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_bluemini/skins/base/animations/sru_bluemini_run.anm" because it's not in the manifest.
000005.997| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_bluemini/skins/base/animations/sru_bluemini_death.anm" because it's not in the manifest.
000005.997| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_bluemini/skins/base/animations/sru_bluemini_idle1.anm" because it's not in the manifest.
000005.997| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_bluemini/skins/base/animations/sru_bluemini_attack1.anm" because it's not in the manifest.
000005.997| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_bluemini/skins/base/animations/sru_bluemini_spawn1.anm" because it's not in the manifest.
000005.997| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_bluemini/skins/base/animations/sru_bluemini_intro_dormant.anm" because it's not in the manifest.
000005.997| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_bluemini/skins/base/animations/sru_bluemini_attack2.anm" because it's not in the manifest.
000005.998| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_bluemini/skins/base/animations/sru_bluemini_idle2.anm" because it's not in the manifest.
000006.000| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "DATA/Characters/SRU_Red/SRU_Red.bin" because it's not in the manifest.
000006.017| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_red/skins/base/animations/sru_red_idle1.anm" because it's not in the manifest.
000006.017| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_red/skins/base/animations/sru_red_attack1.anm" because it's not in the manifest.
000006.018| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_red/skins/base/animations/sru_red_idle2.anm" because it's not in the manifest.
000006.018| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_red/skins/base/animations/sru_red_death.anm" because it's not in the manifest.
000006.018| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_red/skins/base/animations/sru_red_run.anm" because it's not in the manifest.
000006.019| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_red/skins/base/animations/sru_red_attack3.anm" because it's not in the manifest.
000006.019| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_red/skins/base/animations/sru_red_attack2.anm" because it's not in the manifest.
000006.019| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_red/skins/base/animations/sru_red_idle1_aggro.anm" because it's not in the manifest.
000006.019| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_red/skins/base/animations/sru_red_idle_n2a.anm" because it's not in the manifest.
000006.019| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_red/skins/base/animations/sru_red_idle1_aggro2.anm" because it's not in the manifest.
000006.020| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_red/skins/base/animations/sru_red_spawn.anm" because it's not in the manifest.
000006.020| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_red/skins/base/animations/sru_red_idle_a2n.anm" because it's not in the manifest.
000006.020| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_red/skins/base/animations/sru_red_lookat_r45.anm" because it's not in the manifest.
000006.020| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_red/skins/base/animations/sru_red_lookat_l45.anm" because it's not in the manifest.
000006.020| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_red/skins/base/animations/sru_red_lookat_0.anm" because it's not in the manifest.
000006.062| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "DATA/Characters/SRU_RedMini/SRU_RedMini.bin" because it's not in the manifest.
000006.072| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_redmini/skins/base/animations/sru_redmini_attack1.anm" because it's not in the manifest.
000006.072| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_redmini/skins/base/animations/sru_redmini_run.anm" because it's not in the manifest.
000006.073| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_redmini/skins/base/animations/sru_redmini_death.anm" because it's not in the manifest.
000006.073| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_redmini/skins/base/animations/sru_redmini_spawn.anm" because it's not in the manifest.
000006.073| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_redmini/skins/base/animations/sru_redmini_attack2.anm" because it's not in the manifest.
000006.073| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_redmini/skins/base/animations/sru_redmini_death2.anm" because it's not in the manifest.
000006.073| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_redmini/skins/base/animations/sru_redmini_idle1.anm" because it's not in the manifest.
000006.074| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_redmini/skins/base/animations/sru_redmini_idle1_aggro.anm" because it's not in the manifest.
000006.074| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_redmini/skins/base/animations/sru_redmini_idle1_aggro2.anm" because it's not in the manifest.
000006.074| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_redmini/skins/base/animations/sru_redmini_n2ag.anm" because it's not in the manifest.
000006.074| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_redmini/skins/base/animations/sru_redmini_ag2n.anm" because it's not in the manifest.
000006.090| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "DATA/Characters/SRU_Murkwolf/SRU_Murkwolf.bin" because it's not in the manifest.
000006.092| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000006.092| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000006.092| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000006.092| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000006.102| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_murkwolf/skins/base/animations/sru_murkwolf_idle1.anm" because it's not in the manifest.
000006.102| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_murkwolf/skins/base/animations/sru_murkwolf_attack1.anm" because it's not in the manifest.
000006.102| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_murkwolf/skins/base/animations/sru_murkwolf_attack4.anm" because it's not in the manifest.
000006.103| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_murkwolf/skins/base/animations/sru_murkwolf_death.anm" because it's not in the manifest.
000006.103| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_murkwolf/skins/base/animations/sru_murkwolf_spawn.anm" because it's not in the manifest.
000006.103| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_murkwolf/skins/base/animations/sru_murkwolf_idle_aggro1.anm" because it's not in the manifest.
000006.103| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_murkwolf/skins/base/animations/sru_murkwolf_idle_aggro2.anm" because it's not in the manifest.
000006.103| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_murkwolf/skins/base/animations/sru_murkwolf_idle_n2a.anm" because it's not in the manifest.
000006.104| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_murkwolf/skins/base/animations/sru_murkwolf_idle_a2n.anm" because it's not in the manifest.
000006.104| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_murkwolf/skins/base/animations/sru_murkwolf_run.anm" because it's not in the manifest.
000006.104| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_murkwolf/skins/base/animations/sru_murkwolf_pounce.anm" because it's not in the manifest.
000006.104| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_murkwolf/skins/base/animations/sru_murkwolf_death2.anm" because it's not in the manifest.
000006.104| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_murkwolf/skins/base/animations/sru_murkwolf_idle_aggro3.anm" because it's not in the manifest.
000006.105| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_murkwolf/skins/base/animations/sru_murkwolf_idle2.anm" because it's not in the manifest.
000006.105| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_murkwolf/skins/base/animations/sru_murkwolf_idle3.anm" because it's not in the manifest.
000006.105| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_murkwolf/skins/base/animations/sru_murkwolf_idle4.anm" because it's not in the manifest.
000006.105| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_murkwolf/skins/base/animations/sru_murkwolf_idle5.anm" because it's not in the manifest.
000006.105| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_murkwolf/skins/base/animations/sru_murkwolf_idle_lookat_l45.anm" because it's not in the manifest.
000006.105| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_murkwolf/skins/base/animations/sru_murkwolf_idle_lookat_r45.anm" because it's not in the manifest.
000006.105| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_murkwolf/skins/base/animations/sru_murkwolf_idle_lookat_0.anm" because it's not in the manifest.
000006.120| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "DATA/Characters/sru_spiritwolf/sru_spiritwolf.bin" because it's not in the manifest.
000006.121| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000006.121| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000006.122| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000006.122| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000006.125| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_spiritwolf/skins/base/animations/sru_spiritwolf_idle1.anm" because it's not in the manifest.
000006.125| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_spiritwolf/skins/base/animations/sru_spiritwolf_idle_toaggro.anm" because it's not in the manifest.
000006.125| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_spiritwolf/skins/base/animations/sru_spiritwolf_run_toidle.anm" because it's not in the manifest.
000006.139| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "DATA/Characters/SRU_MurkwolfMini/SRU_MurkwolfMini.bin" because it's not in the manifest.
000006.140| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000006.140| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000006.140| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000006.140| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000006.149| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_murkwolf/skins/base/animations/sru_murkwolf_attack3.anm" because it's not in the manifest.
000006.149| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_murkwolf/skins/base/animations/sru_murkwolf_attack2.anm" because it's not in the manifest.
000006.149| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_murkwolfmini/skins/base/animations/sru_murkwolfmini_death3.anm" because it's not in the manifest.
000006.150| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_murkwolfmini/skins/base/animations/sru_murkwolfmini_idle1.anm" because it's not in the manifest.
000006.150| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_murkwolfmini/skins/base/animations/sru_murkwolfmini_spawn_left.anm" because it's not in the manifest.
000006.150| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_murkwolfmini/skins/base/animations/sru_murkwolfmini_spawn_right.anm" because it's not in the manifest.
000006.150| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_murkwolfmini/skins/base/animations/sru_murkwolfmini_idle1_a2n.anm" because it's not in the manifest.
000006.150| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_murkwolfmini/skins/base/animations/sru_murkwolfmini_idle1_n2a.anm" because it's not in the manifest.
000006.150| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_murkwolfmini/skins/base/animations/sru_murkwolfmini_idle2.anm" because it's not in the manifest.
000006.151| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_murkwolfmini/skins/base/animations/sru_murkwolfmini_idle3.anm" because it's not in the manifest.
000006.151| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_murkwolfmini/skins/base/animations/sru_murkwolfmini_idle4.anm" because it's not in the manifest.
000006.151| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_murkwolfmini/skins/base/animations/sru_murkwolfmini_howl.anm" because it's not in the manifest.
000006.151| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_murkwolfmini/skins/base/animations/sru_murkwolfmini_idle5.anm" because it's not in the manifest.
000006.151| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_murkwolfmini/skins/base/animations/sru_murkwolfmini_idle_aggro2.anm" because it's not in the manifest.
000006.151| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_murkwolfmini/skins/base/animations/sru_murkwolfmini_idle_aggro3.anm" because it's not in the manifest.
000006.152| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_murkwolfmini/skins/base/animations/sru_murkwolfmini_idle_aggro1.anm" because it's not in the manifest.
000006.152| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_murkwolfmini/skins/base/animations/sru_murkwolfmini_idle6.anm" because it's not in the manifest.
000006.152| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_murkwolfmini/skins/base/animations/sru_murkwolfmini_idle7.anm" because it's not in the manifest.
000006.152| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_murkwolfmini/skins/base/animations/sru_murkwolfmini_idle1_lookat_0.anm" because it's not in the manifest.
000006.152| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_murkwolfmini/skins/base/animations/sru_murkwolfmini_idle1_lookat_l45.anm" because it's not in the manifest.
000006.152| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_murkwolfmini/skins/base/animations/sru_murkwolfmini_idle1_lookat_r45.anm" because it's not in the manifest.
000006.156| ERROR| Cant load particle system SRU_MurkwolfMini_idle_a2n_sound.troy
000006.156| ERROR| Failed to preload particle system "SRU_MurkwolfMini_idle_a2n_sound.troy"
000006.160| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "DATA/Characters/SRU_Razorbeak/SRU_Razorbeak.bin" because it's not in the manifest.
000006.174| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_razorbeak/skins/base/animations/sru_razorbeak_idle_aggro1.anm" because it's not in the manifest.
000006.174| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_razorbeak/skins/base/animations/sru_razorbeak_run.anm" because it's not in the manifest.
000006.175| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_razorbeak/skins/base/animations/sru_razorbeak_ranged_attack1.anm" because it's not in the manifest.
000006.175| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_razorbeak/skins/base/animations/sru_razorbeak_death.anm" because it's not in the manifest.
000006.175| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_razorbeak/skins/base/animations/sru_razorbeak_spawn.anm" because it's not in the manifest.
000006.175| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_razorbeak/skins/base/animations/sru_razorbeak_idle_normal1.anm" because it's not in the manifest.
000006.175| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_razorbeak/skins/base/animations/sru_razorbeak_idle_normal2.anm" because it's not in the manifest.
000006.175| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_razorbeak/skins/base/animations/sru_razorbeak_idle_aggro_l45.anm" because it's not in the manifest.
000006.175| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_razorbeak/skins/base/animations/sru_razorbeak_idle_aggro_r45.anm" because it's not in the manifest.
000006.175| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_razorbeak/skins/base/animations/sru_razorbeak_idle_aggro_0.anm" because it's not in the manifest.
000006.176| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_razorbeak/skins/base/animations/sru_razorbeak_idle_aggro_l135.anm" because it's not in the manifest.
000006.176| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_razorbeak/skins/base/animations/sru_razorbeak_idle_aggro_r135.anm" because it's not in the manifest.
000006.176| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_razorbeak/skins/base/animations/sru_razorbeak_a2n.anm" because it's not in the manifest.
000006.176| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_razorbeak/skins/base/animations/sru_razorbeak_n2a.anm" because it's not in the manifest.
000006.176| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_razorbeak/skins/base/animations/sru_razorbeak_idle_aggro3.anm" because it's not in the manifest.
000006.176| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_razorbeak/skins/base/animations/sru_razorbeak_idle_aggro2.anm" because it's not in the manifest.
000006.176| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_razorbeak/skins/base/animations/sru_razorbeak_ranged_attack2.anm" because it's not in the manifest.
000006.176| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_razorbeak/skins/base/animations/sru_razorbeak_ranged_attack3.anm" because it's not in the manifest.
000006.177| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_razorbeak/skins/base/animations/sru_razorbeak_nspawn.anm" because it's not in the manifest.
000006.177| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_razorbeak/skins/base/animations/sru_razorbeak_idle_normal3.anm" because it's not in the manifest.
000006.177| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_razorbeak/skins/base/animations/sru_razorbeak_idle_normal4.anm" because it's not in the manifest.
000006.177| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_razorbeak/skins/base/animations/sru_razorbeak_death2.anm" because it's not in the manifest.
000006.177| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_razorbeak/skins/base/animations/sru_razorbeak_idle_normal5.anm" because it's not in the manifest.
000006.190| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "DATA/Characters/SRU_RazorbeakMini/SRU_RazorbeakMini.bin" because it's not in the manifest.
000006.193| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000006.193| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000006.193| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000006.193| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000006.200| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_razorbeakmini/skins/base/sru_razorbeakmini_run.anm" because it's not in the manifest.
000006.200| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_razorbeakmini/skins/base/sru_razorbeakmini_attack1.anm" because it's not in the manifest.
000006.201| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_razorbeakmini/skins/base/sru_razorbeakmini_attack2.anm" because it's not in the manifest.
000006.201| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_razorbeakmini/skins/base/sru_razorbeakmini_death.anm" because it's not in the manifest.
000006.201| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_razorbeakmini/skins/base/sru_razorbeakmini_spawn2.anm" because it's not in the manifest.
000006.201| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_razorbeakmini/skins/base/sru_razorbeakmini_spawn3.anm" because it's not in the manifest.
000006.201| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_razorbeakmini/skins/base/sru_razorbeakmini_spawn4.anm" because it's not in the manifest.
000006.201| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_razorbeakmini/skins/base/sru_razorbeakmini_idle_normal1.anm" because it's not in the manifest.
000006.202| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_razorbeakmini/skins/base/sru_razorbeakmini_idle_normal2.anm" because it's not in the manifest.
000006.202| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_razorbeakmini/skins/base/sru_razorbeakmini_idle_aggro_0.anm" because it's not in the manifest.
000006.202| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_razorbeakmini/skins/base/sru_razorbeakmini_idle_aggro_l45.anm" because it's not in the manifest.
000006.202| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_razorbeakmini/skins/base/sru_razorbeakmini_idle_aggro_r45.anm" because it's not in the manifest.
000006.202| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_razorbeakmini/skins/base/sru_razorbeakmini_idle_aggro_r135.anm" because it's not in the manifest.
000006.202| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_razorbeakmini/skins/base/sru_razorbeakmini_idle_aggro_l135.anm" because it's not in the manifest.
000006.202| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_razorbeakmini/skins/base/sru_razorbeakmini_idle_aggro1.anm" because it's not in the manifest.
000006.202| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_razorbeakmini/skins/base/sru_razorbeakmini_idle_aggro2.anm" because it's not in the manifest.
000006.202| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_razorbeakmini/skins/base/sru_razorbeakmini_attack3.anm" because it's not in the manifest.
000006.202| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_razorbeakmini/skins/base/sru_razorbeakmini_n2a.anm" because it's not in the manifest.
000006.203| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_razorbeakmini/skins/base/sru_razorbeakmini_a2n.anm" because it's not in the manifest.
000006.203| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_razorbeakmini/skins/base/sru_razorbeakmini_idle_aggro3.anm" because it's not in the manifest.
000006.203| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_razorbeakmini/skins/base/sru_razorbeakmini_death2.anm" because it's not in the manifest.
000006.203| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_razorbeakmini/skins/base/sru_razorbeakmini_nspawn2.anm" because it's not in the manifest.
000006.203| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_razorbeakmini/skins/base/sru_razorbeakmini_nspawn3.anm" because it's not in the manifest.
000006.203| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_razorbeakmini/skins/base/sru_razorbeakmini_nspawn4.anm" because it's not in the manifest.
000006.203| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_razorbeakmini/skins/base/sru_razorbeakmini_idle_normal3.anm" because it's not in the manifest.
000006.209| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "DATA/Characters/SRU_Krug/SRU_Krug.bin" because it's not in the manifest.
000006.213| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000006.213| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000006.214| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000006.214| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000006.214| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000006.214| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000006.221| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/SRU_Krug/skins/base/animations/Krug_idle_aggro.anm" because it's not in the manifest.
000006.221| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/SRU_Krug/skins/base/animations/Krug_run2.anm" because it's not in the manifest.
000006.221| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/SRU_Krug/skins/base/animations/Krug_idle_n2ag.anm" because it's not in the manifest.
000006.221| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/SRU_Krug/skins/base/animations/Krug_idle_normal.anm" because it's not in the manifest.
000006.221| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/SRU_Krug/skins/base/animations/Krug_idle_aggro2.anm" because it's not in the manifest.
000006.222| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/SRU_Krug/skins/base/animations/Krug_idle_aggro3.anm" because it's not in the manifest.
000006.222| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/SRU_Krug/skins/base/animations/Krug_idle_aggro4.anm" because it's not in the manifest.
000006.222| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/SRU_Krug/skins/base/animations/Krug_idle_ag2n.anm" because it's not in the manifest.
000006.222| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/SRU_Krug/skins/base/animations/Krug_attack1.anm" because it's not in the manifest.
000006.222| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/SRU_Krug/skins/base/animations/Krug_attack4.anm" because it's not in the manifest.
000006.222| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/SRU_Krug/skins/base/animations/Krug_death2.anm" because it's not in the manifest.
000006.222| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/SRU_Krug/skins/base/animations/Krug_attack5.anm" because it's not in the manifest.
000006.223| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/SRU_Krug/skins/base/animations/Krug_spawn.anm" because it's not in the manifest.
000006.223| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_krug/skins/base/animations/krug_spawn_nj.anm" because it's not in the manifest.
000006.223| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_krug/skins/base/animations/sru_krug_idle_lookat_l.anm" because it's not in the manifest.
000006.223| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_krug/skins/base/animations/sru_krug_idle_lookat_m.anm" because it's not in the manifest.
000006.223| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_krug/skins/base/animations/sru_krug_idle_lookat_r.anm" because it's not in the manifest.
000006.223| ERROR| Cant load particle system SRU_Krug_FootDust.troy
000006.223| ERROR| Failed to preload particle system "SRU_Krug_FootDust.troy"
000006.223| ERROR| Cant load particle system SRU_Krug_FootDust.troy
000006.223| ERROR| Failed to preload particle system "SRU_Krug_FootDust.troy"
000006.223| ERROR| Cant load particle system SRU_Krug_FootDust.troy
000006.223| ERROR| Failed to preload particle system "SRU_Krug_FootDust.troy"
000006.224| ERROR| Cant load particle system SRU_Krug_FootDust.troy
000006.224| ERROR| Failed to preload particle system "SRU_Krug_FootDust.troy"
000006.224| ERROR| Cant load particle system SRU_Krug_FootDust.troy
000006.224| ERROR| Failed to preload particle system "SRU_Krug_FootDust.troy"
000006.224| ERROR| Cant load particle system SRU_Krug_FootDust.troy
000006.224| ERROR| Failed to preload particle system "SRU_Krug_FootDust.troy"
000006.224| ERROR| Cant load particle system SRU_Krug_FootDust.troy
000006.224| ERROR| Failed to preload particle system "SRU_Krug_FootDust.troy"
000006.224| ERROR| Cant load particle system SRU_Krug_FootDust.troy
000006.224| ERROR| Failed to preload particle system "SRU_Krug_FootDust.troy"
000006.225| ERROR| Cant load particle system SRU_Krug_FootDust.troy
000006.225| ERROR| Failed to preload particle system "SRU_Krug_FootDust.troy"
000006.225| ERROR| Cant load particle system SRU_Krug_FootDust.troy
000006.225| ERROR| Failed to preload particle system "SRU_Krug_FootDust.troy"
000006.253| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "DATA/Characters/SRU_KrugMini/SRU_KrugMini.bin" because it's not in the manifest.
000006.256| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000006.256| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000006.256| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000006.256| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000006.256| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000006.256| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000006.256| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000006.256| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000006.257| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000006.257| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000006.262| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_krugmini/skins/base/animations/krug_mini_idle_n2ag.anm" because it's not in the manifest.
000006.263| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_krug/skins/base/animations/krug_idle_normal.anm" because it's not in the manifest.
000006.263| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/SRU_Krug/skins/base/animations/Krug_death.anm" because it's not in the manifest.
000006.263| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/SRU_Krug/skins/base/animations/Krug_attack2.anm" because it's not in the manifest.
000006.263| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/SRU_Krug/skins/base/animations/Krug_attack3.anm" because it's not in the manifest.
000006.263| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_krugmini/skins/base/animations/krug_spawn_mini.anm" because it's not in the manifest.
000006.263| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_krugmini/skins/base/animations/krug_spawn_mini_nj.anm" because it's not in the manifest.
000006.278| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "DATA/Characters/SRU_Gromp/SRU_Gromp.bin" because it's not in the manifest.
000006.295| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_gromp/skins/base/animations/sru_gromp_idle1.anm" because it's not in the manifest.
000006.295| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_gromp/skins/base/animations/sru_gromp_attack1.anm" because it's not in the manifest.
000006.295| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_gromp/skins/base/animations/sru_gromp_run.anm" because it's not in the manifest.
000006.295| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_gromp/skins/base/animations/sru_gromp_death.anm" because it's not in the manifest.
000006.296| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_gromp/skins/base/animations/sru_gromp_idle2.anm" because it's not in the manifest.
000006.296| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_gromp/skins/base/animations/sru_gromp_idle1_aggro.anm" because it's not in the manifest.
000006.296| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_gromp/skins/base/animations/sru_gromp_idle4.anm" because it's not in the manifest.
000006.296| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_gromp/skins/base/animations/sru_gromp_idle3.anm" because it's not in the manifest.
000006.296| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_gromp/skins/base/animations/sru_gromp_idle1_aggro2.anm" because it's not in the manifest.
000006.297| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_gromp/skins/base/animations/sru_gromp_idle1_aggro3.anm" because it's not in the manifest.
000006.297| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_gromp/skins/base/animations/sru_gromp_idle1_n2a.anm" because it's not in the manifest.
000006.297| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_gromp/skins/base/animations/sru_gromp_idle1_a2n.anm" because it's not in the manifest.
000006.297| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_gromp/skins/base/animations/sru_gromp_spawn.anm" because it's not in the manifest.
000006.297| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_gromp/skins/base/animations/sru_gromp_idle5.anm" because it's not in the manifest.
000006.298| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_gromp/skins/base/animations/sru_gromp_idle6.anm" because it's not in the manifest.
000006.298| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_gromp/skins/base/animations/sru_gromp_idle1_aggro4.anm" because it's not in the manifest.
000006.298| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_gromp/skins/base/animations/sru_gromp_attack1b.anm" because it's not in the manifest.
000006.298| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_gromp/skins/base/animations/sru_gromp_attack1_left.anm" because it's not in the manifest.
000006.298| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_gromp/skins/base/animations/sru_gromp_attack1_right.anm" because it's not in the manifest.
000006.299| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_gromp/skins/base/animations/sru_gromp_attack1b_left.anm" because it's not in the manifest.
000006.299| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_gromp/skins/base/animations/sru_gromp_attack1b_right.anm" because it's not in the manifest.
000006.299| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_gromp/skins/base/animations/sru_gromp_idle1_aggro_lookat_l.anm" because it's not in the manifest.
000006.299| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_gromp/skins/base/animations/sru_gromp_idle1_aggro_lookat_r.anm" because it's not in the manifest.
000006.299| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_gromp/skins/base/animations/sru_gromp_idle1_aggro_lookat_mid.anm" because it's not in the manifest.
000006.319| ERROR| Data Error on expression: always
Data Error message: Missing effect texture <MushroomBuff.dds>
000006.319| ERROR| Data Error on expression: always
Data Error message: Effects could not find skinned mesh file <> or <>.
000006.320| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "DATA/Characters/SRU_Dragon/SRU_Dragon.bin" because it's not in the manifest.
000006.328| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000006.328| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000006.354| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_dragon/skins/base/animations/sru_dragon_idle_hidden.anm" because it's not in the manifest.
000006.354| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_dragon/skins/base/animations/sru_dragon_flying_attack1.anm" because it's not in the manifest.
000006.354| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_dragon/skins/base/animations/sru_dragon_spawn.anm" because it's not in the manifest.
000006.356| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_dragon/skins/base/animations/sru_dragon_flying_spell1.anm" because it's not in the manifest.
000006.356| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_dragon/skins/base/animations/sru_dragon_flying_run.anm" because it's not in the manifest.
000006.357| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_dragon/skins/base/animations/sru_dragon_idle_aggro1.anm" because it's not in the manifest.
000006.357| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_dragon/skins/base/animations/sru_dragon_idle_normal.anm" because it's not in the manifest.
000006.357| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_dragon/skins/base/animations/sru_dragon_death.anm" because it's not in the manifest.
000006.358| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_dragon/skins/base/animations/sru_dragon_takeoff.anm" because it's not in the manifest.
000006.358| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_dragon/skins/base/animations/sru_dragon_idle_normal2.anm" because it's not in the manifest.
000006.358| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_dragon/skins/base/animations/sru_dragon_idle_alert1.anm" because it's not in the manifest.
000006.358| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_dragon/skins/base/animations/sru_dragon_idle_al2ag.anm" because it's not in the manifest.
000006.359| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_dragon/skins/base/animations/sru_dragon_idle_ag2al.anm" because it's not in the manifest.
000006.360| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_dragon/skins/base/animations/sru_dragon_idle_n2al.anm" because it's not in the manifest.
000006.360| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_dragon/skins/base/animations/sru_dragon_idle_al2n.anm" because it's not in the manifest.
000006.360| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_dragon/skins/base/animations/sru_dragon_idle_alert2.anm" because it's not in the manifest.
000006.360| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_dragon/skins/base/animations/sru_dragon_idle_alert3.anm" because it's not in the manifest.
000006.361| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_dragon/skins/base/animations/sru_dragon_landing.anm" because it's not in the manifest.
000006.361| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_dragon/skins/base/animations/sru_dragon_idle_aggro4.anm" because it's not in the manifest.
000006.362| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_dragon/skins/base/animations/sru_dragon_idle_aggro3.anm" because it's not in the manifest.
000006.362| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_dragon/skins/base/animations/sru_dragon_idle_aggro5.anm" because it's not in the manifest.
000006.362| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_dragon/skins/base/animations/sru_dragon_idle_aggro6.anm" because it's not in the manifest.
000006.362| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_dragon/skins/base/animations/sru_dragon_idle_aggro7.anm" because it's not in the manifest.
000006.363| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_dragon/skins/base/animations/sru_dragon_idle_lookat_0.anm" because it's not in the manifest.
000006.363| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_dragon/skins/base/animations/sru_dragon_idle_lookat_l45.anm" because it's not in the manifest.
000006.363| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_dragon/skins/base/animations/sru_dragon_idle_lookat_r45.anm" because it's not in the manifest.
000006.363| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_dragon/skins/base/animations/sru_dragon_idle_ag2n.anm" because it's not in the manifest.
000006.364| ERROR| Cant load particle system SRU_Dragon_Indicator.troy
000006.364| ERROR| Failed to preload particle system "SRU_Dragon_Indicator.troy"
000006.366| ERROR| Cant load particle system SRU_Dragon_Spawn_Pebbles
000006.366| ERROR| Failed to preload particle system "SRU_Dragon_Spawn_Pebbles"
000006.380| ERROR| Cant load particle system Mordekaiser_Base_SRU_Dragon_BA2_mouthfire.troy
000006.380| ERROR| Failed to preload particle system "Mordekaiser_Base_SRU_Dragon_BA2_mouthfire.troy"
000006.386| ERROR| Can not open file <ShyvanaDragonsDescent.dds> *********
000006.386| ERROR| Failed to load ShyvanaDragonsDescent.dds
000006.386| WARN| r3dTexture EX: ShyvanaDragonsDescent.dds - not found. Dummy texture created.
000006.393| ERROR| Data Error on expression: always
Data Error message: Missing effect texture <Gangplank_Base_taunt_flames.dds>
000006.426| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "DATA/Characters/SRU_Baron/SRU_Baron.bin" because it's not in the manifest.
000006.442| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "DATA/Characters/testcuberender/testcuberender.bin" because it's not in the manifest.
000006.456| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/testcuberender/animations/idle1.anm" because it's not in the manifest.
000006.462| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000006.462| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000006.515| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_baron/skins/base/animations/sru_baron_spawn.anm" because it's not in the manifest.
000006.515| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_baron/skins/base/animations/sru_baron_idle1.anm" because it's not in the manifest.
000006.516| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_baron/skins/base/animations/sru_baron_attack2.anm" because it's not in the manifest.
000006.516| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_baron/skins/base/animations/sru_baron_spell2.anm" because it's not in the manifest.
000006.516| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_baron/skins/base/animations/sru_baron_idle2.anm" because it's not in the manifest.
000006.517| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_baron/skins/base/animations/sru_baron_idle1_aggro.anm" because it's not in the manifest.
000006.517| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_baron/skins/base/animations/sru_baron_death.anm" because it's not in the manifest.
000006.518| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_baron/skins/base/animations/sru_baron_idle1_aggrob.anm" because it's not in the manifest.
000006.519| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_baron/skins/base/animations/sru_baron_spell3.anm" because it's not in the manifest.
000006.519| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_baron/skins/base/animations/sru_baron_idle1_a2n.anm" because it's not in the manifest.
000006.519| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_baron/skins/base/animations/sru_baron_idle1_n2a.anm" because it's not in the manifest.
000006.520| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_baron/skins/base/animations/sru_baron_spell2_channel.anm" because it's not in the manifest.
000006.520| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_baron/skins/base/animations/sru_baron_spell2_windup.anm" because it's not in the manifest.
000006.520| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_baron/skins/base/animations/sru_baron_spell3_channel.anm" because it's not in the manifest.
000006.520| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_baron/skins/base/animations/sru_baron_spell3_windup.anm" because it's not in the manifest.
000006.521| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_baron/skins/base/animations/sru_baron_spell5.anm" because it's not in the manifest.
000006.521| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_baron/skins/base/animations/sru_baron_spell5_channel.anm" because it's not in the manifest.
000006.521| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_baron/skins/base/animations/sru_baron_spell5_windup.anm" because it's not in the manifest.
000006.521| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_baron/skins/base/animations/sru_baron_attack1_melee.anm" because it's not in the manifest.
000006.522| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_baron/skins/base/animations/sru_baron_attack1_melee_far_left.anm" because it's not in the manifest.
000006.522| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_baron/skins/base/animations/sru_baron_attack1_melee_left.anm" because it's not in the manifest.
000006.523| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_baron/skins/base/animations/sru_baron_attack1_melee_right.anm" because it's not in the manifest.
000006.523| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_baron/skins/base/animations/sru_baron_attack1_melee_far_right.anm" because it's not in the manifest.
000006.523| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_baron/skins/base/animations/sru_baron_attack1.anm" because it's not in the manifest.
000006.524| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_baron/skins/base/animations/sru_baron_attack1_far_left.anm" because it's not in the manifest.
000006.524| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_baron/skins/base/animations/sru_baron_attack1_far_right.anm" because it's not in the manifest.
000006.524| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_baron/skins/base/animations/sru_baron_attack1_right.anm" because it's not in the manifest.
000006.525| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_baron/skins/base/animations/sru_baron_attack1_left.anm" because it's not in the manifest.
000006.525| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_baron/skins/base/animations/sru_baron_spell6_windup.anm" because it's not in the manifest.
000006.525| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_baron/skins/base/animations/sru_baron_spell6.anm" because it's not in the manifest.
000006.526| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_baron/skins/base/animations/sru_baron_idle1_aggroc.anm" because it's not in the manifest.
000006.526| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_baron/skins/base/animations/sru_baron_idle1_aggrod.anm" because it's not in the manifest.
000006.526| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_baron/skins/base/animations/sru_baron_idle1_aggroe.anm" because it's not in the manifest.
000006.527| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_baron/skins/base/animations/sru_baron_idle1_aggrof.anm" because it's not in the manifest.
000006.527| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_baron/skins/base/animations/sru_baron_idle1_aggrog.anm" because it's not in the manifest.
000006.527| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_baron/skins/base/animations/sru_baron_attack1b.anm" because it's not in the manifest.
000006.528| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_baron/skins/base/animations/sru_baron_idle1_aggroh.anm" because it's not in the manifest.
000006.528| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_baron/skins/base/animations/sru_baron_hidden.anm" because it's not in the manifest.
000006.528| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_baron/skins/base/animations/sru_baron_idle1_aggro_l45.anm" because it's not in the manifest.
000006.528| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_baron/skins/base/animations/sru_baron_idle1_aggro_r45.anm" because it's not in the manifest.
000006.528| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_baron/skins/base/animations/sru_baron_idle1_aggro_0.anm" because it's not in the manifest.
000006.528| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_baron/skins/base/animations/sru_baron_spell2_fl.anm" because it's not in the manifest.
000006.529| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_baron/skins/base/animations/sru_baron_spell2_fl_channel.anm" because it's not in the manifest.
000006.529| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_baron/skins/base/animations/sru_baron_spell2_fl_windup.anm" because it's not in the manifest.
000006.529| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_baron/skins/base/animations/sru_baron_spell2_fr.anm" because it's not in the manifest.
000006.529| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_baron/skins/base/animations/sru_baron_spell2_fr_channel.anm" because it's not in the manifest.
000006.530| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_baron/skins/base/animations/sru_baron_spell2_fr_windup.anm" because it's not in the manifest.
000006.530| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_baron/skins/base/animations/sru_baron_spell2_l.anm" because it's not in the manifest.
000006.530| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_baron/skins/base/animations/sru_baron_spell2_l_channel.anm" because it's not in the manifest.
000006.530| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_baron/skins/base/animations/sru_baron_spell2_l_windup.anm" because it's not in the manifest.
000006.530| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_baron/skins/base/animations/sru_baron_spell2_r.anm" because it's not in the manifest.
000006.531| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_baron/skins/base/animations/sru_baron_spell2_r_channel.anm" because it's not in the manifest.
000006.531| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_baron/skins/base/animations/sru_baron_spell2_r_windup.anm" because it's not in the manifest.
000006.531| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_baron/skins/base/animations/sru_baron_spell3_l.anm" because it's not in the manifest.
000006.532| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_baron/skins/base/animations/sru_baron_spell3_l_channel.anm" because it's not in the manifest.
000006.532| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_baron/skins/base/animations/sru_baron_spell3_l_windup.anm" because it's not in the manifest.
000006.532| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_baron/skins/base/animations/sru_baron_spell3_r.anm" because it's not in the manifest.
000006.532| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_baron/skins/base/animations/sru_baron_spell3_r_channel.anm" because it's not in the manifest.
000006.533| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_baron/skins/base/animations/sru_baron_spell3_r_windup.anm" because it's not in the manifest.
000006.533| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_baron/skins/base/animations/sru_baron_spawnout.anm" because it's not in the manifest.
000006.533| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_baron/skins/base/animations/sru_baron_spell3_fl.anm" because it's not in the manifest.
000006.533| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_baron/skins/base/animations/sru_baron_spell3_fl_channel.anm" because it's not in the manifest.
000006.533| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_baron/skins/base/animations/sru_baron_spell3_fl_windup.anm" because it's not in the manifest.
000006.534| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_baron/skins/base/animations/sru_baron_spell3_fr.anm" because it's not in the manifest.
000006.534| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_baron/skins/base/animations/sru_baron_spell3_fr_channel.anm" because it's not in the manifest.
000006.534| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_baron/skins/base/animations/sru_baron_spell3_fr_windup.anm" because it's not in the manifest.
000006.543| ERROR| Cant load particle system SRU_Baron_BaronTail_Cast_sound.troy
000006.543| ERROR| Failed to preload particle system "SRU_Baron_BaronTail_Cast_sound.troy"
000006.561| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000006.561| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000006.561| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000006.561| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000006.562| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000006.562| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000006.562| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000006.562| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000006.569| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000006.569| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000006.569| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000006.569| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000006.581| ERROR| Cant load particle system s5_global_gold.troy
000006.581| ERROR| Failed to preload particle system "s5_global_gold.troy"
000006.582| ERROR| Cant load particle system s5_global_gold.troy
000006.582| ERROR| Failed to preload particle system "s5_global_gold.troy"
000006.606| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "DATA/Characters/SRU_BaronSpawn/SRU_BaronSpawn.bin" because it's not in the manifest.
000006.609| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000006.609| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000006.609| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000006.609| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000006.623| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000006.623| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000006.640| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_baronspawn/skins/base/animations/sru_baronspawnl_hidden.anm" because it's not in the manifest.
000006.640| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_baronspawn/skins/base/animations/sru_baronspawnl_spawn.anm" because it's not in the manifest.
000006.657| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000006.657| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000006.663| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sruap_magecrystal/skins/base/animations/sruap_magecrystal_idle1.anm" because it's not in the manifest.
000006.663| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sruap_magecrystal/skins/base/animations/sruap_magecrystal_spawn.anm" because it's not in the manifest.
000006.667| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "DATA/Characters/SRUAP_Flag/SRUAP_Flag.bin" because it's not in the manifest.
000006.670| ERROR| Can not open file <TempChar_Square.dds> *********
000006.670| ERROR| Failed to load TempChar_Square.dds
000006.670| WARN| r3dTexture EX: TempChar_Square.dds - not found. Dummy texture created.
000006.670| ERROR| Can not open file <TempChar_Circle.dds> *********
000006.670| ERROR| Failed to load TempChar_Circle.dds
000006.670| WARN| r3dTexture EX: TempChar_Circle.dds - not found. Dummy texture created.
000006.670| ERROR| Can not open file <TemplateFighterPassive.dds> *********
000006.670| ERROR| Failed to load TemplateFighterPassive.dds
000006.670| WARN| r3dTexture EX: TemplateFighterPassive.dds - not found. Dummy texture created.
000006.670| ERROR| Failed to load spell ini or script: "TemplateFighterQ"
000006.670| ERROR| Failed to load spell ini or script: "TemplateFighterW"
000006.670| ERROR| Failed to load spell ini or script: "TemplateFighterE"
000006.670| ERROR| Failed to load spell ini or script: "TemplateFighterR"
000006.671| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sruap_flag/skins/base/animations/sruap_flag_idle1.anm" because it's not in the manifest.
000006.673| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "DATA/Characters/SRU_Snail/SRU_Snail.bin" because it's not in the manifest.
000006.676| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_snail/skins/base/animations/sru_snail_idle1.anm" because it's not in the manifest.
000006.676| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_snail/skins/base/animations/sru_snail_run.anm" because it's not in the manifest.
000006.676| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_snail/skins/base/animations/sru_snail_idle.anm" because it's not in the manifest.
000006.676| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_snail/skins/base/animations/sru_snail_hide.anm" because it's not in the manifest.
000006.676| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_snail/skins/base/animations/sru_snail_baserun.anm" because it's not in the manifest.
000006.677| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_snail/skins/base/animations/sru_snail_destroy.anm" because it's not in the manifest.
000006.679| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "DATA/Characters/SRU_Dragon_prop/SRU_Dragon_prop.bin" because it's not in the manifest.
000006.684| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_dragon_prop/skins/base/animations/sru_dragon_prop_holding.anm" because it's not in the manifest.
000006.684| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_dragon_prop/skins/base/animations/sru_dragon_north_vista_fly.anm" because it's not in the manifest.
000006.685| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_dragon_prop/skins/base/animations/sru_dragon_south_base_fly.anm" because it's not in the manifest.
000006.687| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "DATA/Characters/SRU_Bird/SRU_Bird.bin" because it's not in the manifest.
000006.689| ERROR| Can not open file <ChaosTurretWorm_Square.dds> *********
000006.689| ERROR| Failed to load ChaosTurretWorm_Square.dds
000006.689| WARN| r3dTexture EX: ChaosTurretWorm_Square.dds - not found. Dummy texture created.
000006.689| ERROR| Can not open file <ChaosTurretWorm_Circle.dds> *********
000006.689| ERROR| Failed to load ChaosTurretWorm_Circle.dds
000006.689| WARN| r3dTexture EX: ChaosTurretWorm_Circle.dds - not found. Dummy texture created.
000006.689| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000006.689| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000006.689| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000006.689| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000006.690| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000006.690| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000006.691| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_bird/skins/base/animations/sru_bird_spawn.anm" because it's not in the manifest.
000006.691| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_bird/skins/base/animations/sru_bird_idle_tree1.anm" because it's not in the manifest.
000006.691| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_bird/skins/base/animations/sru_bird_death.anm" because it's not in the manifest.
000006.691| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_bird/skins/base/animations/sru_bird_idle_tree2.anm" because it's not in the manifest.
000006.692| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_bird/skins/base/animations/sru_bird_idle_destroy.anm" because it's not in the manifest.
000006.693| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "DATA/Characters/SRU_Antlermouse/SRU_Antlermouse.bin" because it's not in the manifest.
000006.695| ERROR| Failed to load spell ini or script: "TemplateFighterQ"
000006.695| ERROR| Failed to load spell ini or script: "TemplateFighterW"
000006.695| ERROR| Failed to load spell ini or script: "TemplateFighterE"
000006.695| ERROR| Failed to load spell ini or script: "TemplateFighterR"
000006.698| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_antlermouse/skins/base/animations/sru_antlermouse_idle1.anm" because it's not in the manifest.
000006.699| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_antlermouse/skins/base/animations/sru_antlermouse_run_right.anm" because it's not in the manifest.
000006.699| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_antlermouse/skins/base/animations/sru_antlermouse_run_left.anm" because it's not in the manifest.
000006.699| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_antlermouse/skins/base/animations/sru_antlermouse_run.anm" because it's not in the manifest.
000006.699| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_antlermouse/skins/base/animations/sru_antlermouse_run_fwdright.anm" because it's not in the manifest.
000006.700| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_antlermouse/skins/base/animations/sru_antlermouse_idlewait.anm" because it's not in the manifest.
000006.700| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_antlermouse/skins/base/animations/sru_antlermouse_hiding.anm" because it's not in the manifest.
000006.700| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_antlermouse/skins/base/animations/sru_antlermouse_peeking.anm" because it's not in the manifest.
000006.700| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_antlermouse/skins/base/animations/sru_antlermouse_explore.anm" because it's not in the manifest.
000006.701| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_antlermouse/skins/base/animations/sru_antlermouse_peekinghold.anm" because it's not in the manifest.
000006.701| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_antlermouse/skins/base/animations/sru_antlermouse_idletopeek_trans.anm" because it's not in the manifest.
000006.701| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_antlermouse/skins/base/animations/sru_antlermouse_baserunhide.anm" because it's not in the manifest.
000006.701| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_antlermouse/skins/base/animations/sru_antlermouse_baserunhide2.anm" because it's not in the manifest.
000006.701| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_antlermouse/skins/base/animations/sru_antlermouse_midlanerun.anm" because it's not in the manifest.
000006.702| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_antlermouse/skins/base/animations/sru_antlermouse_destroy.anm" because it's not in the manifest.
000006.702| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_antlermouse/skins/base/animations/sru_antlermouse_explore_hold.anm" because it's not in the manifest.
000006.703| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "DATA/Characters/SRU_Gromp_prop/SRU_Gromp_prop.bin" because it's not in the manifest.
000006.706| ERROR| Failed to load spell ini or script: "TemplateFighterQ"
000006.706| ERROR| Failed to load spell ini or script: "TemplateFighterW"
000006.706| ERROR| Failed to load spell ini or script: "TemplateFighterE"
000006.706| ERROR| Failed to load spell ini or script: "TemplateFighterR"
000006.708| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_gromp_prop/skins/base/animations/sru_gromp_prop_run.anm" because it's not in the manifest.
000006.708| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_gromp_prop/skins/base/animations/sru_gromp_prop_idle1.anm" because it's not in the manifest.
000006.708| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_gromp_prop/skins/base/animations/sru_gromp_prop_idle2.anm" because it's not in the manifest.
000006.708| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_gromp_prop/skins/base/animations/sru_gromp_prop_explore.anm" because it's not in the manifest.
000006.709| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_gromp_prop/skins/base/animations/sru_gromp_prop_baserun.anm" because it's not in the manifest.
000006.709| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_gromp_prop/skins/base/animations/sru_gromp_prop_destroy.anm" because it's not in the manifest.
000006.710| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "DATA/Characters/SRU_Lizard/SRU_Lizard.bin" because it's not in the manifest.
000006.712| ERROR| Failed to load spell ini or script: "TemplateFighterQ"
000006.712| ERROR| Failed to load spell ini or script: "TemplateFighterW"
000006.712| ERROR| Failed to load spell ini or script: "TemplateFighterE"
000006.712| ERROR| Failed to load spell ini or script: "TemplateFighterR"
000006.714| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_lizard/skins/base/animations/sru_lizard_idle2.anm" because it's not in the manifest.
000006.714| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_lizard/skins/base/animations/sru_lizard_idle1.anm" because it's not in the manifest.
000006.714| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_lizard/skins/base/animations/sru_lizard_run.anm" because it's not in the manifest.
000006.714| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_lizard/skins/base/animations/sru_lizard_run_hide.anm" because it's not in the manifest.
000006.714| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_lizard/skins/base/animations/sru_lizard_run_left.anm" because it's not in the manifest.
000006.714| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_lizard/skins/base/animations/sru_lizard_run_right.anm" because it's not in the manifest.
000006.714| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_lizard/skins/base/animations/sru_lizard_baserun.anm" because it's not in the manifest.
000006.714| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_lizard/skins/base/animations/sru_lizard_basehide.anm" because it's not in the manifest.
000006.715| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_lizard/skins/base/animations/sru_lizard_destroy.anm" because it's not in the manifest.
000006.716| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "DATA/Characters/SRU_StoreKeeperNorth/SRU_StoreKeeperNorth.bin" because it's not in the manifest.
000006.729| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_storekeepernorth/skins/base/animations/sru_storekeepernorth_idle3.anm" because it's not in the manifest.
000006.729| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_storekeepernorth/skins/base/animations/sru_storekeepernorth_idle2.anm" because it's not in the manifest.
000006.730| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_storekeepernorth/skins/base/animations/sru_storekeepernorth_spawn.anm" because it's not in the manifest.
000006.730| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_storekeepernorth/skins/base/animations/sru_storekeepernorth_idle4.anm" because it's not in the manifest.
000006.730| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_storekeepernorth/skins/base/animations/sru_storekeepernorth_idle5.anm" because it's not in the manifest.
000006.731| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_storekeepernorth/skins/base/animations/sru_storekeepernorth_idle6.anm" because it's not in the manifest.
000006.731| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_storekeepernorth/skins/base/animations/sru_storekeepernorth_idle1.anm" because it's not in the manifest.
000006.731| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_storekeepernorth/skins/base/animations/sru_storekeepernorth_spawn2.anm" because it's not in the manifest.
000006.735| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "DATA/Characters/SRU_StoreKeeperSouth/SRU_StoreKeeperSouth.bin" because it's not in the manifest.
000006.758| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_storekeepersouth/skins/base/animations/sru_storekeeper_idle_normal1.anm" because it's not in the manifest.
000006.759| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_storekeepersouth/skins/base/animations/sru_storekeeper_idle_spawn.anm" because it's not in the manifest.
000006.760| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_storekeepersouth/skins/base/animations/sru_storekeeper_idle_spawn_hold.anm" because it's not in the manifest.
000006.765| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "DATA/Characters/Sru_Crab/Sru_Crab.bin" because it's not in the manifest.
000006.771| ERROR| Can not open file <Shen_ShadowDash.dds> *********
000006.771| ERROR| Failed to load Shen_ShadowDash.dds
000006.771| WARN| r3dTexture EX: Shen_ShadowDash.dds - not found. Dummy texture created.
000006.772| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000006.772| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000006.772| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000006.772| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000006.772| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000006.772| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000006.777| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_crab/skins/base/animations/sru_crab_run2.anm" because it's not in the manifest.
000006.778| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_crab/skins/base/animations/sru_crab_flee.anm" because it's not in the manifest.
000006.778| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_crab/skins/base/animations/sru_crab_stun.anm" because it's not in the manifest.
000006.778| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_crab/skins/base/animations/sru_crab_idle1.anm" because it's not in the manifest.
000006.778| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_crab/skins/base/animations/sru_crab_turn_left_45.anm" because it's not in the manifest.
000006.778| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_crab/skins/base/animations/sru_crab_turn_right_45.anm" because it's not in the manifest.
000006.778| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_crab/skins/base/animations/sru_crab_spawn.anm" because it's not in the manifest.
000006.778| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_crab/skins/base/animations/sru_crab_dash.anm" because it's not in the manifest.
000006.779| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_crab/skins/base/animations/sru_crab_dash_out.anm" because it's not in the manifest.
000006.779| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_crab/skins/base/animations/sru_crab_turn_right_180.anm" because it's not in the manifest.
000006.779| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_crab/skins/base/animations/sru_crab_turn_left_180.anm" because it's not in the manifest.
000006.779| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_crab/skins/base/animations/sru_crab_idle_torun.anm" because it's not in the manifest.
000006.779| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_crab/skins/base/animations/sru_crab_run_toflee.anm" because it's not in the manifest.
000006.779| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_crab/skins/base/animations/sru_crab_flee_torun.anm" because it's not in the manifest.
000006.779| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_crab/skins/base/animations/sru_crab_hide.anm" because it's not in the manifest.
000006.779| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_crab/skins/base/animations/sru_crab_flee2.anm" because it's not in the manifest.
000006.779| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_crab/skins/base/animations/sru_crab_dance.anm" because it's not in the manifest.
000006.783| ERROR| Cant load particle system global_lifesteal.troy
000006.783| ERROR| Failed to preload particle system "global_lifesteal.troy"
000006.785| ERROR| Cant load particle system global_lifesteal.troy
000006.785| ERROR| Failed to preload particle system "global_lifesteal.troy"
000006.791| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "DATA/Characters/sru_crabward/sru_crabward.bin" because it's not in the manifest.
000006.794| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000006.794| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000006.798| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_crab/skins/base/animations/sru_crab_ward_idle.anm" because it's not in the manifest.
000006.798| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_crab/skins/base/animations/sru_crab_ward_run.anm" because it's not in the manifest.
000006.798| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_crab/skins/base/animations/sru_crab_ward_tohide.anm" because it's not in the manifest.
000006.798| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_crab/skins/base/animations/sru_crab_ward_spawn.anm" because it's not in the manifest.
000006.798| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_crab/skins/base/animations/sru_crab_ward_hide.anm" because it's not in the manifest.
000006.798| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_crab/skins/base/animations/sru_crab_ward_run_toground.anm" because it's not in the manifest.
000006.799| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_crab/skins/base/animations/sru_crab_burrow.anm" because it's not in the manifest.
000006.827| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "DATA/Characters/SRU_RiftHerald/SRU_RiftHerald.bin" because it's not in the manifest.
000006.827| WARN| In Skin: DATA/Characters/SRU_RiftHerald/SRU_RiftHerald.ini, Could not find Particle1
000006.828| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000006.828| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000006.828| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000006.828| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000006.829| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000006.829| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000006.837| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_riftherald/skins/base/animations/sru_blue_attack1.anm" because it's not in the manifest.
000006.838| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_riftherald/skins/base/animations/sru_blue_attack2.anm" because it's not in the manifest.
000006.838| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_riftherald/skins/base/animations/sru_blue_spawn.anm" because it's not in the manifest.
000006.838| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_riftherald/skins/base/animations/sru_blue_attack3.anm" because it's not in the manifest.
000006.838| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_riftherald/skins/base/animations/sru_blue_run.anm" because it's not in the manifest.
000006.838| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sru_riftherald/skins/base/animations/sru_blue_death.anm" because it's not in the manifest.
000006.864| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "DATA/Characters/sru_riftherald_relic/sru_riftherald_relic.bin" because it's not in the manifest.
000006.879| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/SRU_RiftHerald_Relic/animations/idle1.anm" because it's not in the manifest.
000006.882| ERROR| Data Error on expression: always
Data Error message: Missing effect texture <SRU_RiftHerald_Relic_Beacon_Center_Mult.dds>
000006.887| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000006.887| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000006.887| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000006.887| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000006.888| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000006.888| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000006.888| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000006.888| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000006.891| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000006.891| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000006.891| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000006.891| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000006.925| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "DATA/Characters/SRUAP_OrderInhibitor_Rubble/SRUAP_OrderInhibitor_Rubble.bin" because it's not in the manifest.
000006.933| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sruap_orderinhibitor_rubble/skins/base/animations/sruap_orderinhibitor_rubble_idle1.anm" because it's not in the manifest.
000006.936| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "DATA/Characters/SRUAP_Turret_Chaos1_Rubble/SRUAP_Turret_Chaos1_Rubble.bin" because it's not in the manifest.
000006.940| ERROR| Failed to load spell ini or script: "TemplateFighterQ"
000006.940| ERROR| Failed to load spell ini or script: "TemplateFighterW"
000006.940| ERROR| Failed to load spell ini or script: "TemplateFighterE"
000006.940| ERROR| Failed to load spell ini or script: "TemplateFighterR"
000006.945| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sruap_turret_chaos1_rubble/skins/base/animations/sruap_chaosturret1_rubble_idle1.anm" because it's not in the manifest.
000006.949| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "DATA/Characters/SRUAP_ChaosInhibitor_Rubble/SRUAP_ChaosInhibitor_Rubble.bin" because it's not in the manifest.
000006.962| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sruap_chaosinhibitor_rubble/skins/base/animations/sruap_chaosinhibitor_rubble_idle1.anm" because it's not in the manifest.
000006.966| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "DATA/Characters/SRUAP_Turret_Order1_Rubble/SRUAP_Turret_Order1_Rubble.bin" because it's not in the manifest.
000006.969| ERROR| Failed to load spell ini or script: "TemplateFighterQ"
000006.969| ERROR| Failed to load spell ini or script: "TemplateFighterW"
000006.969| ERROR| Failed to load spell ini or script: "TemplateFighterE"
000006.969| ERROR| Failed to load spell ini or script: "TemplateFighterR"
000006.970| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sruap_turret_order1_rubble/skins/base/animations/sruap_turret_order1_rubble_idle1.anm" because it's not in the manifest.
000006.981| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "DATA/Characters/Sruap_Ordernexus_Rubble/Sruap_Ordernexus_Rubble.bin" because it's not in the manifest.
000006.983| ERROR| Failed to load spell ini or script: "TemplateFighterQ"
000006.983| ERROR| Failed to load spell ini or script: "TemplateFighterW"
000006.983| ERROR| Failed to load spell ini or script: "TemplateFighterE"
000006.983| ERROR| Failed to load spell ini or script: "TemplateFighterR"
000006.989| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sruap_ordernexus_rubble/skins/base/animations/sruap_ordernexus_rubble_idle1.anm" because it's not in the manifest.
000006.994| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "DATA/Characters/DestroyedTower/DestroyedTower.bin" because it's not in the manifest.
000006.999| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/destroyedtower/animations/destroyedtower_idle.anm" because it's not in the manifest.
000007.006| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "DATA/Characters/TestCube/TestCube.bin" because it's not in the manifest.
000007.021| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/testcube/animations/idle1.anm" because it's not in the manifest.
000007.024| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "DATA/Characters/Sruap_Chaosnexus_Rubble/Sruap_Chaosnexus_Rubble.bin" because it's not in the manifest.
000007.026| ERROR| Failed to load spell ini or script: "TemplateFighterQ"
000007.026| ERROR| Failed to load spell ini or script: "TemplateFighterW"
000007.026| ERROR| Failed to load spell ini or script: "TemplateFighterE"
000007.027| ERROR| Failed to load spell ini or script: "TemplateFighterR"
000007.031| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sruap_chaosnexus_rubble/skins/base/animations/sruap_chaosnexus_rubble_idle1.anm" because it's not in the manifest.
000007.212| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "DATA/Loadouts/FinisherParticles.bin" because it's not in the manifest.
000007.276| ALWAYS| Begin Game Object Update
000007.281| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "DATA/Characters/brush_sru_c/brush_sru_c.bin" because it's not in the manifest.
000007.285| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/Brush_SRU_A/skins/base/animations/wall_of_grass_back.anm" because it's not in the manifest.
000007.285| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/Brush_SRU_A/skins/base/animations/wall_of_grass_front.anm" because it's not in the manifest.
000007.285| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/Brush_SRU_A/skins/base/animations/wall_of_grass_idle1.anm" because it's not in the manifest.
000007.285| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/Brush_SRU_A/skins/base/animations/wall_of_grass_left.anm" because it's not in the manifest.
000007.285| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/Brush_SRU_A/skins/base/animations/wall_of_grass_right.anm" because it's not in the manifest.
000007.286| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "DATA/Characters/brush_sru_e/brush_sru_e.bin" because it's not in the manifest.
000007.298| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "DATA/Characters/brush_sru_f/brush_sru_f.bin" because it's not in the manifest.
000007.301| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "DATA/Characters/brush_sru_g/brush_sru_g.bin" because it's not in the manifest.
000007.306| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "DATA/Characters/brush_sru_b/brush_sru_b.bin" because it's not in the manifest.
000007.310| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "DATA/Characters/brush_sru_d/brush_sru_d.bin" because it's not in the manifest.
000007.396| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "DATA/Characters/brush_sru_h/brush_sru_h.bin" because it's not in the manifest.
000007.402| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "DATA/Characters/brush_sru_i/brush_sru_i.bin" because it's not in the manifest.
000007.410| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "DATA/Characters/ChaosBarracks_Wizard/ChaosBarracks_Wizard.bin" because it's not in the manifest.
000007.417| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "DATA/Characters/OrderBarracks_Wizard/OrderBarracks_Wizard.bin" because it's not in the manifest.
000007.436| ALWAYS| End Game Object Update
000007.514| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000007.514| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000007.530| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sruap_turret_order5/skins/base/animations/sruap_orderturret5_idle1.anm" because it's not in the manifest.
000007.530| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sruap_turret_order5/skins/base/animations/sruap_orderturret5_spawn60.anm" because it's not in the manifest.
000007.531| ERROR| Cant load particle system SRU_SOG_Turret_spawn_shield_drop_sound.troy
000007.531| ERROR| Failed to preload particle system "SRU_SOG_Turret_spawn_shield_drop_sound.troy"
000007.531| ERROR| Cant load particle system SRU_SOG_Turret_spawn_shield_lock_sound.troy
000007.531| ERROR| Failed to preload particle system "SRU_SOG_Turret_spawn_shield_lock_sound.troy"
000007.531| ERROR| Cant load particle system SRU_SOG_Turret_spawn_stafflock_helmetlock_sound.troy
000007.531| ERROR| Failed to preload particle system "SRU_SOG_Turret_spawn_stafflock_helmetlock_sound.troy"
000007.531| ERROR| Cant load particle system SRU_SOG_Turret_spawn_shield_dropgears_sound.troy
000007.531| ERROR| Failed to preload particle system "SRU_SOG_Turret_spawn_shield_dropgears_sound.troy"
000007.531| ERROR| Cant load particle system SRU_SOG_Turret_spawn_aura_magic_sound.troy
000007.531| ERROR| Failed to preload particle system "SRU_SOG_Turret_spawn_aura_magic_sound.troy"
000007.531| ERROR| Cant load particle system SRU_SOG_Turret_spawn_staff_sound.troy
000007.531| ERROR| Failed to preload particle system "SRU_SOG_Turret_spawn_staff_sound.troy"
000007.569| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "Global/Items/Items.bin" because it's not in the manifest.
000007.592| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000007.592| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000007.593| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000007.593| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000007.595| ERROR| Cant load particle system PowerBall_tar.troy
000007.595| ERROR| Failed to preload particle system "PowerBall_tar.troy"
000007.595| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000007.595| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000007.602| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000007.602| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000007.602| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000007.602| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000007.617| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000007.617| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000007.617| ERROR| Cant load particle system TristannaBasicAttack4_mis.troy
000007.617| ERROR| Failed to preload particle system "TristannaBasicAttack4_mis.troy"
000007.619| ERROR| Can not open file <3718_Icon_of_the_Oaken_Heart.dds> *********
000007.619| ERROR| Failed to load 3718_Icon_of_the_Oaken_Heart.dds
000007.619| WARN| r3dTexture EX: 3718_Icon_of_the_Oaken_Heart.dds - not found. Dummy texture created.
000007.626| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000007.626| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000007.626| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000007.626| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000007.626| ERROR| Can not open file <FallenAngel_BlackShield.dds> *********
000007.626| ERROR| Failed to load FallenAngel_BlackShield.dds
000007.626| WARN| r3dTexture EX: FallenAngel_BlackShield.dds - not found. Dummy texture created.
000007.627| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000007.627| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000007.633| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000007.633| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000007.633| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000007.633| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000007.633| ERROR| Can not open file <055_Borses_Staff_of_Apocalypse.tga> *********
000007.633| ERROR| Failed to load 055_Borses_Staff_of_Apocalypse.tga
000007.633| WARN| r3dTexture EX: 055_Borses_Staff_of_Apocalypse.tga - not found. Dummy texture created.
000007.648| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000007.648| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000007.648| ERROR| Cant load particle system TristannaBasicAttack4_mis.troy
000007.648| ERROR| Failed to preload particle system "TristannaBasicAttack4_mis.troy"
000007.649| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "DATA/Characters/sightward/sightward.bin" because it's not in the manifest.
000007.653| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sightward/skins/base/animations/sightward_base_idle.anm" because it's not in the manifest.
000007.653| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sightward/skins/base/animations/sightward_base_idle_death.anm" because it's not in the manifest.
000007.653| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/sightward/skins/base/animations/sightward_base_idlein.anm" because it's not in the manifest.
000007.657| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "DATA/Characters/s5test_wardcorpse/s5test_wardcorpse.bin" because it's not in the manifest.
000007.659| ERROR| Can not open file <Thresh_Square.dds> *********
000007.659| ERROR| Failed to load Thresh_Square.dds
000007.660| WARN| r3dTexture EX: Thresh_Square.dds - not found. Dummy texture created.
000007.660| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/s5test_wardcorpse/skins/base/animations/ward_corpse_idle.anm" because it's not in the manifest.
000007.683| ERROR| Can not open file <Summoner_fortify.dds> *********
000007.683| ERROR| Failed to load Summoner_fortify.dds
000007.683| WARN| r3dTexture EX: Summoner_fortify.dds - not found. Dummy texture created.
000007.683| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000007.683| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000007.683| ERROR| Cant load particle system TristannaBasicAttack4_mis.troy
000007.683| ERROR| Failed to preload particle system "TristannaBasicAttack4_mis.troy"
000007.690| ERROR| Cant load particle system TrailMagic1.troy
000007.690| ERROR| Failed to preload particle system "TrailMagic1.troy"
000007.695| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000007.695| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000007.695| ERROR| Cant load particle system TrailMagic1.troy
000007.695| ERROR| Failed to preload particle system "TrailMagic1.troy"
000007.721| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000007.721| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000007.721| ERROR| Cant load particle system TristannaBasicAttack4_mis.troy
000007.721| ERROR| Failed to preload particle system "TristannaBasicAttack4_mis.troy"
000007.722| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000007.722| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000007.722| ERROR| Cant load particle system TrailMagic1.troy
000007.722| ERROR| Failed to preload particle system "TrailMagic1.troy"
000007.722| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000007.722| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000007.722| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000007.722| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000007.725| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000007.725| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000007.725| ERROR| Cant load particle system TrailMagic1.troy
000007.725| ERROR| Failed to preload particle system "TrailMagic1.troy"
000007.733| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000007.733| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000007.741| ERROR| Cant load particle system FerosciousHowl_cas3.troy
000007.741| ERROR| Failed to preload particle system "FerosciousHowl_cas3.troy"
000007.741| ERROR| Cant load particle system Capture_cas.troy
000007.741| ERROR| Failed to preload particle system "Capture_cas.troy"
000007.743| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000007.743| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000007.743| ERROR| Cant load particle system TrailMagic1.troy
000007.743| ERROR| Failed to preload particle system "TrailMagic1.troy"
000007.744| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000007.744| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000007.744| ERROR| Cant load particle system AnnieBasicAttack_mis.troy
000007.744| ERROR| Failed to preload particle system "AnnieBasicAttack_mis.troy"
000007.744| ERROR| Cant load particle system TrailMagic1.troy
000007.744| ERROR| Failed to preload particle system "TrailMagic1.troy"
000007.745| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "DATA/Characters/item_twinshadow/item_twinshadow.bin" because it's not in the manifest.
000007.748| ERROR| Can not open file <wraith_Square.dds> *********
000007.748| ERROR| Failed to load wraith_Square.dds
000007.748| WARN| r3dTexture EX: wraith_Square.dds - not found. Dummy texture created.
000007.748| ERROR| Can not open file <wraith_Circle.dds> *********
000007.748| ERROR| Failed to load wraith_Circle.dds
000007.748| WARN| r3dTexture EX: wraith_Circle.dds - not found. Dummy texture created.
000007.749| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/item_twinshadow/skins/base/animations/twinshadow_idle.anm" because it's not in the manifest.
000007.749| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/item_twinshadow/skins/base/animations/twinshadow_death.anm" because it's not in the manifest.
000007.749| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/item_twinshadow/skins/base/animations/twinshadow_run.anm" because it's not in the manifest.
000007.749| ERROR| Riot::RADS::IO::OpenFile: RADS cannot open file "characters/item_twinshadow/skins/base/animations/twinshadow_angryidle.anm" because it's not in the manifest.
000007.750| ERROR| Data Error on expression: always
Data Error message: Missing effect texture <color-wraith_flicker.tga>
000007.751| ERROR| Data Error on expression: always
Data Error message: Missing effect texture <color-wraith_flicker.tga>
000007.753| ERROR| Data Error on expression: always