-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathlua_client.json
More file actions
3896 lines (3896 loc) · 126 KB
/
Copy pathlua_client.json
File metadata and controls
3896 lines (3896 loc) · 126 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"CBaseAnimGraph": {
"extends": "C_BaseModelEntity",
"functions": {}
},
"CBaseAnimatingActivity": {
"extends": "C_BaseModelEntity",
"functions": {}
},
"CBodyComponent": {
"functions": {
"AddImpulseAtPosition": {
"args": [
"vector",
"vector"
],
"description": "Apply an impulse at a worldspace position to the physics",
"return": "void"
},
"AddVelocity": {
"args": [
"vector",
"vector"
],
"description": "Add linear and angular velocity to the physics object",
"return": "void"
},
"DetachFromParent": {
"args": [],
"description": "Detach from its parent",
"return": "void"
},
"IsAttachedToParent": {
"args": [],
"description": "Is attached to parent",
"return": "bool"
},
"SetAngularVelocity": {
"args": [
"vector"
],
"return": "void"
},
"SetMaterialGroup": {
"args": [
"utlstringtoken"
],
"return": "void"
},
"SetVelocity": {
"args": [
"vector"
],
"return": "void"
}
}
},
"CCustomNetTableManager": {
"functions": {
"GetTableValue": {
"args": [
"cstring",
"cstring"
],
"description": "( string TableName, string KeyName )",
"return": "table"
}
},
"instance": "CustomNetTables"
},
"CDOTAGameManager": {
"functions": {
"GetHeroDataByName_Script": {
"args": [
"cstring"
],
"description": "Get the hero unit ",
"return": "table"
},
"GetHeroIDByName": {
"args": [
"cstring"
],
"description": "Get the hero ID given the hero name.",
"return": "int"
},
"GetHeroNameByID": {
"args": [
"int"
],
"description": "Get the hero name given a hero ID.",
"return": "cstring"
},
"GetHeroNameForUnitName": {
"args": [
"cstring"
],
"description": "Get the hero name given a unit name.",
"return": "cstring"
},
"GetHeroUnitNameByID": {
"args": [
"int"
],
"description": "Get the hero unit name given the hero ID.",
"return": "cstring"
}
},
"instance": "DOTAGameManager"
},
"CDOTAGameRules": {
"functions": {
"GetBannedHeroIDs": {
"args": [],
"description": "Returns the hero unit IDs banned in this game, if any",
"return": "table"
},
"GetBannedHeroes": {
"args": [],
"description": "Returns the hero unit names banned in this game, if any",
"return": "table"
},
"GetCustomGameDifficulty": {
"args": [],
"description": "Returns the difficulty level of the custom game mode",
"return": "int"
},
"GetDOTATime": {
"args": [
"bool",
"bool"
],
"description": "(b IncludePregameTime b IncludeNegativeTime) Returns the actual DOTA in-game clock time.",
"return": "float"
},
"GetDifficulty": {
"args": [],
"description": "Returns difficulty level of the custom game mode",
"return": "int"
},
"GetGameFrameTime": {
"args": [],
"description": "Returns the number of seconds elapsed since the last frame was renderered. This time doesn't count up when the game is paused",
"return": "float"
},
"GetGameTime": {
"args": [],
"description": "Returns the number of seconds elapsed since map start. This time doesn't count up when the game is paused",
"return": "float"
},
"GetIetmStockDuration": {
"args": [
"int",
"cstring",
"int"
],
"description": "Get the time it takes to add a new item to stock",
"return": "float"
},
"GetItemStockCount": {
"args": [
"int",
"cstring",
"int"
],
"description": "Get the stock count of the item",
"return": "int"
},
"GetItemStockTime": {
"args": [
"int",
"cstring",
"int"
],
"description": "Get the time an item will be added to stock",
"return": "float"
},
"GetNeutralInitialSpawnOffset": {
"args": [],
"description": "Gets the extra offset to initial neutral creep spawn delay",
"return": "float"
},
"GetWeatherWindDirection": {
"args": [],
"description": "Get Weather Wind Direction Vector",
"return": "vector"
},
"IsCheatMode": {
"args": [],
"description": "Are cheats enabled on the server",
"return": "bool"
},
"IsDev": {
"args": [],
"return": "bool"
},
"IsHeroEnabledViaLists": {
"args": [
"cstring"
],
"description": "Is the hero not blacklisted, and is it either whitelisted or the whitelist is empty?",
"return": "bool"
},
"ShouldHideBlacklistedHeroes": {
"args": [],
"description": "Are blacklisted heroes hidden, or just dimmed, in hero picking?",
"return": "bool"
},
"State_Get": {
"args": [],
"description": "Get the current Gamerules state",
"return": "int"
}
},
"instance": "GameRules"
},
"CDOTA_Buff": {
"functions": {
"AddParticle": {
"arg_names": [
"i",
"bDestroyImmediately",
"bStatusEffect",
"iPriority",
"bHeroEffect",
"bOverheadEffect"
],
"args": [
"int",
"bool",
"bool",
"int",
"bool",
"bool"
],
"description": "(index, bDestroyImmediately, bStatusEffect, priority, bHeroEffect, bOverheadEffect",
"return": "void"
},
"CheckStateToTable": {
"arg_names": [
"table"
],
"args": [
"handle"
],
"return": "void"
},
"DecrementStackCount": {
"args": [],
"description": "Decrease this modifier's stack count by 1.",
"return": "void"
},
"Destroy": {
"args": [],
"description": "Run all associated destroy functions, then remove the modifier.",
"return": "void"
},
"DestroyOnExpire": {
"args": [],
"return": "bool"
},
"ForceRefresh": {
"args": [],
"description": "Run all associated refresh functions on this modifier as if it was re-applied.",
"return": "void"
},
"GetAbility": {
"args": [],
"description": "Get the ability that generated the modifier.",
"return": "handle"
},
"GetAuraDuration": {
"args": [],
"description": "Returns aura stickiness (default 0.5)",
"return": "float"
},
"GetAuraOwner": {
"args": [],
"return": "handle"
},
"GetCaster": {
"args": [],
"description": "Get the owner of the ability responsible for the modifier.",
"return": "handle"
},
"GetClass": {
"args": [],
"return": "cstring"
},
"GetCreationTime": {
"args": [],
"return": "float"
},
"GetDieTime": {
"args": [],
"return": "float"
},
"GetDuration": {
"args": [],
"return": "float"
},
"GetElapsedTime": {
"args": [],
"return": "float"
},
"GetLastAppliedTime": {
"args": [],
"return": "float"
},
"GetName": {
"args": [],
"return": "cstring"
},
"GetParent": {
"args": [],
"description": "Get the unit the modifier is parented to.",
"return": "handle"
},
"GetRemainingTime": {
"args": [],
"return": "float"
},
"GetSerialNumber": {
"args": [],
"return": "int"
},
"GetStackCount": {
"args": [],
"return": "int"
},
"HasFunction": {
"arg_names": [
"iFunction"
],
"args": [
"int"
],
"return": "bool"
},
"IncrementStackCount": {
"args": [],
"description": "Increase this modifier's stack count by 1.",
"return": "void"
},
"IsDebuff": {
"args": [],
"return": "bool"
},
"IsHexDebuff": {
"args": [],
"return": "bool"
},
"IsStunDebuff": {
"args": [],
"return": "bool"
},
"SetDuration": {
"arg_names": [
"flDuration",
"bInformClient"
],
"args": [
"float",
"bool"
],
"description": "(flTime, bInformClients)",
"return": "void"
},
"SetOverheadEffectOffset": {
"arg_names": [
"flOffset"
],
"args": [
"float"
],
"return": "bool"
},
"SetStackCount": {
"arg_names": [
"iCount"
],
"args": [
"int"
],
"return": "void"
},
"StartIntervalThink": {
"arg_names": [
"flInterval"
],
"args": [
"float"
],
"description": "Start this modifier's think function (OnIntervalThink) with the given interval (float). To stop, call with -1.",
"return": "void"
}
}
},
"CDOTA_Modifier_Lua": {
"extends": "CDOTA_Buff",
"functions": {
"AllowIllusionDuplicate": {
"args": [],
"description": "True/false if this modifier is active on illusions.",
"return": "bool"
},
"CanParentBeAutoAttacked": {
"args": [],
"return": "bool"
},
"DestroyOnExpire": {
"args": [],
"description": "True/false if this buff is removed when the duration expires.",
"return": "bool"
},
"GetAttributes": {
"args": [],
"description": "Return the types of attributes applied to this modifier (enum value from DOTAModifierAttribute_t",
"return": "int"
},
"GetAuraDuration": {
"args": [],
"description": "Returns aura stickiness",
"return": "float"
},
"GetAuraEntityReject": {
"arg_names": [
"hEntity"
],
"args": [
"handle"
],
"description": "Return true/false if this entity should receive the aura under specific conditions",
"return": "bool"
},
"GetAuraRadius": {
"args": [],
"description": "Return the range around the parent this aura tries to apply its buff.",
"return": "int"
},
"GetAuraSearchFlags": {
"args": [],
"description": "Return the unit flags this aura respects when placing buffs.",
"return": "int"
},
"GetAuraSearchTeam": {
"args": [],
"description": "Return the teams this aura applies its buff to.",
"return": "int"
},
"GetAuraSearchType": {
"args": [],
"description": "Return the unit classifications this aura applies its buff to.",
"return": "int"
},
"GetCritDamage": {
"args": [],
"description": "A Modifier that listens to MODIFIER_PROPERTY_PREATTACK_CRITICALSTRIKE has to have a GetCritDamage implementation so we can know when to evaluate it. Value should be in 'times the original value format' e.g: 1.5 not 150",
"return": "float"
},
"GetEffectAttachType": {
"args": [],
"description": "Return the attach type of the particle system from GetEffectName.",
"return": "int"
},
"GetEffectName": {
"args": [],
"description": "Return the name of the particle system that is created while this modifier is active.",
"return": "cstring"
},
"GetHeroEffectName": {
"args": [],
"description": "Return the name of the hero effect particle system that is created while this modifier is active.",
"return": "cstring"
},
"GetModifierAura": {
"args": [],
"description": "The name of the secondary modifier that will be applied by this modifier (if it is an aura).",
"return": "cstring"
},
"GetPriority": {
"args": [],
"description": "Return the priority order this modifier will be applied over others.",
"return": "int"
},
"GetStatusEffectName": {
"args": [],
"description": "Return the name of the status effect particle system that is created while this modifier is active.",
"return": "cstring"
},
"GetTexture": {
"args": [],
"description": "Return the name of the buff icon to be shown for this modifier.",
"return": "cstring"
},
"HeroEffectPriority": {
"args": [],
"description": "Relationship of this hero effect with those from other buffs (higher is more likely to be shown).",
"return": "int"
},
"IsAura": {
"args": [],
"description": "True/false if this modifier is an aura.",
"return": "bool"
},
"IsAuraActiveOnDeath": {
"args": [],
"description": "True/false if this aura provides buffs when the parent is dead.",
"return": "bool"
},
"IsDebuff": {
"args": [],
"description": "True/false if this modifier should be displayed as a debuff.",
"return": "bool"
},
"IsHidden": {
"args": [],
"description": "True/false if this modifier should be displayed on the buff bar.",
"return": "bool"
},
"IsPermanent": {
"args": [],
"return": "bool"
},
"IsPurgable": {
"args": [],
"description": "True/false if this modifier can be purged.",
"return": "bool"
},
"IsPurgeException": {
"args": [],
"description": "True/false if this modifier can be purged by strong dispels.",
"return": "bool"
},
"IsStunDebuff": {
"args": [],
"description": "True/false if this modifier is considered a stun for purge reasons.",
"return": "bool"
},
"OnCreated": {
"arg_names": [
"table"
],
"args": [
"handle"
],
"description": "Runs when the modifier is created.",
"return": "void"
},
"OnDestroy": {
"args": [],
"description": "Runs when the modifier is destroyed (after unit loses modifier).",
"return": "void"
},
"OnIntervalThink": {
"args": [],
"description": "Runs when the think interval occurs.",
"return": "void"
},
"OnRefresh": {
"arg_names": [
"table"
],
"args": [
"handle"
],
"description": "Runs when the modifier is refreshed.",
"return": "void"
},
"OnRemoved": {
"args": [],
"description": "Runs when the modifier is destroyed (before unit loses modifier).",
"return": "void"
},
"OnStackCountChanged": {
"arg_names": [
"iStackCount"
],
"args": [
"int"
],
"description": "Runs when stack count changes (param is old count).",
"return": "void"
},
"RemoveOnDeath": {
"args": [],
"description": "True/false if this modifier is removed when the parent dies.",
"return": "bool"
},
"SetHasCustomTransmitterData": {
"arg_names": [
"bHasCustomData"
],
"args": [
"bool"
],
"return": "void"
},
"ShouldUseOverheadOffset": {
"args": [],
"description": "Apply the overhead offset to the attached effect.",
"return": "bool"
},
"StatusEffectPriority": {
"args": [],
"description": "Relationship of this status effect with those from other buffs (higher is more likely to be shown).",
"return": "int"
}
}
},
"CDOTA_Modifier_Lua_Horizontal_Motion": {
"extends": "CDOTA_Modifier_Lua",
"functions": {}
},
"CDOTA_Modifier_Lua_Motion_Both": {
"extends": "CDOTA_Modifier_Lua",
"functions": {}
},
"CDOTA_Modifier_Lua_Vertical_Motion": {
"extends": "CDOTA_Modifier_Lua",
"functions": {}
},
"CDebugOverlayScriptHelper": {
"functions": {
"Axis": {
"args": [
"vector",
"<unknown>",
"float",
"bool",
"float"
],
"description": "Draws an axis. Specify origin + orientation in world space.",
"return": "void"
},
"Box": {
"args": [
"vector",
"vector",
"int",
"int",
"int",
"int",
"bool",
"float"
],
"description": "Draws a world-space axis-aligned box. Specify bounds in world space.",
"return": "void"
},
"BoxAngles": {
"args": [
"vector",
"vector",
"vector",
"<unknown>",
"int",
"int",
"int",
"int",
"bool",
"float"
],
"description": "Draws an oriented box at the origin. Specify bounds in local space.",
"return": "void"
},
"Capsule": {
"args": [
"vector",
"<unknown>",
"float",
"float",
"int",
"int",
"int",
"int",
"bool",
"float"
],
"description": "Draws a capsule. Specify base in world space.",
"return": "void"
},
"Circle": {
"args": [
"vector",
"<unknown>",
"float",
"int",
"int",
"int",
"int",
"bool",
"float"
],
"description": "Draws a circle. Specify center in world space.",
"return": "void"
},
"CircleScreenOriented": {
"args": [
"vector",
"float",
"int",
"int",
"int",
"int",
"bool",
"float"
],
"description": "Draws a circle oriented to the screen. Specify center in world space.",
"return": "void"
},
"Cone": {
"args": [
"vector",
"vector",
"float",
"float",
"int",
"int",
"int",
"int",
"bool",
"float"
],
"description": "Draws a wireframe cone. Specify endpoint and direction in world space.",
"return": "void"
},
"Cross": {
"args": [
"vector",
"float",
"int",
"int",
"int",
"int",
"bool",
"float"
],
"description": "Draws a screen-aligned cross. Specify origin in world space.",
"return": "void"
},
"Cross3D": {
"args": [
"vector",
"float",
"int",
"int",
"int",
"int",
"bool",
"float"
],
"description": "Draws a world-aligned cross. Specify origin in world space.",
"return": "void"
},
"Cross3DOriented": {
"args": [
"vector",
"<unknown>",
"float",
"int",
"int",
"int",
"int",
"bool",
"float"
],
"description": "Draws an oriented cross. Specify origin in world space.",
"return": "void"
},
"DrawTickMarkedLine": {
"args": [
"vector",
"vector",
"float",
"int",
"int",
"int",
"int",
"int",
"bool",
"float"
],
"description": "Draws a dashed line. Specify endpoints in world space.",
"return": "void"
},
"EntityAttachments": {
"args": [
"ehandle",
"float",
"float"
],
"description": "Draws the attachments of the entity",
"return": "void"
},
"EntityAxis": {
"args": [
"ehandle",
"float",
"bool",
"float"
],
"description": "Draws the axis of the entity origin",
"return": "void"
},
"EntityBounds": {
"args": [
"ehandle",
"int",
"int",
"int",
"int",
"bool",
"float"
],
"description": "Draws bounds of an entity",
"return": "void"
},
"EntitySkeleton": {
"args": [
"ehandle",
"float"
],
"description": "Draws the skeleton of the entity",
"return": "void"
},
"EntityText": {
"args": [
"ehandle",
"int",
"cstring",
"int",
"int",
"int",
"int",
"float"
],
"description": "Draws text on an entity",
"return": "void"
},
"FilledRect2D": {
"args": [
"vector2d",
"vector2d",
"int",
"int",
"int",
"int",
"float"
],
"description": "Draws a screen-space filled 2D rectangle. Coordinates are in pixels.",
"return": "void"
},
"HorzArrow": {
"args": [
"vector",
"vector",
"float",
"int",
"int",
"int",
"int",
"bool",
"float"
],
"description": "Draws a horizontal arrow. Specify endpoints in world space.",
"return": "void"
},
"Line": {
"args": [
"vector",
"vector",
"int",
"int",
"int",
"int",
"bool",
"float"
],
"description": "Draws a line between two points",
"return": "void"
},
"Line2D": {
"args": [
"vector2d",
"vector2d",
"int",
"int",
"int",
"int",
"float"
],
"description": "Draws a line between two points in screenspace",
"return": "void"
},
"PopDebugOverlayScope": {
"args": [],
"description": "Pops the identifier used to group overlays. Overlays marked with this identifier can be deleted in a big batch.",
"return": "void"
},
"PushAndClearDebugOverlayScope": {
"args": [
"utlstringtoken"
],
"description": "Pushes an identifier used to group overlays. Deletes all existing overlays using this overlay id.",
"return": "void"
},
"PushDebugOverlayScope": {
"args": [
"utlstringtoken"
],
"description": "Pushes an identifier used to group overlays. Overlays marked with this identifier can be deleted in a big batch.",
"return": "void"
},
"RemoveAllInScope": {
"args": [
"utlstringtoken"
],
"description": "Removes all overlays marked with a specific identifier, regardless of their lifetime.",
"return": "void"
},
"SolidCone": {
"args": [
"vector",
"vector",
"float",
"float",
"int",
"int",
"int",
"int",
"bool",
"float"
],
"description": "Draws a solid cone. Specify endpoint and direction in world space.",
"return": "void"
},
"Sphere": {
"args": [
"vector",
"float",
"int",
"int",
"int",
"int",
"bool",
"float"
],
"description": "Draws a wireframe sphere. Specify center in world space.",
"return": "void"
},
"SweptBox": {
"args": [
"vector",
"vector",
"vector",
"vector",
"<unknown>",
"int",
"int",
"int",
"int",
"float"
],
"description": "Draws a swept box. Specify endpoints in world space and the bounds in local space.",
"return": "void"
},
"Text": {
"args": [
"vector",
"int",
"cstring",
"float",
"int",
"int",
"int",
"int",
"float"
],
"description": "Draws 2D text. Specify origin in world space.",
"return": "void"
},
"Texture": {
"args": [
"cstring",
"vector2d",
"vector2d",
"int",
"int",
"int",
"int",
"vector2d",
"vector2d",
"float"
],
"description": "Draws a screen-space texture. Coordinates are in pixels.",
"return": "void"
},
"Triangle": {
"args": [
"vector",