-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtest.txt
executable file
·1258 lines (1258 loc) · 105 KB
/
test.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
0/64 on map dota
CSteam3Client::Activate() took 2.188031 msec
---------------
Path ID: File Path:
ADDONS "C:\Program Files (x86)\Steam\steamapps\common\dota 2 beta\game\dota_addons\"
CONTENT "C:\Program Files (x86)\Steam\steamapps\common\dota 2 beta\content\dota\"
CONTENT "C:\Program Files (x86)\Steam\steamapps\common\dota 2 beta\content\core\"
CONTENTADDONS "C:\Program Files (x86)\Steam\steamapps\common\dota 2 beta\content\dota_addons\"
CONTENTROOT "C:\Program Files (x86)\Steam\steamapps\common\dota 2 beta\content\"
DEFAULT_WRITE_PATH "C:\Program Files (x86)\Steam\steamapps\common\dota 2 beta\game\dota\pak01.vpk" (vpk) C:\Program Files (x86)\Steam\steamapps\common\dota 2 beta\game\dota\pak01.vpk
DEFAULT_WRITE_PATH "C:\Program Files (x86)\Steam\steamapps\common\dota 2 beta\game\dota\"
EXECUTABLE_PATH "C:\Program Files (x86)\Steam\steamapps\common\dota 2 beta\game\bin\win64\"
EXECUTABLE_PATH "c:\program files (x86)\steam\steamapps\common\dota 2 beta\game\bin\"
GAME "C:\Program Files (x86)\Steam\steamapps\common\dota 2 beta\game\dota\pak01.vpk" (vpk) C:\Program Files (x86)\Steam\steamapps\common\dota 2 beta\game\dota\pak01.vpk
GAME "C:\Program Files (x86)\Steam\steamapps\common\dota 2 beta\game\core\pak01.vpk" (vpk) C:\Program Files (x86)\Steam\steamapps\common\dota 2 beta\game\core\pak01.vpk
GAME "C:\Program Files (x86)\Steam\steamapps\common\dota 2 beta\game\dota\shaders_pc.vpk" (vpk) C:\Program Files (x86)\Steam\steamapps\common\dota 2 beta\game\dota\shaders_pc.vpk
GAME "C:\Program Files (x86)\Steam\steamapps\common\dota 2 beta\game\core\shaders_pc.vpk" (vpk) C:\Program Files (x86)\Steam\steamapps\common\dota 2 beta\game\core\shaders_pc.vpk
GAME "C:\Program Files (x86)\Steam\steamapps\common\dota 2 beta\game\dota\"
GAME "C:\Program Files (x86)\Steam\steamapps\common\dota 2 beta\game\core\"
GAMEBIN "C:\Program Files (x86)\Steam\steamapps\common\dota 2 beta\game\dota\bin\win64\"
GAMEBIN "C:\Program Files (x86)\Steam\steamapps\common\dota 2 beta\game\dota\bin\"
GAMEBIN "C:\Program Files (x86)\Steam\steamapps\common\dota 2 beta\game\core\bin\win64\"
GAMEBIN "C:\Program Files (x86)\Steam\steamapps\common\dota 2 beta\game\core\bin\"
GAMEROOT "C:\Program Files (x86)\Steam\steamapps\common\dota 2 beta\game\"
MOD "C:\Program Files (x86)\Steam\steamapps\common\dota 2 beta\game\dota\pak01.vpk" (vpk) C:\Program Files (x86)\Steam\steamapps\common\dota 2 beta\game\dota\pak01.vpk
MOD "C:\Program Files (x86)\Steam\steamapps\common\dota 2 beta\game\dota\"
PLATFORM "C:\Program Files (x86)\Steam\steamapps\common\dota 2 beta\game\core\pak01.vpk" (vpk) C:\Program Files (x86)\Steam\steamapps\common\dota 2 beta\game\core\pak01.vpk
PLATFORM "C:\Program Files (x86)\Steam\steamapps\common\dota 2 beta\game\core\"
SHADER_SOURCE "C:\Program Files (x86)\Steam\steamapps\common\dota 2 beta\src\shaders\dota\"
SHADER_SOURCE "C:\Program Files (x86)\Steam\steamapps\common\dota 2 beta\src\shaders\core\"
SHADER_SOURCE "C:\Program Files (x86)\Steam\steamapps\common\dota 2 beta\src\shaders\dota_addons\"
SHADER_SOURCE "C:\Program Files (x86)\Steam\steamapps\common\dota 2 beta\src\shaders\dota_core\"
SHADER_SOURCE_MOD "C:\Program Files (x86)\Steam\steamapps\common\dota 2 beta\src\shaders\dota\"
SHADER_SOURCE_ROOT "C:\Program Files (x86)\Steam\steamapps\common\dota 2 beta\src\shaders\"
command line arguments:
-steam +engine_experimental_drop_frame_ticks 1 +voice_fadeouttime 0 -dedicated -high -fill_with_bots +exec autoexec.cfg
Network System Initialized
10.10.114.10: {CAE7CC2F-EFB8-4328-92CB-F9056A9674A3} Intel(R) Dual Band Wireless-AC 8265
Physics Console Communications is not initialized
Game supporting (4) split screen players
CEntitySystem::BuildEntityNetworking (parallel build of server) took 212.075 msecs for 867 out of 885 classes
Failed to load mutations file! scripts/battlepass/ti2018/mutations.txt
Error loading resource file "soundevents/soundevents_test.vsndevts_c" (Error: ERROR_FILEOPEN)
Attempted to set unknown configuration value <unknown>!
Attempted to set unknown configuration value <unknown>!
Attempted to set unknown configuration value <unknown>!
Attempted to set unknown configuration value <unknown>!
Attempted to set unknown configuration value <unknown>!
Attempted to set unknown configuration value <unknown>!
Attempted to set unknown configuration value <unknown>!
Attempted to set unknown configuration value <unknown>!
Attempted to set unknown configuration value <unknown>!
name[ 0 ] changing from 'unnamed' to 'shiken'
Attempted to set unknown configuration value <unknown>!
Attempted to set unknown configuration value <unknown>!
Attempted to set unknown configuration value <unknown>!
Attempted to set unknown configuration value <unknown>!
Error in user configuration file
name[ 0 ] changing from 'shiken' to 'shiken'
CHostStateMgr::QueueNewRequest( Idle (console), 1 )
SwitchToLoop console requested: id [1] addons []
Idle (console)
execing autoexec.cfg
Loading map "dota"
CHostStateMgr::QueueNewRequest( Loading (dota), 2 )
SwitchToLoop levelload requested: id [2] addons []
SV: Level loading started for 'dota'
Running SteamAPI_RunCallbacks for first time
CL: CLoopModeLevelLoad::MaybeSwitchToGameLoop switching to "game" loopmode with addons ()
SwitchToLoop game requested: id [2] addons []
CNetworkGameServerBase::SetServerState (ss_dead -> ss_waitingforgamesessionmanifest)
SV: maxplayers set to 64
Network socket 'server' opened on port 27015
Initializing script VM...
...done
SV: Executing dedicated server config file
S:Gamerules: entering state 'DOTA_GAMERULES_STATE_INIT'
SV: CGameRulesGameSystem::GameInit installed game rules
Radiant bot scripting using script path C:\Program Files (x86)\Steam\steamapps\common\dota 2 beta\game\dota\scripts\vscripts\bots
LoadScript: C:\Program Files (x86)\Steam\steamapps\common\dota 2 beta\game\dota\scripts\vscripts\bots\hero_selection.lua, scope name HeroSelectionScriptScope
LoadScript: C:\Program Files (x86)\Steam\steamapps\common\dota 2 beta\game\dota\scripts\vscripts\bots\team_desires.lua, scope name TeamDesiresScriptScope
LoadScript: C:\Program Files (x86)\Steam\steamapps\common\dota 2 beta\game\dota\scripts\vscripts\bots\team_desires.lua not found!
Dire bot scripting using script path C:\Program Files (x86)\Steam\steamapps\common\dota 2 beta\game\dota\scripts\vscripts\bots
LoadScript: C:\Program Files (x86)\Steam\steamapps\common\dota 2 beta\game\dota\scripts\vscripts\bots\hero_selection.lua, scope name HeroSelectionScriptScope
LoadScript: C:\Program Files (x86)\Steam\steamapps\common\dota 2 beta\game\dota\scripts\vscripts\bots\team_desires.lua, scope name TeamDesiresScriptScope
LoadScript: C:\Program Files (x86)\Steam\steamapps\common\dota 2 beta\game\dota\scripts\vscripts\bots\team_desires.lua not found!
SV: Spawn Server: dota
CNetworkGameServerBase::SetServerState (ss_waitingforgamesessionmanifest -> ss_loading)
SV: Connection to Steam servers successful.
SV: ServerSteamID=[A:1:2634876936:12081] (90123882682189832).
Gameserver logged on to Steam, assigned SteamID [A:1:2634876936:12081]
SV: VAC secure mode is activated.
Unable to load grid nav: file not found for world prefabs/promotional_radiant_fountain
Unable to load grid nav: file not found for world prefabs/promotional_dire_fountain
CNetworkGameServerBase::SetServerState (ss_loading -> ss_active)
SV: IGameSystem::LoopActivateAllSystems
HO: IGameSystem::LoopActivateAllSystems
Height map file (maps/prefabs/promotional_radiant_fountain.vhcg) not found, this will make ground height traces more expensive! Recompile the map to generate a height map.
Height map file (maps/prefabs/promotional_dire_fountain.vhcg) not found, this will make ground height traces more expensive! Recompile the map to generate a height map.
SV: 64 player server started
Loading (dota)
S:Gamerules: entering state 'DOTA_GAMERULES_STATE_CUSTOM_GAME_SETUP'
S:Gamerules: entering state 'DOTA_GAMERULES_STATE_HERO_SELECTION'
CDOTA_PlayerResource: Adding player SteamID 90071996842377216 to slot 0 FakeClient=1 preferred slot = -1
PR:SetPlayerName 0:[I:0:0] "@42SiliconValley (Bot)"
CDOTA_PlayerResource: Adding player SteamID 90071996842377217 to slot 1 FakeClient=1 preferred slot = -1
PR:SetPlayerName 1:[I:0:0] "@QwolfBLG (Bot)"
CDOTA_PlayerResource: Adding player SteamID 90071996842377218 to slot 2 FakeClient=1 preferred slot = -1
PR:SetPlayerName 2:[I:0:0] "@Lyd (Bot)"
CDOTA_PlayerResource: Adding player SteamID 90071996842377219 to slot 3 FakeClient=1 preferred slot = -1
PR:SetPlayerName 3:[I:0:0] "@mschroed098 (Bot)"
CDOTA_PlayerResource: Adding player SteamID 90071996842377220 to slot 4 FakeClient=1 preferred slot = -1
PR:SetPlayerName 4:[I:0:0] "@2ne1ugly1 (Bot)"
CDOTA_PlayerResource: Adding player SteamID 90071996842377221 to slot 5 FakeClient=1 preferred slot = -1
PR:SetPlayerName 5:[I:0:0] "@42SiliconValley (Bot)"
CDOTA_PlayerResource: Adding player SteamID 90071996842377222 to slot 6 FakeClient=1 preferred slot = -1
PR:SetPlayerName 6:[I:0:0] "@QwolfBLG (Bot)"
CDOTA_PlayerResource: Adding player SteamID 90071996842377223 to slot 7 FakeClient=1 preferred slot = -1
PR:SetPlayerName 7:[I:0:0] "@Lyd (Bot)"
CDOTA_PlayerResource: Adding player SteamID 90071996842377224 to slot 8 FakeClient=1 preferred slot = -1
PR:SetPlayerName 8:[I:0:0] "@mschroed098 (Bot)"
CDOTA_PlayerResource: Adding player SteamID 90071996842377225 to slot 9 FakeClient=1 preferred slot = -1
PR:SetPlayerName 9:[I:0:0] "@2ne1ugly1 (Bot)"
Gamemode = 0
selecting radiant
PR:SetSelectedHero 0:[I:0:0] npc_dota_hero_bane(3)
PR:SetSelectedHero 1:[I:0:0] npc_dota_hero_chaos_knight(81)
PR:SetSelectedHero 2:[I:0:0] npc_dota_hero_juggernaut(8)
PR:SetSelectedHero 3:[I:0:0] npc_dota_hero_lich(31)
PR:SetSelectedHero 4:[I:0:0] npc_dota_hero_ogre_magi(84)
Script function 'Think' took 2.442ms
Gamemode = 0
selecting dire
PR:SetSelectedHero 5:[I:0:0] npc_dota_hero_drow_ranger(6)
PR:SetSelectedHero 6:[I:0:0] npc_dota_hero_kunkka(23)
PR:SetSelectedHero 7:[I:0:0] npc_dota_hero_zuus(22)
PR:SetSelectedHero 8:[I:0:0] npc_dota_hero_earthshaker(7)
PR:SetSelectedHero 9:[I:0:0] npc_dota_hero_nevermore(11)
Script function 'Think' took 2.312ms
Received server welcome from GC.
CMsgClientWelcome subscribed: 0 up-to-date, 0 out-of-date
GC Connection established for server version 3367
S:Gamerules: entering state 'DOTA_GAMERULES_STATE_WAIT_FOR_MAP_TO_LOAD'
S:Gamerules: entering state 'DOTA_GAMERULES_STATE_PRE_GAME'
m_flPreGameStartTime set to 1.07
m_flStateTransitionTime set to 91.07
Server: Running [10.10.114.10:27015]
Client: Disconnected
----- Status -----
@ Current : game
source : console
hostname : Dota 2
spawn : 1
version : 47/47 8159 secure public
steamid : [A:1:2634876936:12081] (90123882682189832)
udp/ip : 10.10.114.10:27015 (public 64.62.224.29:27015)
os/type : Windows dedicated
players : 0 humans, 10 bots (0 max) (not hibernating) (unreserved)
---------spawngroups----
loaded spawngroup( 1) : SV: [1: dota | main lump | mapload]
loaded spawngroup( 2) : SV: [2: prefabs/promotional_radiant_fountain | main lump | mapload | point_prefab]
loaded spawngroup( 3) : SV: [3: prefabs/promotional_dire_fountain | main lump | mapload | point_prefab]
loaded spawngroup( 4) : SV: [4: dota | world_layer_dire_base | <none> | world_layer]
loaded spawngroup( 5) : SV: [5: dota | world_layer_radiant_base | <none> | world_layer]
loading spawngroup( 6) : SV: [6: <none> | npc_dota_hero_bane]
loading spawngroup( 7) : SV: [7: <none> | npc_dota_hero_chaos_knight]
loading spawngroup( 8) : SV: [8: <none> | npc_dota_hero_juggernaut]
loading spawngroup( 9) : SV: [9: <none> | npc_dota_hero_lich]
loading spawngroup( 10) : SV: [10: <none> | npc_dota_hero_ogre_magi]
loading spawngroup( 11) : SV: [11: <none> | npc_dota_hero_drow_ranger]
loading spawngroup( 12) : SV: [12: <none> | npc_dota_hero_kunkka]
loading spawngroup( 13) : SV: [13: <none> | npc_dota_hero_zuus]
loading spawngroup( 14) : SV: [14: <none> | npc_dota_hero_earthshaker]
loading spawngroup( 15) : SV: [15: <none> | npc_dota_hero_nevermore]
loading spawngroup( 16) : SV: [16: <none> | npc_dota_roshan]
---------players--------
id time ping loss state rate adr name
1 BOT 0 0 active 0 '@42SiliconValley (Bot)'
2 BOT 0 0 active 0 '@QwolfBLG (Bot)'
3 BOT 0 0 active 0 '@Lyd (Bot)'
4 BOT 0 0 active 0 '@mschroed098 (Bot)'
5 BOT 0 0 active 0 '@2ne1ugly1 (Bot)'
6 BOT 0 0 active 0 '@42SiliconValley (Bot)'
7 BOT 0 0 active 0 '@QwolfBLG (Bot)'
8 BOT 0 0 active 0 '@Lyd (Bot)'
9 BOT 0 0 active 0 '@mschroed098 (Bot)'
10 BOT 0 0 active 0 '@2ne1ugly1 (Bot)'
GameState: DOTA_GAMERULES_STATE_PRE_GAME Times: Transition=91.07 Current=1.30
#end
Skill: bane_brain_sap upgraded!
Script function 'Think' on bot npc_dota_hero_bane took 4.000ms
Skill: chaos_knight_chaos_bolt upgraded!
Script function 'Think' on bot npc_dota_hero_chaos_knight took 2.434ms
Skill: juggernaut_blade_fury upgraded!
Skill: lich_frost_shield upgraded!
Skill: ogre_magi_ignite upgraded!
Script function 'Think' on bot npc_dota_hero_ogre_magi took 2.151ms
S:Gamerules: entering state 'DOTA_GAMERULES_STATE_GAME_IN_PROGRESS'
m_flGameStartTime set to 91.10
Client tried to execute invalid order (20). Unit is dead.
Game code tried to execute invalid order (20). Unit is dead.
Skill: bane_nightmare upgraded!
Skill: ogre_magi_fireblast upgraded!
Skill: ogre_magi_ignite upgraded!
Skill: juggernaut_blade_dance upgraded!
Skill: lich_frost_nova upgraded!
Game code tried to execute invalid order (19). Target NPC is dead.
Script Runtime Error: ...2 beta\game\dota\scripts\vscripts\bots\bot_ogre_magi.lua:221: attempt to call global 'SpellRetreat' (a nil value)
stack traceback:
...2 beta\game\dota\scripts\vscripts\bots\bot_ogre_magi.lua:221: in function <...2 beta\game\dota\scripts\vscripts\bots\bot_ogre_magi.lua:201>
Script Runtime Error: ...2 beta\game\dota\scripts\vscripts\bots\bot_ogre_magi.lua:221: attempt to call global 'SpellRetreat' (a nil value)
stack traceback:
...2 beta\game\dota\scripts\vscripts\bots\bot_ogre_magi.lua:221: in function <...2 beta\game\dota\scripts\vscripts\bots\bot_ogre_magi.lua:201>
Script function 'Think' on bot npc_dota_hero_ogre_magi took 2.345ms
Script Runtime Error: ...2 beta\game\dota\scripts\vscripts\bots\bot_ogre_magi.lua:221: attempt to call global 'SpellRetreat' (a nil value)
stack traceback:
...2 beta\game\dota\scripts\vscripts\bots\bot_ogre_magi.lua:221: in function <...2 beta\game\dota\scripts\vscripts\bots\bot_ogre_magi.lua:201>
Script Runtime Error: ...2 beta\game\dota\scripts\vscripts\bots\bot_ogre_magi.lua:221: attempt to call global 'SpellRetreat' (a nil value)
stack traceback:
...2 beta\game\dota\scripts\vscripts\bots\bot_ogre_magi.lua:221: in function <...2 beta\game\dota\scripts\vscripts\bots\bot_ogre_magi.lua:201>
Script Runtime Error: ...2 beta\game\dota\scripts\vscripts\bots\bot_ogre_magi.lua:221: attempt to call global 'SpellRetreat' (a nil value)
stack traceback:
...2 beta\game\dota\scripts\vscripts\bots\bot_ogre_magi.lua:221: in function <...2 beta\game\dota\scripts\vscripts\bots\bot_ogre_magi.lua:201>
Script Runtime Error: ...2 beta\game\dota\scripts\vscripts\bots\bot_ogre_magi.lua:221: attempt to call global 'SpellRetreat' (a nil value)
stack traceback:
...2 beta\game\dota\scripts\vscripts\bots\bot_ogre_magi.lua:221: in function <...2 beta\game\dota\scripts\vscripts\bots\bot_ogre_magi.lua:201>
Script function 'Think' on bot npc_dota_hero_ogre_magi took 2.053ms
Script Runtime Error: ...2 beta\game\dota\scripts\vscripts\bots\bot_ogre_magi.lua:221: attempt to call global 'SpellRetreat' (a nil value)
stack traceback:
...2 beta\game\dota\scripts\vscripts\bots\bot_ogre_magi.lua:221: in function <...2 beta\game\dota\scripts\vscripts\bots\bot_ogre_magi.lua:201>
Script Runtime Error: ...2 beta\game\dota\scripts\vscripts\bots\bot_ogre_magi.lua:221: attempt to call global 'SpellRetreat' (a nil value)
stack traceback:
...2 beta\game\dota\scripts\vscripts\bots\bot_ogre_magi.lua:221: in function <...2 beta\game\dota\scripts\vscripts\bots\bot_ogre_magi.lua:201>
Script Runtime Error: ...2 beta\game\dota\scripts\vscripts\bots\bot_ogre_magi.lua:221: attempt to call global 'SpellRetreat' (a nil value)
stack traceback:
...2 beta\game\dota\scripts\vscripts\bots\bot_ogre_magi.lua:221: in function <...2 beta\game\dota\scripts\vscripts\bots\bot_ogre_magi.lua:201>
Script function 'Think' on bot npc_dota_hero_ogre_magi took 2.076ms
Script Runtime Error: ...2 beta\game\dota\scripts\vscripts\bots\bot_ogre_magi.lua:221: attempt to call global 'SpellRetreat' (a nil value)
stack traceback:
...2 beta\game\dota\scripts\vscripts\bots\bot_ogre_magi.lua:221: in function <...2 beta\game\dota\scripts\vscripts\bots\bot_ogre_magi.lua:201>
Message count limit of 10 hit. Subsequent duplicate messages will be squelched.
CGameParticleManager::SetParticleControlEnt: Unable to lookup attachment attach_fx on model models/heroes/chaos_knight/chaos_knight.vmdl
Client tried to execute invalid order (20). Unit is dead.
Skill: chaos_knight_reality_rift upgraded!
CGameParticleManager::SetParticleControlEnt: Unable to lookup attachment attach_fx on model models/heroes/lich/lich.vmdl
Skill: lich_frost_nova upgraded!
Skill: ogre_magi_fireblast upgraded!
CGameParticleManager::SetParticleControlEnt: Unable to lookup attachment attach_fx on model models/heroes/chaos_knight/chaos_knight.vmdl
CGameParticleManager::SetParticleControlEnt: Unable to lookup attachment attach_fx on model models/heroes/bane/bane.vmdl
Skill: chaos_knight_chaos_strike upgraded!
Game code tried to execute invalid order (14). Unit does not have enough mana to cast ability.
Client tried to execute invalid order (20). Unit is dead.
Client tried to execute invalid order (20). Unit is dead.
CGameParticleManager::SetParticleControlEnt: Unable to lookup attachment attach_fx on model models/heroes/lich/lich.vmdl
Skill: chaos_knight_chaos_bolt upgraded!
Skill: juggernaut_blade_fury upgraded!
Skill: bane_brain_sap upgraded!
Skill: juggernaut_blade_dance upgraded!
Skill: lich_sinister_gaze upgraded!
Skill: ogre_magi_ignite upgraded!
Script function 'Think' on bot npc_dota_hero_ogre_magi took 2.096ms
Client tried to execute invalid order (20). Unit is dead.
Client tried to execute invalid order (20). Unit is dead.
Client tried to execute invalid order (20). Unit is dead.
Client tried to execute invalid order (20). Unit is dead.
CGameParticleManager::SetParticleControlEnt: Unable to lookup attachment attach_fx on model models/heroes/ogre_magi/ogre_magi.vmdl
Client tried to execute invalid order (20). Unit is dead.
Skill: juggernaut_blade_fury upgraded!
Skill: ogre_magi_multicast upgraded!
Script function 'Think' on bot npc_dota_hero_ogre_magi took 2.036ms
Game code tried to execute invalid order (19). Target NPC is dead.
Skill: juggernaut_omni_slash upgraded!
Skill: lich_frost_nova upgraded!
Client tried to execute invalid order (20). Unit is dead.
Client tried to execute invalid order (20). Unit is dead.
CGameParticleManager::SetParticleControlEnt: Unable to lookup attachment attach_fx on model models/heroes/bane/bane.vmdl
Skill: bane_enfeeble upgraded!
Client tried to execute invalid order (20). Unit is dead.
Client tried to execute invalid order (20). Unit is dead.
ping pong 2 Hero_OgreMagi.Fireblast.x1
Client tried to execute invalid order (20). Unit is dead.
Skill: chaos_knight_chaos_strike upgraded!
Client tried to execute invalid order (20). Unit is dead.
CGameParticleManager::SetParticleControlEnt: Unable to lookup attachment attach_fx on model models/heroes/ogre_magi/ogre_magi.vmdl
Client tried to execute invalid order (84). Ability is inactive.
Client tried to execute invalid order (20). Unit is dead.
Game code tried to execute invalid order (19). Target NPC is dead.
Client tried to execute invalid order (84). Ability is inactive.
ping pong 2 Hero_OgreMagi.Fireblast.x1
Client tried to execute invalid order (20). Unit is dead.
Game code tried to execute invalid order (19). Target NPC is dead.
Skill: bane_brain_sap upgraded!
Game code tried to execute invalid order (15). Ability is still in cooldown.
Client tried to execute invalid order (26). Target can't be seen by the unit's team.
Client tried to execute invalid order (74). Unit can't perform command, unit has commands restricted.
Client tried to execute invalid order (74). Unit can't perform command, unit has commands restricted.
Client tried to execute invalid order (74). Unit can't perform command, unit has commands restricted.
Client tried to execute invalid order (74). Unit can't perform command, unit has commands restricted.
Client tried to execute invalid order (74). Unit can't perform command, unit has commands restricted.
Client tried to execute invalid order (20). Unit is dead.
Skill: bane_fiends_grip upgraded!
Skill: chaos_knight_phantasm upgraded!
Client tried to execute invalid order (20). Unit is dead.
Skill: juggernaut_blade_fury upgraded!
Skill: lich_chain_frost upgraded!
ping pong 2 Hero_OgreMagi.Fireblast.x1
Client tried to execute invalid order (20). Unit is dead.
Game code tried to execute invalid order (20). Unit is dead.
Game code tried to execute invalid order (15). Ability is still in cooldown.
Game code tried to execute invalid order (15). Ability is still in cooldown.
Skill: ogre_magi_ignite upgraded!
Client tried to execute invalid order (20). Unit is dead.
ping pong 2 Hero_OgreMagi.Fireblast.x1
Client tried to execute invalid order (20). Unit is dead.
Game code tried to execute invalid order (19). Target NPC is dead.
Building: npc_dota_goodguys_tower1_top destroyed at 806.403503.
ping pong 2 Hero_OgreMagi.Fireblast.x1
ping pong 2 Hero_OgreMagi.Fireblast.x1
Client tried to execute invalid order (20). Unit is dead.
Game code tried to execute invalid order (20). Unit is dead.
Client tried to execute invalid order (20). Unit is dead.
Building: npc_dota_goodguys_tower1_mid destroyed at 845.493958.
CSoundOpGameSystem::StopSoundEvent: Attempting to stop non-existent soundevent: hero_Crystal.frostbite
Skill: juggernaut_blade_dance upgraded!
Game code tried to execute invalid order (15). Ability is still in cooldown.
Skill: lich_frost_nova upgraded!
Game code tried to execute invalid order (20). Unit is dead.
Client tried to execute invalid order (20). Unit is dead.
Client tried to execute invalid order (20). Unit is dead.
Client tried to execute invalid order (20). Unit is dead.
Client tried to execute invalid order (20). Unit is dead.
Skill: bane_brain_sap upgraded!
Skill: chaos_knight_reality_rift upgraded!
CGameParticleManager::SetParticleControlEnt: Unable to lookup attachment attach_fx on model models/heroes/juggernaut/juggernaut.vmdl
Skill: ogre_magi_fireblast upgraded!
Building: npc_dota_goodguys_tower1_bot destroyed at 927.107361.
Game code tried to execute invalid order (19). Target NPC is dead.
Client tried to execute invalid order (20). Unit is dead.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (20). Unit is dead.
Game code tried to execute invalid order (19). Target NPC is dead.
ping pong 2 Hero_OgreMagi.Fireblast.x1
Client tried to execute invalid order (55). Can't use item, it has no charges.
ping pong 2 Hero_OgreMagi.Fireblast.x1
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (20). Unit is dead.
Game code tried to execute invalid order (20). Unit is dead.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Skill: lich_frost_shield upgraded!
Client tried to execute invalid order (20). Unit is dead.
Client tried to execute invalid order (20). Unit is dead.
Skill: chaos_knight_chaos_bolt upgraded!
Script function 'Think' on bot npc_dota_hero_chaos_knight took 2.000ms
Skill: juggernaut_blade_dance upgraded!
ping pong 2 Hero_OgreMagi.Fireblast.x1
Client tried to execute invalid order (20). Unit is dead.
Client tried to execute invalid order (20). Unit is dead.
Skill: chaos_knight_chaos_bolt upgraded!
Client tried to execute invalid order (20). Unit is dead.
Game code tried to execute invalid order (20). Unit is dead.
Skill: bane_nightmare upgraded!
Skill: special_bonus_all_stats_5 upgraded!
Game code tried to execute invalid order (19). Target NPC is dead.
Skill: ogre_magi_fireblast upgraded!
Building: npc_dota_badguys_tower1_bot destroyed at 1091.567139.
Client tried to execute invalid order (84). Ability is inactive.
Client tried to execute invalid order (84). Ability is inactive.
Client tried to execute invalid order (84). Ability is inactive.
Client tried to execute invalid order (20). Unit is dead.
Skill: lich_frost_shield upgraded!
Game code tried to execute invalid order (20). Unit is dead.
ping pong 2 Hero_OgreMagi.Fireblast.x1
ping pong 2 Hero_OgreMagi.Fireblast.x1
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (74). Unit can't perform command, unit has commands restricted.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (20). Unit is dead.
Skill: special_bonus_hp_200 upgraded!
Skill: special_bonus_cast_range_100 upgraded!
Client tried to execute invalid order (20). Unit is dead.
Game code tried to execute invalid order (20). Unit is dead.
Skill: special_bonus_all_stats_5 upgraded!
Script function 'Think' on bot npc_dota_hero_juggernaut took 3.053ms
Client tried to execute invalid order (20). Unit is dead.
Client tried to execute invalid order (20). Unit is dead.
Game code tried to execute invalid order (19). Target NPC is dead.
Building: npc_dota_goodguys_tower2_mid destroyed at 1195.441772.
Client tried to execute invalid order (74). Unit can't perform command, unit has commands restricted.
Client tried to execute invalid order (74). Unit can't perform command, unit has commands restricted.
ping pong 2 Hero_OgreMagi.Fireblast.x1
ping pong 2 Hero_OgreMagi.Fireblast.x1
Client tried to execute invalid order (20). Unit is dead.
Game code tried to execute invalid order (20). Unit is dead.
Skill: ogre_magi_bloodlust upgraded!
Script function 'Think' on bot npc_dota_hero_ogre_magi took 2.597ms
Client tried to execute invalid order (20). Unit is dead.
Skill: chaos_knight_reality_rift upgraded!
Skill: bane_nightmare upgraded!
Client tried to execute invalid order (20). Unit is dead.
Game code tried to execute invalid order (20). Unit is dead.
Skill: chaos_knight_phantasm upgraded!
Skill: special_bonus_cast_range_100 upgraded!
Skill: chaos_knight_chaos_strike upgraded!
Skill: bane_nightmare upgraded!
Skill: lich_frost_shield upgraded!
Client tried to execute invalid order (20). Unit is dead.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (20). Unit is dead.
Game code tried to execute invalid order (19). Target NPC is dead.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Building: npc_dota_goodguys_tower2_top destroyed at 1322.843994.
Script function 'Think' on bot npc_dota_hero_juggernaut took 8.661ms
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Skill: ogre_magi_multicast upgraded!
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Skill: juggernaut_healing_ward upgraded!
Client tried to execute invalid order (84). Ability is inactive.
Client tried to execute invalid order (84). Ability is inactive.
Game code tried to execute invalid order (36). Can't attack or cast on target, target is unselectable.
Client tried to execute invalid order (84). Ability is inactive.
Client tried to execute invalid order (84). Ability is inactive.
Client tried to execute invalid order (84). Ability is inactive.
Client tried to execute invalid order (20). Unit is dead.
Skill: juggernaut_omni_slash upgraded!
Skill: lich_chain_frost upgraded!
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
ping pong 2 Hero_OgreMagi.Fireblast.x1
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (20). Unit is dead.
Game code tried to execute invalid order (20). Unit is dead.
Skill: lich_sinister_gaze upgraded!
Script function 'Think' on bot npc_dota_hero_lich took 2.377ms
Client tried to execute invalid order (74). Unit can't perform command, unit has commands restricted.
Client tried to execute invalid order (74). Unit can't perform command, unit has commands restricted.
Client tried to execute invalid order (74). Unit can't perform command, unit has commands restricted.
Client tried to execute invalid order (74). Unit can't perform command, unit has commands restricted.
Client tried to execute invalid order (74). Unit can't perform command, unit has commands restricted.
Client tried to execute invalid order (74). Unit can't perform command, unit has commands restricted.
Client tried to execute invalid order (20). Unit is dead.
Skill: bane_fiends_grip upgraded!
Skill: juggernaut_healing_ward upgraded!
Building: npc_dota_badguys_tower1_top destroyed at 1443.081299.
Skill: chaos_knight_reality_rift upgraded!
Client tried to execute invalid order (20). Unit is dead.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Building: npc_dota_badguys_tower1_mid destroyed at 1501.866943.
Skill: ogre_magi_bloodlust upgraded!
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (20). Unit is dead.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (20). Unit is dead.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (20). Unit is dead.
Game code tried to execute invalid order (19). Target NPC is dead.
Game code tried to execute invalid order (15). Ability is still in cooldown.
Game code tried to execute invalid order (15). Ability is still in cooldown.
Client tried to execute invalid order (20). Unit is dead.
Game code tried to execute invalid order (20). Unit is dead.
Skill: bane_enfeeble upgraded!
Skill: special_bonus_strength_15 upgraded!
ping pong 2 Hero_OgreMagi.Fireblast.x1
ping pong 3 Hero_OgreMagi.Fireblast.x2
ping pong 2 Hero_OgreMagi.Fireblast.x1
ping pong 3 Hero_OgreMagi.Fireblast.x2
Client tried to execute invalid order (20). Unit is dead.
Game code tried to execute invalid order (20). Unit is dead.
Skill: chaos_knight_chaos_strike upgraded!
Skill: lich_sinister_gaze upgraded!
Skill: bane_enfeeble upgraded!
Skill: juggernaut_healing_ward upgraded!
Client tried to execute invalid order (74). Unit can't perform command, unit has commands restricted.
Client tried to execute invalid order (74). Unit can't perform command, unit has commands restricted.
Client tried to execute invalid order (84). Ability is inactive.
Client tried to execute invalid order (84). Ability is inactive.
Client tried to execute invalid order (84). Ability is inactive.
Client tried to execute invalid order (84). Ability is inactive.
Client tried to execute invalid order (20). Unit is dead.
Client tried to execute invalid order (84). Ability is inactive.
Client tried to execute invalid order (84). Ability is inactive.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Game code tried to execute invalid order (36). Can't attack or cast on target, target is unselectable.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (20). Unit is dead.
Skill: special_bonus_attack_speed_20 upgraded!
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
ping pong 2 Hero_OgreMagi.Fireblast.x1
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (20). Unit is dead.
Client tried to execute invalid order (20). Unit is dead.
Game code tried to execute invalid order (19). Target NPC is dead.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Game code tried to execute invalid order (19). Target NPC is dead.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (20). Unit is dead.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Skill: ogre_magi_bloodlust upgraded!
Client tried to execute invalid order (20). Unit is dead.
Skill: special_bonus_exp_boost_40 upgraded!
Client tried to execute invalid order (20). Unit is dead.
Game code tried to execute invalid order (20). Unit is dead.
Skill: juggernaut_healing_ward upgraded!
Building: npc_dota_badguys_tower2_mid destroyed at 1843.383545.
Client tried to execute invalid order (20). Unit is dead.
Client tried to execute invalid order (20). Unit is dead.
Skill: chaos_knight_phantasm upgraded!
Client tried to execute invalid order (20). Unit is dead.
Building: npc_dota_badguys_tower3_mid destroyed at 1889.205688.
Client tried to execute invalid order (20). Unit is dead.
Game code tried to execute invalid order (19). Target NPC is dead.
Skill: special_bonus_attack_damage_120 upgraded!
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (20). Unit is dead.
Game code tried to execute invalid order (19). Target NPC is dead.
Game code tried to execute invalid order (19). Target NPC is dead.
Building: npc_dota_goodguys_tower3_mid destroyed at 1962.675415.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Game code tried to execute invalid order (20). Unit is dead.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (20). Unit is dead.
Game code tried to execute invalid order (19). Target NPC is dead.
Building: npc_dota_goodguys_melee_rax_mid destroyed at 1976.756714.
Building: npc_dota_goodguys_range_rax_mid destroyed at 1979.064575.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (20). Unit is dead.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Skill: bane_enfeeble upgraded!
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (20). Unit is dead.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
ping pong 2 Hero_OgreMagi.Fireblast.x1
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (20). Unit is dead.
Skill: special_bonus_hp_300 upgraded!
Skill: special_bonus_gold_income_25 upgraded!
ping pong 3 Hero_OgreMagi.Fireblast.x2
ping pong 2 Hero_OgreMagi.Fireblast.x1
Client tried to execute invalid order (20). Unit is dead.
Game code tried to execute invalid order (20). Unit is dead.
Skill: ogre_magi_bloodlust upgraded!
ping pong 2 Hero_OgreMagi.Fireblast.x1
ping pong 3 Hero_OgreMagi.Fireblast.x2
Client tried to execute invalid order (20). Unit is dead.
Game code tried to execute invalid order (20). Unit is dead.
Skill: ogre_magi_multicast upgraded!
Client tried to execute invalid order (20). Unit is dead.
Skill: lich_sinister_gaze upgraded!
Game code tried to execute invalid order (20). Unit is dead.
Client tried to execute invalid order (20). Unit is dead.
Game code tried to execute invalid order (20). Unit is dead.
Client tried to execute invalid order (20). Unit is dead.
Skill: bane_fiends_grip upgraded!
Client tried to execute invalid order (20). Unit is dead.
Game code tried to execute invalid order (20). Unit is dead.
Client tried to execute invalid order (20). Unit is dead.
Skill: special_bonus_movement_speed_50 upgraded!
Building: npc_dota_badguys_range_rax_mid destroyed at 2160.516113.
Building: npc_dota_badguys_tower2_top destroyed at 2166.402832.
Building: npc_dota_badguys_tower2_bot destroyed at 2166.937988.
Building: npc_dota_badguys_melee_rax_mid destroyed at 2178.778320.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Game code tried to execute invalid order (15). Ability is still in cooldown.
Client tried to execute invalid order (20). Unit is dead.
Skill: juggernaut_omni_slash upgraded!
Skill: special_bonus_unique_chaos_knight_2 upgraded!
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (20). Unit is dead.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (20). Unit is dead.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Game code tried to execute invalid order (20). Unit is dead.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (20). Unit is dead.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (20). Unit is dead.
Game code tried to execute invalid order (19). Target NPC is dead.
Game code tried to execute invalid order (19). Target NPC is dead.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Building: npc_dota_badguys_tower3_top destroyed at 2257.914551.
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 136 is outside of cell bounds (0->128) @(18645.039063 -5718.321289 384.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
1178:item_ring_of_tarrasque::m_vecOrigin CNetworkOriginCellCoordQuantizedVector m_cellX cell 140 is outside of cell bounds (0->128) @(19690.701172 -6272.000000 512.000000)
ping pong 2 Hero_OgreMagi.Fireblast.x1
ping pong 2 Hero_OgreMagi.Fireblast.x1
ping pong 2 Hero_OgreMagi.Fireblast.x1
Client tried to execute invalid order (20). Unit is dead.
Client tried to execute invalid order (20). Unit is dead.
Client tried to execute invalid order (84). Ability is inactive.
Client tried to execute invalid order (84). Ability is inactive.
Client tried to execute invalid order (84). Ability is inactive.
Client tried to execute invalid order (84). Ability is inactive.
Client tried to execute invalid order (84). Ability is inactive.
Client tried to execute invalid order (84). Ability is inactive.
Client tried to execute invalid order (84). Ability is inactive.
Client tried to execute invalid order (84). Ability is inactive.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (20). Unit is dead.
Game code tried to execute invalid order (19). Target NPC is dead.
Client tried to execute invalid order (20). Unit is dead.
Client tried to execute invalid order (20). Unit is dead.
Game code tried to execute invalid order (20). Unit is dead.
Skill: special_bonus_strength_40 upgraded!
Game code tried to execute invalid order (15). Ability is still in cooldown.
Client tried to execute invalid order (20). Unit is dead.
ping pong 2 Hero_OgreMagi.Fireblast.x1
ping pong 3 Hero_OgreMagi.Fireblast.x2
ping pong 4 Hero_OgreMagi.Fireblast.x3
Skill: lich_chain_frost upgraded!
ping pong 2 Hero_OgreMagi.Fireblast.x1
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
ping pong 2 Hero_OgreMagi.Fireblast.x1
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (20). Unit is dead.
Skill: special_bonus_unique_bane_3 upgraded!
Client tried to execute invalid order (20). Unit is dead.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (55). Can't use item, it has no charges.
Client tried to execute invalid order (20). Unit is dead.
Game code tried to execute invalid order (19). Target NPC is dead.
Client tried to execute invalid order (55). Can't use item, it has no charges.