-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathscar-api.chunk13.lua
996 lines (747 loc) · 18 KB
/
scar-api.chunk13.lua
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
---@undocumented
---@vararg any
function ConscriptProgression_PenalSpeech (...) end
---@undocumented
---@vararg any
function ConscriptProgression_PenalUnlock (...) end
---@undocumented
---@vararg any
function CTRL_IndexOperator (...) end
---@undocumented
---@vararg any
function DebugEconomy (...) end
---@undocumented
---@vararg any
function DebugPrintGoals (...) end
---@undocumented
---@vararg any
function DeleteOldProduceStructures (...) end
---@undocumented
---@vararg any
function Demolition_IntroEvent (...) end
---@undocumented
---@vararg any
function Demolition_OutroEvent (...) end
---@undocumented
---@vararg any
function Demolition_ShowReward (...) end
---@undocumented
---@vararg any
function Demolition_Start (...) end
---@undocumented
---@vararg any
function DeploymentPoint_Destroyed (...) end
---@undocumented
---@vararg any
function DeploymentPoint_Placed (...) end
---@undocumented
---@vararg any
function DesignerLib_Init (...) end
---@undocumented
---@vararg any
function Destroy_Tank_Start (...) end
---@undocumented
---@vararg any
function DestroyTank_IntroEvent (...) end
---@undocumented
---@vararg any
function DestroyTank_OutroEvent (...) end
---@undocumented
---@vararg any
function DestroyTank_ShowReward (...) end
---@undocumented
---@vararg any
function DoesTableContain (...) end
---@undocumented
---@vararg any
function Encounter_KillHalf (...) end
---@undocumented
---@vararg any
function Entity_AddAbility (...) end
---@undocumented
---@vararg any
function Entity_BuildingReset (...) end
---@undocumented
---@vararg any
function Entity_ClearDemolitionCallbacks (...) end
---@undocumented
---@vararg any
function Entity_DoBurnDamage (...) end
---@undocumented
---@vararg any
function Entity_ExtensionEnabled (...) end
---@undocumented
---@vararg any
function Entity_ExtensionExecuting (...) end
---@undocumented
---@vararg any
function Entity_ExtensionName (...) end
---@undocumented
---@vararg any
function Entity_RemoveAbility (...) end
---@undocumented
---@vararg any
function Event_Add (...) end
---@undocumented
---@vararg any
function Event_GetEvent (...) end
---@undocumented
---@vararg any
function Event_IsAnyQueuedInternal (...) end
---@undocumented
---@vararg any
function Event_IsAnyRunningInternal (...) end
---@undocumented
---@vararg any
function EventCue_InternalHintPointManager (...) end
---@undocumented
---@vararg any
function EventCue_InternalManager (...) end
---@undocumented
---@vararg any
function EventCue_RepeaterManager (...) end
---@undocumented
---@vararg any
function EventRule_AddEntityEvent (...) end
---@undocumented
---@vararg any
function EventRule_AddEvent (...) end
---@undocumented
---@vararg any
function EventRule_AddPlayerEvent (...) end
---@undocumented
---@vararg any
function EventRule_AddSquadEvent (...) end
---@undocumented
---@vararg any
function EventRule_Exists (...) end
---@undocumented
---@vararg any
function EventRule_GetNextUniqueRuleID (...) end
---@undocumented
---@vararg any
function EventRule_Refresh (...) end
---@undocumented
---@vararg any
function EventRule_RemoveAll (...) end
---@undocumented
---@vararg any
function EventRule_RemoveEntityEvent (...) end
---@undocumented
---@vararg any
function EventRule_RemoveEvent (...) end
---@undocumented
---@vararg any
function EventRule_RemoveMe (...) end
---@undocumented
---@vararg any
function EventRule_RemovePlayerEvent (...) end
---@undocumented
---@vararg any
function EventRule_RemoveRuleIDEvent (...) end
---@undocumented
---@vararg any
function EventRule_RemoveSquadEvent (...) end
---@undocumented
---@vararg any
function Fatality_Execute (...) end
---@undocumented
---@vararg any
function Fatality_Play (...) end
---@undocumented
---@vararg any
function FixUpVPTickerData (...) end
---@undocumented
---@vararg any
function FixUpVPTickerLastPlayedData (...) end
---@undocumented
---@vararg any
function FOW_EnableTint (...) end
---@undocumented
---@vararg any
function FOW_IsTintEnabled (...) end
---@undocumented
---@vararg any
function FOW_Toggle (...) end
---@undocumented
---@vararg any
function Game_ColdTechDisabled (...) end
---@undocumented
---@vararg any
function Game_CurrentSystemTime (...) end
---@undocumented
---@vararg any
function Game_GetRenderFrameCount (...) end
---@undocumented
---@vararg any
function Game_SubTextFadeInternal (...) end
---@undocumented
---@vararg any
function HintMouseover_Manager (...) end
---@undocumented
---@vararg any
function HintPoint_RemoveInternal (...) end
---@undocumented
---@vararg any
function INIT_BonusCaptureIntel (...) end
---@undocumented
---@vararg any
function INIT_BonusDemolition (...) end
---@undocumented
---@vararg any
function INIT_BonusDestroyTank (...) end
---@undocumented
---@vararg any
function INIT_BonusRescueSquads (...) end
---@undocumented
---@vararg any
function INIT_BonusVIP (...) end
---@undocumented
---@vararg any
function Init_Framedump (...) end
---@undocumented
---@vararg any
function IsAllies (...) end
---@undocumented
---@vararg any
function IsAxis (...) end
---@undocumented
---@vararg any
function KillVIP_IntroEvent (...) end
---@undocumented
---@vararg any
function KillVIP_OutroEvent (...) end
---@undocumented
---@vararg any
function KillVIP_ShowReward (...) end
---@undocumented
---@vararg any
function KillVIP_Start (...) end
---@undocumented
---@vararg any
function Loc_FormatText1 (...) end
---@undocumented
---@vararg any
function Loc_FormatText2 (...) end
---@undocumented
---@vararg any
function Loc_FormatText3 (...) end
---@undocumented
---@vararg any
function Loc_FormatText4 (...) end
---@undocumented
---@vararg any
function ManualMovieCaptureEnd (...) end
---@undocumented
---@vararg any
function ManualMovieCaptureStart (...) end
---@undocumented
---@vararg any
function MapIcon_ClearFacing (...) end
---@undocumented
---@vararg any
function MapIcon_CreateEntity (...) end
---@undocumented
---@vararg any
function MapIcon_CreatePosition (...) end
---@undocumented
---@vararg any
function MapIcon_CreateSquad (...) end
---@undocumented
---@vararg any
function MapIcon_Destroy (...) end
---@undocumented
---@vararg any
function MapIcon_DestroyAll (...) end
---@undocumented
---@vararg any
function MapIcon_SetFacingEntity (...) end
---@undocumented
---@vararg any
function MapIcon_SetFacingPosition (...) end
---@undocumented
---@vararg any
function MapIcon_SetFacingSquad (...) end
---@undocumented
---@vararg any
function Marker_Create (...) end
---@undocumented
---@vararg any
function Marker_GetRandomPositionInternal (...) end
---@undocumented
---@vararg any
function Metrics_CheckPoint (...) end
---@undocumented
---@vararg any
function Metrics_Complete (...) end
---@undocumented
---@vararg any
function Metrics_RegisterCapturePoint (...) end
---@undocumented
---@vararg any
function Metrics_Start (...) end
---@undocumented
---@vararg any
function Misc_AddRestrictCommandsCircle (...) end
---@undocumented
---@vararg any
function Misc_AddRestrictCommandsOBB (...) end
---@undocumented
---@vararg any
function Misc_ClearControlGroup (...) end
---@undocumented
---@vararg any
function Misc_ClearSelection (...) end
---@undocumented
---@vararg any
function Misc_ClearSubselection (...) end
---@undocumented
---@vararg any
function Misc_DumpMemStats (...) end
---@undocumented
---@vararg any
function Misc_GetSpeechDebugEnabled (...) end
---@undocumented
---@vararg any
function Misc_ScreenFadeChange (...) end
---@undocumented
---@vararg any
function Misc_ScreenFadeRemove (...) end
---@undocumented
---@vararg any
function Misc_ScreenFadeStart (...) end
---@undocumented
---@vararg any
function Misc_SetAmbientFXVisibility (...) end
---@undocumented
---@vararg any
function Misc_SetSpeechDebugEnabled (...) end
---@undocumented
---@vararg any
function Misc_SuperScreenshot (...) end
---@undocumented
---@vararg any
function Misc_SyncCheckVariable (...) end
---@undocumented
---@vararg any
function Mission_CheatLose (...) end
---@undocumented
---@vararg any
function Mission_CheatWin (...) end
---@undocumented
---@vararg any
function Mission_GetNIS (...) end
---@undocumented
---@vararg any
function Mission_IsDebug (...) end
---@undocumented
---@vararg any
function Mission_SetDebug (...) end
---@undocumented
---@vararg any
function Mission_SetSecondaryObjectiveOverride (...) end
---@undocumented
---@vararg any
function Mission_StartSecondaryObjective (...) end
---@undocumented
---@vararg any
function Modifier_AddToEntityTable (...) end
---@undocumented
---@vararg any
function Modifier_AddToMiscTable (...) end
---@undocumented
---@vararg any
function Modifier_AddToSquadTable (...) end
---@undocumented
---@vararg any
function Modifier_Init (...) end
---@undocumented
---@vararg any
function Modifier_RemoveInternal (...) end
---@undocumented
---@vararg any
function Modify_SlotItemDropRate (...) end
---@undocumented
---@vararg any
function ModMisc_ApplyDeformation (...) end
---@undocumented
---@vararg any
function MP_BlizzardInterval (...) end
---@undocumented
---@vararg any
function MP_BlizzardTransition (...) end
---@undocumented
---@vararg any
function Obj_CreatePopup (...) end
---@undocumented
---@vararg any
function Obj_HideProgressEx (...) end
---@undocumented
---@vararg any
function Obj_HighlightEntity (...) end
---@undocumented
---@vararg any
function Obj_HighlightPosition (...) end
---@undocumented
---@vararg any
function Obj_HighlightSquad (...) end
---@undocumented
---@vararg any
function Obj_SetRadioShown (...) end
---@undocumented
---@vararg any
function Obj_ShowProgressEx (...) end
---@undocumented
---@vararg any
function OnGameRestore (...) end
---@undocumented
---@vararg any
function OnGameSetup (...) end
---@undocumented
---@vararg any
function OnInit (...) end
---@undocumented
---@vararg any
function OnInitID (...) end
---@undocumented
---@vararg any
function Order227_EndSpeech (...) end
---@undocumented
---@vararg any
function Order227_Start (...) end
---@undocumented
---@vararg any
function Order227_StartSpeech (...) end
---@undocumented
---@vararg any
function Order227_Update (...) end
---@undocumented
---@vararg any
function OutputEnumsToXML (...) end
---@undocumented
---@vararg any
function Player_GetFatalityAbility (...) end
---@undocumented
---@vararg any
function Player_GetMapEntryPosition (...) end
---@undocumented
---@vararg any
function Player_SetAbilityAvailabilityInternal (...) end
---@undocumented
---@vararg any
function Player_SetAllCommandAvailability (...) end
---@undocumented
---@vararg any
function Player_SetCommandAvailabilityInternal (...) end
---@undocumented
---@vararg any
function Player_SetConstructionMenuAvailabilityInternal (...) end
---@undocumented
---@vararg any
function Player_SetEntityProductionAvailabilityInternal (...) end
---@undocumented
---@vararg any
function Player_SetSquadProductionAvailabilityInternal (...) end
---@undocumented
---@vararg any
function Player_SetUpgradeAvailabilityInternal (...) end
---@undocumented
---@vararg any
function PlayerCanSeeVIP (...) end
---@undocumented
---@vararg any
function PlayerColour_Disable (...) end
---@undocumented
---@vararg any
function PlayerColour_Enable (...) end
---@undocumented
---@vararg any
function Prefab_ApplyDefaults (...) end
---@undocumented
---@vararg any
function Prefab_ApplySchemaToDataTable (...) end
---@undocumented
---@vararg any
function Prefab_DoAction (...) end
---@undocumented
---@vararg any
function Prefab_GenerateUniqueInstanceName (...) end
---@undocumented
---@vararg any
function Prefab_GetInstance (...) end
---@undocumented
---@vararg any
function Prefab_Init (...) end
---@undocumented
---@vararg any
function Prefab_InitAll (...) end
---@undocumented
---@vararg any
function Prefab_Load (...) end
---@undocumented
---@vararg any
function Prefab_ReloadAll (...) end
---@undocumented
---@vararg any
function Prefab_ReplaceDataWithProperType (...) end
---@undocumented
---@vararg any
function Prefab_Reset (...) end
---@undocumented
---@vararg any
function Prefab_ResetFromWorldBuilder (...) end
---@undocumented
---@vararg any
function Prefab_Stop (...) end
---@undocumented
---@vararg any
function PrefabHelper_StandardTriggerSystem (...) end
---@undocumented
---@vararg any
function PrefabHelper_StandardTriggerSystem_Trigger (...) end
---@undocumented
---@vararg any
function PreInit (...) end
---@undocumented
---@vararg any
function PrintObject (...) end
---@undocumented
---@vararg any
function PrintOnScreen_GetString (...) end
---@undocumented
---@vararg any
function Produce120mmMortar (...) end
---@undocumented
---@vararg any
function Produce80mmMortar (...) end
---@undocumented
---@vararg any
function ProduceCombatEngineer (...) end
---@undocumented
---@vararg any
function ProduceCommandSquad (...) end
---@undocumented
---@vararg any
function ProduceFieldATGun (...) end
---@undocumented
---@vararg any
function ProduceHMG (...) end
---@undocumented
---@vararg any
function ProduceIS2 (...) end
---@undocumented
---@vararg any
function ProduceISU122 (...) end
---@undocumented
---@vararg any
function ProduceMotorcycle (...) end
---@undocumented
---@vararg any
function ProduceRocketTruck (...) end
---@undocumented
---@vararg any
function ProduceRussianArmouredCar (...) end
---@undocumented
---@vararg any
function ProduceSniper (...) end
---@undocumented
---@vararg any
function ProduceStructure (...) end
---@undocumented
---@vararg any
function ProduceSU85 (...) end
---@undocumented
---@vararg any
function ProduceT34 (...) end
---@undocumented
---@vararg any
function ProduceT70m (...) end
---@undocumented
---@vararg any
function ProduceVeteranInfantry (...) end
---@undocumented
---@vararg any
function RainSplashes_ReLoadConfig (...) end
---@undocumented
---@vararg any
function RegisterObjectiveUpdate (...) end
---@undocumented
---@vararg any
function RemoveTargettingArtilleryHint (...) end
---@undocumented
---@vararg any
function Request_Construction (...) end
---@undocumented
---@vararg any
function Request_ConstructionWithSquad (...) end
---@undocumented
---@vararg any
function Request_FinishIncompleteStructure (...) end
---@undocumented
---@vararg any
function Request_PlayerAbility (...) end
---@undocumented
---@vararg any
function Request_PlayerAbilitySingleTarget (...) end
---@undocumented
---@vararg any
function Request_Production (...) end
---@undocumented
---@vararg any
function RescueSquads_IntroEvent (...) end
---@undocumented
---@vararg any
function RescueSquads_OutroEvent (...) end
---@undocumented
---@vararg any
function RescueSquads_ShowReward (...) end
---@undocumented
---@vararg any
function RescueSquads_Start (...) end
---@undocumented
---@vararg any
function ResourceCheat (...) end
---@undocumented
---@vararg any
function Rule_SquadMarkerProxDeleter (...) end
---@undocumented
---@vararg any
function Scar_PlayNISEx (...) end
---@undocumented
---@vararg any
function Scar_ReloadScripts (...) end
---@undocumented
---@vararg any
function Scar_SetSimRate (...) end
---@undocumented
---@vararg any
function SetGlobals (...) end
---@undocumented
---@vararg any
function SetHeatRateForAllPlayers (...) end
---@undocumented
---@vararg any
function Setup_GetWinConditionOption (...) end
---@undocumented
---@vararg any
function Setup_SetPlayerStartingPosition (...) end
---@undocumented
---@vararg any
function SetVisionRadiusForAllPlayers (...) end
---@undocumented
---@vararg any
function ShootTheSky_Manager (...) end
---@undocumented
---@vararg any
function SimpleDefendEncounter_GetEncounterID (...) end
---@undocumented
---@vararg any
function Sound_SetMusicCombatFactor (...) end
---@undocumented
---@vararg any
function Sound_SetMusicCombatMaxDistance (...) end
---@undocumented
---@vararg any
function Sound_SetMusicCombatMinDistance (...) end
---@undocumented
---@vararg any
function Sound_SetMusicFilterFactor (...) end
---@undocumented
---@vararg any
function Sound_SetMusicFoWFilterFactor (...) end
---@undocumented
---@vararg any
function Sound_ToggleMusicDebug (...) end
---@undocumented
---@vararg any
function Sound_ToggleRainSurfaceDebug (...) end
---@undocumented
---@vararg any
function Squad_ExtensionEnabled (...) end
---@undocumented
---@vararg any
function Squad_ExtensionName (...) end
---@undocumented
---@vararg any
function Squad_HasAbility (...) end
---@undocumented
---@vararg any
function Squad_HasBuilding (...) end
---@undocumented
---@vararg any
function Squad_HasWeaponHardpoint (...) end
---@undocumented
---@vararg any
function Squad_IsPopCapPreventingInstantReinforce (...) end
---@undocumented
---@vararg any
function StartNIS (...) end
---@undocumented
---@vararg any
function Stats_BalancePrint (...) end
---@undocumented
---@vararg any
function Stats_BeginBalanceStatsDump (...) end
---@undocumented
---@vararg any
function Stats_DumpFramesToDisk (...) end
---@undocumented
---@vararg any
function Stats_EndBalanceStatsDump (...) end
---@undocumented
---@vararg any
function Stats_GetScenarioName (...) end
---@undocumented
---@vararg any
function Stats_ReportGameStats (...) end
---@undocumented
---@vararg any
function StopBlizAudio (...) end
---@undocumented
---@vararg any
function TableCount (...) end
---@undocumented
---@vararg any
function Team_ForEachAllOrAny_LEGACY (...) end
---@undocumented
---@vararg any
function Team_GetPlayers (...) end
---@undocumented
---@vararg any
function ThreatGroup_AddEntity (...) end
---@undocumented
---@vararg any
function ThreatGroup_AddPosition (...) end
---@undocumented
---@vararg any
function ThreatGroup_AddSquad (...) end
---@undocumented
---@vararg any
function ThreatGroup_Create (...) end
---@undocumented
---@vararg any
function ThreatGroup_Destroy (...) end
---@undocumented
---@vararg any
function ThreatGroup_DestroyAll (...) end
---@undocumented
---@vararg any
function ThreatGroup_RemoveEntity (...) end
---@undocumented
---@vararg any
function ThreatGroup_RemovePosition (...) end
---@undocumented
---@vararg any
function ThreatGroup_RemoveSquad (...) end
---@undocumented
---@vararg any
function Timer_Init (...) end
---@undocumented
---@vararg any
function Timer_Validate (...) end
---@undocumented
---@vararg any
function TimeRule_Refresh (...) end
---@undocumented
---@vararg any
function UI_ClearCompany (...) end