@bf6mods/sdk 1.0.2 → 1.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +1467 -1445
- package/dist/index.js +415 -1
- package/dist/index.js.map +1 -1
- package/dist/std/chunk-Bp6m_JJh.js +13 -0
- package/dist/std/index.d.ts +38 -0
- package/dist/std/index.js +247 -0
- package/dist/std/index.js.map +1 -0
- package/package.json +6 -2
package/dist/index.d.ts
CHANGED
|
@@ -14107,58 +14107,59 @@ declare global {
|
|
|
14107
14107
|
}
|
|
14108
14108
|
|
|
14109
14109
|
}
|
|
14110
|
+
//#region src/config/index.d.ts
|
|
14110
14111
|
/**
|
|
14111
14112
|
* Determines the Man-Down behavior when a soldier is downed.
|
|
14112
14113
|
*/
|
|
14113
14114
|
declare enum ManDownExperienceType {
|
|
14114
|
-
|
|
14115
|
-
|
|
14116
|
-
|
|
14115
|
+
Crawl = 0,
|
|
14116
|
+
Downed = 1,
|
|
14117
|
+
InstantDeath = 2,
|
|
14117
14118
|
}
|
|
14118
14119
|
/**
|
|
14119
14120
|
* Controls which type of AI to spawn. PvP AI will automatically spawn and can be replaced by human players. PvE AI is a fixed number that cannot be replaced, for Solo or Co-op experiences.
|
|
14120
14121
|
*/
|
|
14121
14122
|
declare enum AiSpawnType {
|
|
14122
|
-
|
|
14123
|
-
|
|
14124
|
-
|
|
14123
|
+
NoBots = 0,
|
|
14124
|
+
Backfill = 2,
|
|
14125
|
+
Static = 1,
|
|
14125
14126
|
}
|
|
14126
14127
|
/**
|
|
14127
14128
|
* Controls the rules for Squad Spawning, for squad members and squad leaders.
|
|
14128
14129
|
*/
|
|
14129
14130
|
declare enum SquadSpawnType {
|
|
14130
|
-
|
|
14131
|
-
|
|
14132
|
-
|
|
14133
|
-
|
|
14131
|
+
All = 0,
|
|
14132
|
+
SquadmatesOnLeader_LeaderNone = 1,
|
|
14133
|
+
SquadmatesOnLeader_LeaderAll = 2,
|
|
14134
|
+
Disabled = 2,
|
|
14134
14135
|
}
|
|
14135
14136
|
/**
|
|
14136
14137
|
* Controls what type of scoreboard layout to use.
|
|
14137
14138
|
*/
|
|
14138
14139
|
declare enum ScoreboardType {
|
|
14139
|
-
|
|
14140
|
-
|
|
14141
|
-
|
|
14142
|
-
|
|
14143
|
-
|
|
14140
|
+
NotSet = 0,
|
|
14141
|
+
DefaultFAA = 1,
|
|
14142
|
+
Off = 2,
|
|
14143
|
+
CustomTwoTeams = 3,
|
|
14144
|
+
CustomFFA = 4,
|
|
14144
14145
|
}
|
|
14145
14146
|
/**
|
|
14146
14147
|
* Determines the behavior of the Ping command.
|
|
14147
14148
|
*/
|
|
14148
14149
|
declare enum PingBehavior {
|
|
14149
|
-
|
|
14150
|
-
|
|
14150
|
+
PingTargets = 0,
|
|
14151
|
+
Disabled = 1,
|
|
14151
14152
|
}
|
|
14152
14153
|
declare enum ModBuilderGameMode {
|
|
14153
|
-
|
|
14154
|
+
Custom = 2,
|
|
14154
14155
|
}
|
|
14155
14156
|
/**
|
|
14156
14157
|
* Sets the faction for each team.
|
|
14157
14158
|
*/
|
|
14158
14159
|
declare enum FactionID {
|
|
14159
|
-
|
|
14160
|
-
|
|
14161
|
-
|
|
14160
|
+
Pax = -1865993703,
|
|
14161
|
+
MapDefault = 0,
|
|
14162
|
+
NATO = 607944106,
|
|
14162
14163
|
}
|
|
14163
14164
|
/**
|
|
14164
14165
|
* Represents a value that can either apply globally or per team.
|
|
@@ -14170,454 +14171,475 @@ type PerTeam<T> = T | [number, T][];
|
|
|
14170
14171
|
* Describes all configurable mutators for the game.
|
|
14171
14172
|
*/
|
|
14172
14173
|
type Mutators = {
|
|
14173
|
-
|
|
14174
|
-
|
|
14175
|
-
|
|
14176
|
-
|
|
14177
|
-
|
|
14178
|
-
|
|
14179
|
-
|
|
14180
|
-
|
|
14181
|
-
|
|
14182
|
-
|
|
14183
|
-
|
|
14184
|
-
|
|
14185
|
-
|
|
14186
|
-
|
|
14187
|
-
|
|
14188
|
-
|
|
14189
|
-
|
|
14190
|
-
|
|
14191
|
-
|
|
14192
|
-
|
|
14193
|
-
|
|
14194
|
-
|
|
14195
|
-
|
|
14196
|
-
|
|
14197
|
-
|
|
14198
|
-
|
|
14199
|
-
|
|
14200
|
-
|
|
14201
|
-
|
|
14202
|
-
|
|
14203
|
-
|
|
14204
|
-
|
|
14205
|
-
|
|
14206
|
-
|
|
14207
|
-
|
|
14208
|
-
|
|
14209
|
-
|
|
14210
|
-
|
|
14211
|
-
|
|
14212
|
-
|
|
14213
|
-
|
|
14214
|
-
|
|
14215
|
-
|
|
14216
|
-
|
|
14217
|
-
|
|
14218
|
-
|
|
14219
|
-
|
|
14220
|
-
|
|
14221
|
-
|
|
14222
|
-
|
|
14223
|
-
|
|
14224
|
-
|
|
14225
|
-
|
|
14226
|
-
|
|
14227
|
-
|
|
14228
|
-
|
|
14229
|
-
|
|
14230
|
-
|
|
14231
|
-
|
|
14232
|
-
|
|
14233
|
-
|
|
14234
|
-
|
|
14235
|
-
|
|
14236
|
-
|
|
14237
|
-
|
|
14238
|
-
|
|
14239
|
-
|
|
14240
|
-
|
|
14241
|
-
|
|
14242
|
-
|
|
14243
|
-
|
|
14244
|
-
|
|
14245
|
-
|
|
14246
|
-
|
|
14247
|
-
|
|
14248
|
-
|
|
14249
|
-
|
|
14250
|
-
|
|
14251
|
-
|
|
14252
|
-
|
|
14253
|
-
|
|
14254
|
-
|
|
14255
|
-
|
|
14256
|
-
|
|
14257
|
-
|
|
14258
|
-
|
|
14259
|
-
|
|
14260
|
-
|
|
14261
|
-
|
|
14262
|
-
|
|
14263
|
-
|
|
14264
|
-
|
|
14265
|
-
|
|
14266
|
-
|
|
14267
|
-
|
|
14268
|
-
|
|
14269
|
-
|
|
14270
|
-
|
|
14271
|
-
|
|
14272
|
-
|
|
14273
|
-
|
|
14274
|
-
|
|
14275
|
-
|
|
14276
|
-
|
|
14277
|
-
|
|
14278
|
-
|
|
14279
|
-
|
|
14280
|
-
|
|
14281
|
-
|
|
14282
|
-
|
|
14283
|
-
|
|
14284
|
-
|
|
14285
|
-
|
|
14286
|
-
|
|
14287
|
-
|
|
14288
|
-
|
|
14289
|
-
|
|
14290
|
-
|
|
14291
|
-
|
|
14292
|
-
|
|
14293
|
-
|
|
14294
|
-
|
|
14295
|
-
|
|
14296
|
-
|
|
14297
|
-
|
|
14298
|
-
|
|
14299
|
-
|
|
14300
|
-
|
|
14301
|
-
|
|
14302
|
-
|
|
14303
|
-
|
|
14304
|
-
|
|
14305
|
-
|
|
14306
|
-
|
|
14307
|
-
|
|
14308
|
-
|
|
14309
|
-
|
|
14310
|
-
|
|
14311
|
-
|
|
14312
|
-
|
|
14313
|
-
|
|
14314
|
-
|
|
14315
|
-
|
|
14316
|
-
|
|
14317
|
-
|
|
14318
|
-
|
|
14319
|
-
|
|
14320
|
-
|
|
14321
|
-
|
|
14322
|
-
|
|
14323
|
-
|
|
14324
|
-
|
|
14325
|
-
|
|
14326
|
-
|
|
14327
|
-
|
|
14328
|
-
|
|
14329
|
-
|
|
14330
|
-
|
|
14331
|
-
|
|
14332
|
-
|
|
14333
|
-
|
|
14334
|
-
|
|
14335
|
-
|
|
14336
|
-
|
|
14337
|
-
|
|
14338
|
-
|
|
14339
|
-
|
|
14340
|
-
|
|
14341
|
-
|
|
14342
|
-
|
|
14343
|
-
|
|
14344
|
-
|
|
14345
|
-
|
|
14346
|
-
|
|
14347
|
-
|
|
14348
|
-
|
|
14349
|
-
|
|
14350
|
-
|
|
14351
|
-
|
|
14352
|
-
|
|
14353
|
-
|
|
14354
|
-
|
|
14355
|
-
|
|
14356
|
-
|
|
14357
|
-
|
|
14358
|
-
|
|
14359
|
-
|
|
14360
|
-
|
|
14361
|
-
|
|
14362
|
-
|
|
14363
|
-
|
|
14364
|
-
|
|
14365
|
-
|
|
14366
|
-
|
|
14367
|
-
|
|
14368
|
-
|
|
14369
|
-
|
|
14370
|
-
|
|
14371
|
-
|
|
14372
|
-
|
|
14373
|
-
|
|
14374
|
-
|
|
14375
|
-
|
|
14376
|
-
|
|
14377
|
-
|
|
14378
|
-
|
|
14379
|
-
|
|
14380
|
-
|
|
14381
|
-
|
|
14382
|
-
|
|
14383
|
-
|
|
14384
|
-
|
|
14385
|
-
|
|
14386
|
-
|
|
14387
|
-
|
|
14388
|
-
|
|
14389
|
-
|
|
14390
|
-
|
|
14391
|
-
|
|
14392
|
-
|
|
14393
|
-
|
|
14394
|
-
|
|
14395
|
-
|
|
14396
|
-
|
|
14397
|
-
|
|
14398
|
-
|
|
14399
|
-
|
|
14400
|
-
|
|
14401
|
-
|
|
14402
|
-
|
|
14403
|
-
|
|
14404
|
-
|
|
14405
|
-
|
|
14406
|
-
|
|
14407
|
-
|
|
14408
|
-
|
|
14409
|
-
|
|
14410
|
-
|
|
14411
|
-
|
|
14412
|
-
|
|
14413
|
-
|
|
14414
|
-
|
|
14415
|
-
|
|
14416
|
-
|
|
14417
|
-
|
|
14418
|
-
|
|
14419
|
-
|
|
14420
|
-
|
|
14421
|
-
|
|
14422
|
-
|
|
14423
|
-
|
|
14424
|
-
|
|
14425
|
-
|
|
14426
|
-
|
|
14427
|
-
|
|
14428
|
-
|
|
14429
|
-
|
|
14430
|
-
|
|
14431
|
-
|
|
14432
|
-
|
|
14433
|
-
|
|
14434
|
-
|
|
14435
|
-
|
|
14436
|
-
|
|
14437
|
-
|
|
14438
|
-
|
|
14439
|
-
|
|
14440
|
-
|
|
14441
|
-
|
|
14442
|
-
|
|
14443
|
-
|
|
14444
|
-
|
|
14445
|
-
|
|
14446
|
-
|
|
14447
|
-
|
|
14448
|
-
|
|
14449
|
-
|
|
14450
|
-
|
|
14451
|
-
|
|
14452
|
-
|
|
14453
|
-
|
|
14454
|
-
|
|
14455
|
-
|
|
14456
|
-
|
|
14457
|
-
|
|
14458
|
-
|
|
14459
|
-
|
|
14460
|
-
|
|
14461
|
-
|
|
14462
|
-
|
|
14463
|
-
|
|
14464
|
-
|
|
14465
|
-
|
|
14466
|
-
|
|
14467
|
-
|
|
14468
|
-
|
|
14469
|
-
|
|
14470
|
-
|
|
14471
|
-
|
|
14472
|
-
|
|
14473
|
-
|
|
14474
|
-
|
|
14475
|
-
|
|
14476
|
-
|
|
14477
|
-
|
|
14478
|
-
|
|
14479
|
-
|
|
14480
|
-
|
|
14481
|
-
|
|
14482
|
-
|
|
14483
|
-
|
|
14484
|
-
|
|
14485
|
-
|
|
14486
|
-
|
|
14487
|
-
|
|
14488
|
-
|
|
14489
|
-
|
|
14490
|
-
|
|
14491
|
-
|
|
14492
|
-
|
|
14493
|
-
|
|
14494
|
-
|
|
14495
|
-
|
|
14496
|
-
|
|
14497
|
-
|
|
14498
|
-
|
|
14499
|
-
|
|
14500
|
-
|
|
14501
|
-
|
|
14502
|
-
|
|
14503
|
-
|
|
14504
|
-
|
|
14505
|
-
|
|
14506
|
-
|
|
14507
|
-
|
|
14508
|
-
|
|
14509
|
-
|
|
14510
|
-
|
|
14511
|
-
|
|
14512
|
-
|
|
14513
|
-
|
|
14514
|
-
|
|
14515
|
-
|
|
14516
|
-
|
|
14517
|
-
|
|
14518
|
-
|
|
14519
|
-
|
|
14520
|
-
|
|
14521
|
-
|
|
14522
|
-
|
|
14523
|
-
|
|
14524
|
-
|
|
14525
|
-
|
|
14526
|
-
|
|
14527
|
-
|
|
14528
|
-
|
|
14529
|
-
|
|
14530
|
-
|
|
14531
|
-
|
|
14532
|
-
|
|
14533
|
-
|
|
14534
|
-
|
|
14535
|
-
|
|
14536
|
-
|
|
14537
|
-
|
|
14538
|
-
|
|
14539
|
-
|
|
14540
|
-
|
|
14541
|
-
|
|
14542
|
-
|
|
14543
|
-
|
|
14544
|
-
|
|
14545
|
-
|
|
14546
|
-
|
|
14547
|
-
|
|
14548
|
-
|
|
14549
|
-
|
|
14550
|
-
|
|
14551
|
-
|
|
14552
|
-
|
|
14553
|
-
|
|
14554
|
-
|
|
14555
|
-
|
|
14556
|
-
|
|
14557
|
-
|
|
14558
|
-
|
|
14559
|
-
|
|
14560
|
-
|
|
14561
|
-
|
|
14562
|
-
|
|
14563
|
-
|
|
14564
|
-
|
|
14565
|
-
|
|
14566
|
-
|
|
14567
|
-
|
|
14568
|
-
|
|
14569
|
-
|
|
14570
|
-
|
|
14571
|
-
|
|
14572
|
-
|
|
14573
|
-
|
|
14574
|
-
|
|
14575
|
-
|
|
14576
|
-
|
|
14577
|
-
|
|
14578
|
-
|
|
14579
|
-
|
|
14580
|
-
|
|
14581
|
-
|
|
14582
|
-
|
|
14583
|
-
|
|
14584
|
-
|
|
14585
|
-
|
|
14586
|
-
|
|
14587
|
-
|
|
14588
|
-
|
|
14589
|
-
|
|
14590
|
-
|
|
14591
|
-
|
|
14592
|
-
|
|
14593
|
-
|
|
14594
|
-
|
|
14595
|
-
|
|
14596
|
-
|
|
14597
|
-
|
|
14598
|
-
|
|
14599
|
-
|
|
14600
|
-
|
|
14601
|
-
|
|
14602
|
-
|
|
14603
|
-
|
|
14604
|
-
|
|
14605
|
-
|
|
14606
|
-
|
|
14607
|
-
|
|
14608
|
-
|
|
14609
|
-
|
|
14610
|
-
|
|
14611
|
-
|
|
14612
|
-
|
|
14613
|
-
|
|
14614
|
-
|
|
14615
|
-
|
|
14616
|
-
|
|
14617
|
-
|
|
14618
|
-
|
|
14619
|
-
|
|
14620
|
-
|
|
14174
|
+
/**
|
|
14175
|
+
* Whether AI is allowed to go prone per team or globally.
|
|
14176
|
+
* If global: `true | false`
|
|
14177
|
+
* If per team: `[[teamIndex, isProneAllowed], ...]`
|
|
14178
|
+
*/
|
|
14179
|
+
AI_ProneAllowed_PerTeam: PerTeam<boolean>;
|
|
14180
|
+
/**
|
|
14181
|
+
* Maximum number of players allowed per team or globally.
|
|
14182
|
+
* If global: `number`
|
|
14183
|
+
* If per team: `[[teamIndex, maxPlayers], ...]`
|
|
14184
|
+
*/
|
|
14185
|
+
MaxPlayerCount_PerTeam: PerTeam<number>;
|
|
14186
|
+
/**
|
|
14187
|
+
* Maximum number of AI allowed per team or globally.
|
|
14188
|
+
* If global: `number`
|
|
14189
|
+
* If per team: `[[teamIndex, maxAI], ...]`
|
|
14190
|
+
*/
|
|
14191
|
+
AiMaxCount_PerTeam: PerTeam<number>;
|
|
14192
|
+
/**
|
|
14193
|
+
* Determines the global AI spawn behavior.
|
|
14194
|
+
* Possible values depend on the internal AI spawn type enumeration.
|
|
14195
|
+
* If global: `SpawnType`
|
|
14196
|
+
* If per team: `[[teamIndex, SpawnType], ...]`
|
|
14197
|
+
*/
|
|
14198
|
+
AiSpawnType: AiSpawnType;
|
|
14199
|
+
/**
|
|
14200
|
+
* Multiplies damage taken from falling. Values lower than 1.0 reduce damage, while values greater than 1.0 increase damage.
|
|
14201
|
+
* If global: `number`
|
|
14202
|
+
* If per team: `[[teamIndex, multiplier], ...]`
|
|
14203
|
+
*/
|
|
14204
|
+
FallDamageHeightMultiplier_PerTeam: PerTeam<number>;
|
|
14205
|
+
/**
|
|
14206
|
+
* Defines the "Man Down" experience type per team or globally.
|
|
14207
|
+
* If global: `ManDownExperienceType`
|
|
14208
|
+
* If per team: `[[teamIndex, ManDownExperienceType], ...]`
|
|
14209
|
+
*/
|
|
14210
|
+
ManDownExperienceType_PerTeam: PerTeam<ManDownExperienceType>;
|
|
14211
|
+
/**
|
|
14212
|
+
* Whether sprint-strafing is allowed per team or globally.
|
|
14213
|
+
* If global: `true | false`
|
|
14214
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14215
|
+
*/
|
|
14216
|
+
SprintStrafeAllowed_PerTeam: PerTeam<boolean>;
|
|
14217
|
+
/**
|
|
14218
|
+
* The total number of teams supported in this game mode.
|
|
14219
|
+
*/
|
|
14220
|
+
MaxTeamCount: number;
|
|
14221
|
+
/**
|
|
14222
|
+
* Whether passengers are allowed in vehicles.
|
|
14223
|
+
*/
|
|
14224
|
+
Vehicle_AllowPassengers: boolean;
|
|
14225
|
+
/**
|
|
14226
|
+
* Whether AI are allowed to occupy passenger seats in vehicles.
|
|
14227
|
+
*/
|
|
14228
|
+
AI_Vehicle_AllowAiInPassengerSeats: boolean;
|
|
14229
|
+
/**
|
|
14230
|
+
* Whether friendly identification (friend/foe visibility)
|
|
14231
|
+
* is allowed per team or globally.
|
|
14232
|
+
* If global: `true | false`
|
|
14233
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14234
|
+
*/
|
|
14235
|
+
FriendlyIdentificationAllowed_PerTeam: PerTeam<boolean>;
|
|
14236
|
+
/**
|
|
14237
|
+
* Whether squad revive is allowed per team or globally.
|
|
14238
|
+
* If global: `true | false`
|
|
14239
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14240
|
+
*/
|
|
14241
|
+
SquadReviveAllowed_PerTeam: PerTeam<boolean>;
|
|
14242
|
+
/**
|
|
14243
|
+
* Whether aim assist snap zoom is enabled globally.
|
|
14244
|
+
*/
|
|
14245
|
+
AimAssistSnapZoomEnabled: boolean;
|
|
14246
|
+
/**
|
|
14247
|
+
* Whether prone is allowed per team or globally.
|
|
14248
|
+
* If global: `true | false`
|
|
14249
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14250
|
+
*/
|
|
14251
|
+
ProneAllowed_PerTeam: PerTeam<boolean>;
|
|
14252
|
+
/**
|
|
14253
|
+
* Whether vehicle health regeneration is allowed per team or globally.
|
|
14254
|
+
* If global: `true | false`
|
|
14255
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14256
|
+
*/
|
|
14257
|
+
VehicleHealthRegenAllowed_PerTeam: PerTeam<boolean>;
|
|
14258
|
+
/**
|
|
14259
|
+
* Whether infinite weapon magazines are enabled per team or globally.
|
|
14260
|
+
* If global: `true | false`
|
|
14261
|
+
* If per team: `[[teamIndex, isEnabled], ...]`
|
|
14262
|
+
*/
|
|
14263
|
+
InfiniteWeaponMagazines_PerTeam: PerTeam<boolean>;
|
|
14264
|
+
/**
|
|
14265
|
+
* Whether sprinting is allowed per team or globally.
|
|
14266
|
+
* If global: `true | false`
|
|
14267
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14268
|
+
*/
|
|
14269
|
+
SprintAllowed_PerTeam: PerTeam<boolean>;
|
|
14270
|
+
/**
|
|
14271
|
+
* Whether soldier health regeneration is allowed per team or globally.
|
|
14272
|
+
* If global: `true | false`
|
|
14273
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14274
|
+
*/
|
|
14275
|
+
SoldierHealthRegenAllowed_PerTeam: PerTeam<boolean>;
|
|
14276
|
+
/**
|
|
14277
|
+
* Whether stationary emplacements (e.g. turrets) are allowed globally.
|
|
14278
|
+
*/
|
|
14279
|
+
StationaryEmplacementsAllowed: boolean;
|
|
14280
|
+
/**
|
|
14281
|
+
* Whether sliding is allowed per team or globally.
|
|
14282
|
+
* If global: `true | false`
|
|
14283
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14284
|
+
*/
|
|
14285
|
+
SlideAllowed_PerTeam: PerTeam<boolean>;
|
|
14286
|
+
/**
|
|
14287
|
+
* Whether the compass is allowed per team or globally.
|
|
14288
|
+
* If global: `true | false`
|
|
14289
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14290
|
+
*/
|
|
14291
|
+
CompassAllowed_PerTeam: PerTeam<boolean>;
|
|
14292
|
+
/**
|
|
14293
|
+
* Whether the minimap is allowed per team or globally.
|
|
14294
|
+
* If global: `true | false`
|
|
14295
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14296
|
+
*/
|
|
14297
|
+
MinimapAllowed_PerTeam: PerTeam<boolean>;
|
|
14298
|
+
/**
|
|
14299
|
+
* Defines ping behavior per team or globally.
|
|
14300
|
+
* Likely corresponds to an internal ping mode enumeration.
|
|
14301
|
+
* If global: `PingBehavior`
|
|
14302
|
+
* If per team: `[[teamIndex, PingBehavior], ...]`
|
|
14303
|
+
*/
|
|
14304
|
+
PingBehavior_PerTeam: PerTeam<PingBehavior>;
|
|
14305
|
+
/**
|
|
14306
|
+
* Whether the HUD (Heads-Up Display) is allowed per team or globally.
|
|
14307
|
+
* If global: `true | false`
|
|
14308
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14309
|
+
*/
|
|
14310
|
+
HUDAllowed_PerTeam: PerTeam<boolean>;
|
|
14311
|
+
/**
|
|
14312
|
+
* Multiplies the soldier's maximum health.
|
|
14313
|
+
* Values lower than 1.0 reduce health, while values greater than 1.0 increase health.
|
|
14314
|
+
* If global: `number`
|
|
14315
|
+
* If per team: `[[teamIndex, multiplier], ...]`
|
|
14316
|
+
*/
|
|
14317
|
+
SoldierMaxHealthMultiplier_PerTeam: PerTeam<number>;
|
|
14318
|
+
/**
|
|
14319
|
+
* Multiplies the soldier respawn delay time.
|
|
14320
|
+
* Values lower than 1.0 shorten respawn time, while values greater than 1.0 increase it.
|
|
14321
|
+
* If global: `number`
|
|
14322
|
+
* If per team: `[[teamIndex, multiplier], ...]`
|
|
14323
|
+
*/
|
|
14324
|
+
SoldierRespawnDelayMultiplier_PerTeam: PerTeam<number>;
|
|
14325
|
+
/**
|
|
14326
|
+
* Multiplies the maximum vehicle health.
|
|
14327
|
+
* Values lower than 1.0 reduce health, while values greater than 1.0 increase health.
|
|
14328
|
+
* If global: `number`
|
|
14329
|
+
* If per team: `[[teamIndex, multiplier], ...]`
|
|
14330
|
+
*/
|
|
14331
|
+
VehicleMaxHealthMultiplier_PerTeam: PerTeam<number>;
|
|
14332
|
+
/**
|
|
14333
|
+
* Multiplies the speed of all projectiles globally.
|
|
14334
|
+
* Values lower than 1.0 slow down projectiles, while values greater than 1.0 speed them up.
|
|
14335
|
+
*/
|
|
14336
|
+
ProjectileSpeedMultiplier: number;
|
|
14337
|
+
/**
|
|
14338
|
+
* Multiplies bodyshot damage per team or globally.
|
|
14339
|
+
* Values lower than 1.0 reduce damage, while values greater than 1.0 increase damage.
|
|
14340
|
+
* If global: `number`
|
|
14341
|
+
* If per team: `[[teamIndex, multiplier], ...]`
|
|
14342
|
+
*/
|
|
14343
|
+
BodyshotMultiplier_PerTeam: PerTeam<number>;
|
|
14344
|
+
/**
|
|
14345
|
+
* Multiplies headshot damage per team or globally.
|
|
14346
|
+
* Values lower than 1.0 reduce damage, while values greater than 1.0 increase damage.
|
|
14347
|
+
* If global: `number`
|
|
14348
|
+
* If per team: `[[teamIndex, multiplier], ...]`
|
|
14349
|
+
*/
|
|
14350
|
+
HeadshotMultiplier_PerTeam: PerTeam<number>;
|
|
14351
|
+
/**
|
|
14352
|
+
* Multiplies damage dealt to vehicles per team or globally.
|
|
14353
|
+
* Values lower than 1.0 reduce damage, while values greater than 1.0 increase damage.
|
|
14354
|
+
* If global: `number`
|
|
14355
|
+
* If per team: `[[teamIndex, multiplier], ...]`
|
|
14356
|
+
*/
|
|
14357
|
+
VehicleDamageMultiplier_PerTeam: PerTeam<number>;
|
|
14358
|
+
/**
|
|
14359
|
+
* Multiplies the rate at which vehicles regenerate health per team or globally.
|
|
14360
|
+
* Values lower than 1.0 slow regeneration, while values greater than 1.0 speed it up.
|
|
14361
|
+
* If global: `number`
|
|
14362
|
+
* If per team: `[[teamIndex, multiplier], ...]`
|
|
14363
|
+
*/
|
|
14364
|
+
VehicleRegenRateMultiplier_PerTeam: PerTeam<number>;
|
|
14365
|
+
/**
|
|
14366
|
+
* Multiplies the soldier health regeneration rate per team or globally.
|
|
14367
|
+
* Values lower than 1.0 slow regeneration, while values greater than 1.0 speed it up.
|
|
14368
|
+
* If global: `number`
|
|
14369
|
+
* If per team: `[[teamIndex, multiplier], ...]`
|
|
14370
|
+
*/
|
|
14371
|
+
SoldierRegenRateMultiplier_PerTeam: PerTeam<number>;
|
|
14372
|
+
/**
|
|
14373
|
+
* Defines the scoreboard type globally.
|
|
14374
|
+
* Corresponds to an internal scoreboard display mode enumeration.
|
|
14375
|
+
*/
|
|
14376
|
+
ScoreboardType: ScoreboardType;
|
|
14377
|
+
/**
|
|
14378
|
+
* Defines the "Man Down" experience type for AI per team or globally.
|
|
14379
|
+
* If global: `ManDownExperienceType`
|
|
14380
|
+
* If per team: `[[teamIndex, ManDownExperienceType], ...]`
|
|
14381
|
+
*/
|
|
14382
|
+
AI_ManDownExperienceType_PerTeam: PerTeam<ManDownExperienceType>;
|
|
14383
|
+
/**
|
|
14384
|
+
* Multiplies AI soldier movement speed per team or globally.
|
|
14385
|
+
* Values lower than 1.0 reduce speed, while values greater than 1.0 increase speed.
|
|
14386
|
+
* If global: `number`
|
|
14387
|
+
* If per team: `[[teamIndex, multiplier], ...]`
|
|
14388
|
+
*/
|
|
14389
|
+
AI_SoldierMovementSpeedMultiplier_PerTeam: PerTeam<number>;
|
|
14390
|
+
/**
|
|
14391
|
+
* Whether AI sprinting is allowed per team or globally.
|
|
14392
|
+
* If global: `true | false`
|
|
14393
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14394
|
+
*/
|
|
14395
|
+
AI_SprintAllowed_PerTeam: PerTeam<boolean>;
|
|
14396
|
+
/**
|
|
14397
|
+
* Whether AI are allowed to exit vehicles per team or globally.
|
|
14398
|
+
* If global: `true | false`
|
|
14399
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14400
|
+
*/
|
|
14401
|
+
AI_ExitVehiclesAllowed_PerTeam: PerTeam<boolean>;
|
|
14402
|
+
/**
|
|
14403
|
+
* Whether infinite weapon ammunition is enabled per team or globally.
|
|
14404
|
+
* If global: `true | false`
|
|
14405
|
+
* If per team: `[[teamIndex, isEnabled], ...]`
|
|
14406
|
+
*/
|
|
14407
|
+
InfiniteWeaponAmmo_PerTeam: PerTeam<boolean>;
|
|
14408
|
+
/**
|
|
14409
|
+
* Whether AI soldier health regeneration is allowed per team or globally.
|
|
14410
|
+
* If global: `true | false`
|
|
14411
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14412
|
+
*/
|
|
14413
|
+
AI_SoldierHealthRegenAllowed_PerTeam: PerTeam<boolean>;
|
|
14414
|
+
/**
|
|
14415
|
+
* Multiplies AI soldier maximum health per team or globally.
|
|
14416
|
+
* Values lower than 1.0 reduce health, while values greater than 1.0 increase health.
|
|
14417
|
+
* If global: `number`
|
|
14418
|
+
* If per team: `[[teamIndex, multiplier], ...]`
|
|
14419
|
+
*/
|
|
14420
|
+
AI_SoldierMaxHealthMultiplier_PerTeam: PerTeam<number>;
|
|
14421
|
+
/**
|
|
14422
|
+
* Multiplies AI soldier health regeneration rate per team or globally.
|
|
14423
|
+
* Values lower than 1.0 slow regeneration, while values greater than 1.0 speed it up.
|
|
14424
|
+
* If global: `number`
|
|
14425
|
+
* If per team: `[[teamIndex, multiplier], ...]`
|
|
14426
|
+
*/
|
|
14427
|
+
AI_SoldierRegenRateMultiplier_PerTeam: PerTeam<number>;
|
|
14428
|
+
/**
|
|
14429
|
+
* Multiplies AI damage dealt per team or globally.
|
|
14430
|
+
* Values lower than 1.0 reduce damage, while values greater than 1.0 increase damage.
|
|
14431
|
+
* If global: `number`
|
|
14432
|
+
* If per team: `[[teamIndex, multiplier], ...]`
|
|
14433
|
+
*/
|
|
14434
|
+
AI_DamageMultiplier_PerTeam: PerTeam<number>;
|
|
14435
|
+
/**
|
|
14436
|
+
* Whether aim assist slowdown is enabled globally.
|
|
14437
|
+
*/
|
|
14438
|
+
AimAssistSlowdownEnabled: boolean;
|
|
14439
|
+
/**
|
|
14440
|
+
* Multiplies soldier movement speed per team or globally.
|
|
14441
|
+
* Values lower than 1.0 reduce speed, while values greater than 1.0 increase speed.
|
|
14442
|
+
* If global: `number`
|
|
14443
|
+
* If per team: `[[teamIndex, multiplier], ...]`
|
|
14444
|
+
*/
|
|
14445
|
+
SoldierMovementSpeedMultiplier_PerTeam: PerTeam<number>;
|
|
14446
|
+
/**
|
|
14447
|
+
* Whether crosshairs (reticles) are allowed per team or globally.
|
|
14448
|
+
* If global: `true | false`
|
|
14449
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14450
|
+
*/
|
|
14451
|
+
CrosshairsAllowed_PerTeam: PerTeam<boolean>;
|
|
14452
|
+
/**
|
|
14453
|
+
* Multiplies AI vehicle damage dealt per team or globally.
|
|
14454
|
+
* Values lower than 1.0 reduce damage, while values greater than 1.0 increase damage.
|
|
14455
|
+
* If global: `number`
|
|
14456
|
+
* If per team: `[[teamIndex, multiplier], ...]`
|
|
14457
|
+
*/
|
|
14458
|
+
AI_VehicleDamageMultiplier_PerTeam: PerTeam<number>;
|
|
14459
|
+
/**
|
|
14460
|
+
* Whether AI are allowed to spawn on foot per team or globally.
|
|
14461
|
+
* If global: `true | false`
|
|
14462
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14463
|
+
*/
|
|
14464
|
+
AI_OnFootSpawnAllowed_PerTeam: PerTeam<boolean>;
|
|
14465
|
+
/**
|
|
14466
|
+
* Defines the AI squad spawn mode per team or globally.
|
|
14467
|
+
* Corresponds to an internal AI squad spawn behavior enumeration.
|
|
14468
|
+
* If global: `number`
|
|
14469
|
+
* If per team: `[[teamIndex, mode], ...]`
|
|
14470
|
+
*/
|
|
14471
|
+
AI_SquadSpawnMode_PerTeam: SquadSpawnType;
|
|
14472
|
+
/**
|
|
14473
|
+
* Multiplies AI soldier respawn delay time per team or globally.
|
|
14474
|
+
* Values lower than 1.0 shorten respawn time, while values greater than 1.0 increase it.
|
|
14475
|
+
* If global: `number`
|
|
14476
|
+
* If per team: `[[teamIndex, multiplier], ...]`
|
|
14477
|
+
*/
|
|
14478
|
+
AI_SoldierRespawnDelayMultiplier_PerTeam: PerTeam<number>;
|
|
14479
|
+
/**
|
|
14480
|
+
* Whether friendly fire damage reflection is enabled globally.
|
|
14481
|
+
*/
|
|
14482
|
+
FriendlyFireDamageReflectionEnabled: boolean;
|
|
14483
|
+
/**
|
|
14484
|
+
* Defines the current mod builder game mode globally.
|
|
14485
|
+
* Corresponds to an internal game mode enumeration.
|
|
14486
|
+
*/
|
|
14487
|
+
ModBuilder_GameMode: ModBuilderGameMode;
|
|
14488
|
+
/**
|
|
14489
|
+
* Multiplies the radius of the aim assist snap capsule globally.
|
|
14490
|
+
* Values lower than 1.0 reduce radius, while values greater than 1.0 increase radius.
|
|
14491
|
+
*/
|
|
14492
|
+
AimAssistSnapCapsuleRadiusMultiplier: number;
|
|
14493
|
+
/**
|
|
14494
|
+
* Maximum number of team kills before friendly fire damage reflection activates.
|
|
14495
|
+
*/
|
|
14496
|
+
FriendlyFireDamageReflectionMaxTeamKills: number;
|
|
14497
|
+
/**
|
|
14498
|
+
* Defines the total game time for the Portal experience in minutes.
|
|
14499
|
+
* Max of 60 minutes
|
|
14500
|
+
*/
|
|
14501
|
+
fPortalExperienceGameTime: number;
|
|
14502
|
+
/**
|
|
14503
|
+
* Defines the maximum squad size per team or globally.
|
|
14504
|
+
* If global: `number`
|
|
14505
|
+
* If per team: `[[teamIndex, squadSize], ...]`
|
|
14506
|
+
*/
|
|
14507
|
+
SquadSize_PerTeam: PerTeam<number>;
|
|
14508
|
+
/**
|
|
14509
|
+
* Whether third-person vehicle camera views are disabled globally.
|
|
14510
|
+
*/
|
|
14511
|
+
DisableVehicle3p: boolean;
|
|
14512
|
+
/**
|
|
14513
|
+
* Controls whether reloading a magazine causes the soldier or vehicle to lose any remaining ammo within the currently loaded magazine.
|
|
14514
|
+
*/
|
|
14515
|
+
ReloadWholeWeaponMagazines: boolean;
|
|
14516
|
+
/**
|
|
14517
|
+
* Controls the degree of feedback given to the player via audio or visual cues.
|
|
14518
|
+
*/
|
|
14519
|
+
bPortalRestrictedGameFeedback: boolean;
|
|
14520
|
+
/**
|
|
14521
|
+
* Whether health bars are allowed per team or globally.
|
|
14522
|
+
* If global: `true | false`
|
|
14523
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14524
|
+
*/
|
|
14525
|
+
HealthBarAllowed_PerTeam: PerTeam<boolean>;
|
|
14526
|
+
/**
|
|
14527
|
+
* Whether damage numbers (floating hit indicators) are hidden per team or globally.
|
|
14528
|
+
* If global: `true | false`
|
|
14529
|
+
* If per team: `[[teamIndex, isHidden], ...]`
|
|
14530
|
+
*/
|
|
14531
|
+
HideDamageNumbers_PerTeam: PerTeam<boolean>;
|
|
14532
|
+
/**
|
|
14533
|
+
* Whether hit indicators are allowed per team or globally.
|
|
14534
|
+
* If global: `true | false`
|
|
14535
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14536
|
+
*/
|
|
14537
|
+
HitIndicatorAllowed_PerTeam: PerTeam<boolean>;
|
|
14538
|
+
/**
|
|
14539
|
+
* Whether HUD inventory auto-hide is enabled per team or globally.
|
|
14540
|
+
* If global: `true | false`
|
|
14541
|
+
* If per team: `[[teamIndex, isEnabled], ...]`
|
|
14542
|
+
*/
|
|
14543
|
+
HUDInventoryAutoHide_PerTeam: PerTeam<boolean>;
|
|
14544
|
+
/**
|
|
14545
|
+
* Whether reduced friendly world icons are used globally.
|
|
14546
|
+
*/
|
|
14547
|
+
UseReducedFriendlyWorldIcon: boolean;
|
|
14548
|
+
/**
|
|
14549
|
+
* Whether capture point scaling is allowed globally.
|
|
14550
|
+
*/
|
|
14551
|
+
CapturePointScaleAllowed: boolean;
|
|
14552
|
+
/**
|
|
14553
|
+
* Whether the kill feed (kill log) is allowed per team or globally.
|
|
14554
|
+
* If global: `true | false`
|
|
14555
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14556
|
+
*/
|
|
14557
|
+
KillFeedAllowed_PerTeam: PerTeam<boolean>;
|
|
14558
|
+
/**
|
|
14559
|
+
* Whether the squad list UI element is allowed per team or globally.
|
|
14560
|
+
* If global: `true | false`
|
|
14561
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14562
|
+
*/
|
|
14563
|
+
SquadListAllowed_PerTeam: PerTeam<boolean>;
|
|
14564
|
+
/**
|
|
14565
|
+
* Whether voice-over (VO) communication is restricted globally.
|
|
14566
|
+
*/
|
|
14567
|
+
bRestrictCommunicationVO: boolean;
|
|
14568
|
+
/**
|
|
14569
|
+
* Whether UI-based communication (pings, menus, etc.) is restricted globally.
|
|
14570
|
+
*/
|
|
14571
|
+
bRestrictCommunicationUI: boolean;
|
|
14572
|
+
/**
|
|
14573
|
+
* Whether player spotting is allowed globally.
|
|
14574
|
+
*/
|
|
14575
|
+
SpottingAllowed: boolean;
|
|
14576
|
+
/**
|
|
14577
|
+
* Controls whether AI can navigate the map, turning it off will decrease loading times.
|
|
14578
|
+
*/
|
|
14579
|
+
Portal_GenerateNavMesh: boolean;
|
|
14580
|
+
/**
|
|
14581
|
+
* Defines the game mode start timer for spawn balancing, in seconds.
|
|
14582
|
+
* Note: This is a best guess and is undocumneted currently, if you notice it is something else
|
|
14583
|
+
* please create an issue
|
|
14584
|
+
*/
|
|
14585
|
+
SpawnBalancing_GamemodeStartTimer: number;
|
|
14586
|
+
/**
|
|
14587
|
+
* Defines the player count ratio used for spawn balancing calculations.
|
|
14588
|
+
* Typically a value between 0.0 and 1.0.
|
|
14589
|
+
* Note: This is a best guess and is undocumneted currently, if you notice it is something else
|
|
14590
|
+
* please create an issue
|
|
14591
|
+
*/
|
|
14592
|
+
SpawnBalancing_GamemodePlayerCountRatio: number;
|
|
14593
|
+
/**
|
|
14594
|
+
* Specifies the lobby player count threshold used to start a match in Conquest (CQ) game modes.
|
|
14595
|
+
* The timer will begin counting down once this player count is reached.
|
|
14596
|
+
* Note: This is a best guess and is undocumented currently; if you notice it behaves differently,
|
|
14597
|
+
* please create an issue.
|
|
14598
|
+
*/
|
|
14599
|
+
CQ_iLobbyPlayerCountStartTimer: number;
|
|
14600
|
+
/**
|
|
14601
|
+
* Specifies the lobby player count threshold used to start a match in Breakthrough (BT) game modes.
|
|
14602
|
+
* The timer will begin counting down once this player count is reached.
|
|
14603
|
+
* Note: This is a best guess and is undocumented currently; if you notice it behaves differently,
|
|
14604
|
+
* please create an issue.
|
|
14605
|
+
*/
|
|
14606
|
+
BT_iLobbyPlayerCountStartTimer: number;
|
|
14607
|
+
/**
|
|
14608
|
+
* Specifies the lobby player count threshold used to start a match in Rush game modes.
|
|
14609
|
+
* The timer will begin counting down once this player count is reached.
|
|
14610
|
+
* Note: This is a best guess and is undocumented currently; if you notice it behaves differently,
|
|
14611
|
+
* please create an issue.
|
|
14612
|
+
*/
|
|
14613
|
+
Rush_iLobbyPlayerCountStartTimer: number;
|
|
14614
|
+
/**
|
|
14615
|
+
* Defines the faction ID per team or globally.
|
|
14616
|
+
* If global: `FactionID`
|
|
14617
|
+
* If per team: `[[teamIndex, FactionID], ...]`
|
|
14618
|
+
*/
|
|
14619
|
+
FactionID_PerTeam: PerTeam<FactionID>;
|
|
14620
|
+
/**
|
|
14621
|
+
* Whether class-locked weapon loadouts are enabled globally.
|
|
14622
|
+
*/
|
|
14623
|
+
EnableClassLockedWeaponLoadouts: boolean;
|
|
14624
|
+
/**
|
|
14625
|
+
* Whether on-foot spawning is allowed per team or globally.
|
|
14626
|
+
* If global: `true | false`
|
|
14627
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14628
|
+
*/
|
|
14629
|
+
OnFootSpawnAllowed_PerTeam: PerTeam<boolean>;
|
|
14630
|
+
/**
|
|
14631
|
+
* Whether exiting vehicles is allowed per team or globally.
|
|
14632
|
+
* If global: `true | false`
|
|
14633
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14634
|
+
*/
|
|
14635
|
+
ExitVehiclesAllowed_PerTeam: PerTeam<boolean>;
|
|
14636
|
+
/**
|
|
14637
|
+
* Multiplies the vehicle spawn delay per team or globally.
|
|
14638
|
+
* Values lower than 1.0 shorten delay, while values greater than 1.0 increase it.
|
|
14639
|
+
* If global: `number`
|
|
14640
|
+
* If per team: `[[teamIndex, multiplier], ...]`
|
|
14641
|
+
*/
|
|
14642
|
+
VehicleSpawnDelayMultiplier_PerTeam: PerTeam<number>;
|
|
14621
14643
|
};
|
|
14622
14644
|
/**
|
|
14623
14645
|
* Describes all configurable asset restrictions for the game.
|
|
@@ -14625,968 +14647,966 @@ type Mutators = {
|
|
|
14625
14647
|
* or per team (as an array of [teamIndex, value] pairs).
|
|
14626
14648
|
*/
|
|
14627
14649
|
type AssetRestrictions = {
|
|
14628
|
-
|
|
14629
|
-
|
|
14630
|
-
|
|
14631
|
-
|
|
14632
|
-
|
|
14633
|
-
|
|
14634
|
-
|
|
14635
|
-
|
|
14636
|
-
|
|
14637
|
-
|
|
14638
|
-
|
|
14639
|
-
|
|
14640
|
-
|
|
14641
|
-
|
|
14642
|
-
|
|
14643
|
-
|
|
14644
|
-
|
|
14645
|
-
|
|
14646
|
-
|
|
14647
|
-
|
|
14648
|
-
|
|
14649
|
-
|
|
14650
|
-
|
|
14651
|
-
|
|
14652
|
-
|
|
14653
|
-
|
|
14654
|
-
|
|
14655
|
-
|
|
14656
|
-
|
|
14657
|
-
|
|
14658
|
-
|
|
14659
|
-
|
|
14660
|
-
|
|
14661
|
-
|
|
14662
|
-
|
|
14663
|
-
|
|
14664
|
-
|
|
14665
|
-
|
|
14666
|
-
|
|
14667
|
-
|
|
14668
|
-
|
|
14669
|
-
|
|
14670
|
-
|
|
14671
|
-
|
|
14672
|
-
|
|
14673
|
-
|
|
14674
|
-
|
|
14675
|
-
|
|
14676
|
-
|
|
14677
|
-
|
|
14678
|
-
|
|
14679
|
-
|
|
14680
|
-
|
|
14681
|
-
|
|
14682
|
-
|
|
14683
|
-
|
|
14684
|
-
|
|
14685
|
-
|
|
14686
|
-
|
|
14687
|
-
|
|
14688
|
-
|
|
14689
|
-
|
|
14690
|
-
|
|
14691
|
-
|
|
14692
|
-
|
|
14693
|
-
|
|
14694
|
-
|
|
14695
|
-
|
|
14696
|
-
|
|
14697
|
-
|
|
14698
|
-
|
|
14699
|
-
|
|
14700
|
-
|
|
14701
|
-
|
|
14702
|
-
|
|
14703
|
-
|
|
14704
|
-
|
|
14705
|
-
|
|
14706
|
-
|
|
14707
|
-
|
|
14708
|
-
|
|
14709
|
-
|
|
14710
|
-
|
|
14711
|
-
|
|
14712
|
-
|
|
14713
|
-
|
|
14714
|
-
|
|
14715
|
-
|
|
14716
|
-
|
|
14717
|
-
|
|
14718
|
-
|
|
14719
|
-
|
|
14720
|
-
|
|
14721
|
-
|
|
14722
|
-
|
|
14723
|
-
|
|
14724
|
-
|
|
14725
|
-
|
|
14726
|
-
|
|
14727
|
-
|
|
14728
|
-
|
|
14729
|
-
|
|
14730
|
-
|
|
14731
|
-
|
|
14732
|
-
|
|
14733
|
-
|
|
14734
|
-
|
|
14735
|
-
|
|
14736
|
-
|
|
14737
|
-
|
|
14738
|
-
|
|
14739
|
-
|
|
14740
|
-
|
|
14741
|
-
|
|
14742
|
-
|
|
14743
|
-
|
|
14744
|
-
|
|
14745
|
-
|
|
14746
|
-
|
|
14747
|
-
|
|
14748
|
-
|
|
14749
|
-
|
|
14750
|
-
|
|
14751
|
-
|
|
14752
|
-
|
|
14753
|
-
|
|
14754
|
-
|
|
14755
|
-
|
|
14756
|
-
|
|
14757
|
-
|
|
14758
|
-
|
|
14759
|
-
|
|
14760
|
-
|
|
14761
|
-
|
|
14762
|
-
|
|
14763
|
-
|
|
14764
|
-
|
|
14765
|
-
|
|
14766
|
-
|
|
14767
|
-
|
|
14768
|
-
|
|
14769
|
-
|
|
14770
|
-
|
|
14771
|
-
|
|
14772
|
-
|
|
14773
|
-
|
|
14774
|
-
|
|
14775
|
-
|
|
14776
|
-
|
|
14777
|
-
|
|
14778
|
-
|
|
14779
|
-
|
|
14780
|
-
|
|
14781
|
-
|
|
14782
|
-
|
|
14783
|
-
|
|
14784
|
-
|
|
14785
|
-
|
|
14786
|
-
|
|
14787
|
-
|
|
14788
|
-
|
|
14789
|
-
|
|
14790
|
-
|
|
14791
|
-
|
|
14792
|
-
|
|
14793
|
-
|
|
14794
|
-
|
|
14795
|
-
|
|
14796
|
-
|
|
14797
|
-
|
|
14798
|
-
|
|
14799
|
-
|
|
14800
|
-
|
|
14801
|
-
|
|
14802
|
-
|
|
14803
|
-
|
|
14804
|
-
|
|
14805
|
-
|
|
14806
|
-
|
|
14807
|
-
|
|
14808
|
-
|
|
14809
|
-
|
|
14810
|
-
|
|
14811
|
-
|
|
14812
|
-
|
|
14813
|
-
|
|
14814
|
-
|
|
14815
|
-
|
|
14816
|
-
|
|
14817
|
-
|
|
14818
|
-
|
|
14819
|
-
|
|
14820
|
-
|
|
14821
|
-
|
|
14822
|
-
|
|
14823
|
-
|
|
14824
|
-
|
|
14825
|
-
|
|
14826
|
-
|
|
14827
|
-
|
|
14828
|
-
|
|
14829
|
-
|
|
14830
|
-
|
|
14831
|
-
|
|
14832
|
-
|
|
14833
|
-
|
|
14834
|
-
|
|
14835
|
-
|
|
14836
|
-
|
|
14837
|
-
|
|
14838
|
-
|
|
14839
|
-
|
|
14840
|
-
|
|
14841
|
-
|
|
14842
|
-
|
|
14843
|
-
|
|
14844
|
-
|
|
14845
|
-
|
|
14846
|
-
|
|
14847
|
-
|
|
14848
|
-
|
|
14849
|
-
|
|
14850
|
-
|
|
14851
|
-
|
|
14852
|
-
|
|
14853
|
-
|
|
14854
|
-
|
|
14855
|
-
|
|
14856
|
-
|
|
14857
|
-
|
|
14858
|
-
|
|
14859
|
-
|
|
14860
|
-
|
|
14861
|
-
|
|
14862
|
-
|
|
14863
|
-
|
|
14864
|
-
|
|
14865
|
-
|
|
14866
|
-
|
|
14867
|
-
|
|
14868
|
-
|
|
14869
|
-
|
|
14870
|
-
|
|
14871
|
-
|
|
14872
|
-
|
|
14873
|
-
|
|
14874
|
-
|
|
14875
|
-
|
|
14876
|
-
|
|
14877
|
-
|
|
14878
|
-
|
|
14879
|
-
|
|
14880
|
-
|
|
14881
|
-
|
|
14882
|
-
|
|
14883
|
-
|
|
14884
|
-
|
|
14885
|
-
|
|
14886
|
-
|
|
14887
|
-
|
|
14888
|
-
|
|
14889
|
-
|
|
14890
|
-
|
|
14891
|
-
|
|
14892
|
-
|
|
14893
|
-
|
|
14894
|
-
|
|
14895
|
-
|
|
14896
|
-
|
|
14897
|
-
|
|
14898
|
-
|
|
14899
|
-
|
|
14900
|
-
|
|
14901
|
-
|
|
14902
|
-
|
|
14903
|
-
|
|
14904
|
-
|
|
14905
|
-
|
|
14906
|
-
|
|
14907
|
-
|
|
14908
|
-
|
|
14909
|
-
|
|
14910
|
-
|
|
14911
|
-
|
|
14912
|
-
|
|
14913
|
-
|
|
14914
|
-
|
|
14915
|
-
|
|
14916
|
-
|
|
14917
|
-
|
|
14918
|
-
|
|
14919
|
-
|
|
14920
|
-
|
|
14921
|
-
|
|
14922
|
-
|
|
14923
|
-
|
|
14924
|
-
|
|
14925
|
-
|
|
14926
|
-
|
|
14927
|
-
|
|
14928
|
-
|
|
14929
|
-
|
|
14930
|
-
|
|
14931
|
-
|
|
14932
|
-
|
|
14933
|
-
|
|
14934
|
-
|
|
14935
|
-
|
|
14936
|
-
|
|
14937
|
-
|
|
14938
|
-
|
|
14939
|
-
|
|
14940
|
-
|
|
14941
|
-
|
|
14942
|
-
|
|
14943
|
-
|
|
14944
|
-
|
|
14945
|
-
|
|
14946
|
-
|
|
14947
|
-
|
|
14948
|
-
|
|
14949
|
-
|
|
14950
|
-
|
|
14951
|
-
|
|
14952
|
-
|
|
14953
|
-
|
|
14954
|
-
|
|
14955
|
-
|
|
14956
|
-
|
|
14957
|
-
|
|
14958
|
-
|
|
14959
|
-
|
|
14960
|
-
|
|
14961
|
-
|
|
14962
|
-
|
|
14963
|
-
|
|
14964
|
-
|
|
14965
|
-
|
|
14966
|
-
|
|
14967
|
-
|
|
14968
|
-
|
|
14969
|
-
|
|
14970
|
-
|
|
14971
|
-
|
|
14972
|
-
|
|
14973
|
-
|
|
14974
|
-
|
|
14975
|
-
|
|
14976
|
-
|
|
14977
|
-
|
|
14978
|
-
|
|
14979
|
-
|
|
14980
|
-
|
|
14981
|
-
|
|
14982
|
-
|
|
14983
|
-
|
|
14984
|
-
|
|
14985
|
-
|
|
14986
|
-
|
|
14987
|
-
|
|
14988
|
-
|
|
14989
|
-
|
|
14990
|
-
|
|
14991
|
-
|
|
14992
|
-
|
|
14993
|
-
|
|
14994
|
-
|
|
14995
|
-
|
|
14996
|
-
|
|
14997
|
-
|
|
14998
|
-
|
|
14999
|
-
|
|
15000
|
-
|
|
15001
|
-
|
|
15002
|
-
|
|
15003
|
-
|
|
15004
|
-
|
|
15005
|
-
|
|
15006
|
-
|
|
15007
|
-
|
|
15008
|
-
|
|
15009
|
-
|
|
15010
|
-
|
|
15011
|
-
|
|
15012
|
-
|
|
15013
|
-
|
|
15014
|
-
|
|
15015
|
-
|
|
15016
|
-
|
|
15017
|
-
|
|
15018
|
-
|
|
15019
|
-
|
|
15020
|
-
|
|
15021
|
-
|
|
15022
|
-
|
|
15023
|
-
|
|
15024
|
-
|
|
15025
|
-
|
|
15026
|
-
|
|
15027
|
-
|
|
15028
|
-
|
|
15029
|
-
|
|
15030
|
-
|
|
15031
|
-
|
|
15032
|
-
|
|
15033
|
-
|
|
15034
|
-
|
|
15035
|
-
|
|
15036
|
-
|
|
15037
|
-
|
|
15038
|
-
|
|
15039
|
-
|
|
15040
|
-
|
|
15041
|
-
|
|
15042
|
-
|
|
15043
|
-
|
|
15044
|
-
|
|
15045
|
-
|
|
15046
|
-
|
|
15047
|
-
|
|
15048
|
-
|
|
15049
|
-
|
|
15050
|
-
|
|
15051
|
-
|
|
15052
|
-
|
|
15053
|
-
|
|
15054
|
-
|
|
15055
|
-
|
|
15056
|
-
|
|
15057
|
-
|
|
15058
|
-
|
|
15059
|
-
|
|
15060
|
-
|
|
15061
|
-
|
|
15062
|
-
|
|
15063
|
-
|
|
15064
|
-
|
|
15065
|
-
|
|
15066
|
-
|
|
15067
|
-
|
|
15068
|
-
|
|
15069
|
-
|
|
15070
|
-
|
|
15071
|
-
|
|
15072
|
-
|
|
15073
|
-
|
|
15074
|
-
|
|
15075
|
-
|
|
15076
|
-
|
|
15077
|
-
|
|
15078
|
-
|
|
15079
|
-
|
|
15080
|
-
|
|
15081
|
-
|
|
15082
|
-
|
|
15083
|
-
|
|
15084
|
-
|
|
15085
|
-
|
|
15086
|
-
|
|
15087
|
-
|
|
15088
|
-
|
|
15089
|
-
|
|
15090
|
-
|
|
15091
|
-
|
|
15092
|
-
|
|
15093
|
-
|
|
15094
|
-
|
|
15095
|
-
|
|
15096
|
-
|
|
15097
|
-
|
|
15098
|
-
|
|
15099
|
-
|
|
15100
|
-
|
|
15101
|
-
|
|
15102
|
-
|
|
15103
|
-
|
|
15104
|
-
|
|
15105
|
-
|
|
15106
|
-
|
|
15107
|
-
|
|
15108
|
-
|
|
15109
|
-
|
|
15110
|
-
|
|
15111
|
-
|
|
15112
|
-
|
|
15113
|
-
|
|
15114
|
-
|
|
15115
|
-
|
|
15116
|
-
|
|
15117
|
-
|
|
15118
|
-
|
|
15119
|
-
|
|
15120
|
-
|
|
15121
|
-
|
|
15122
|
-
|
|
15123
|
-
|
|
15124
|
-
|
|
15125
|
-
|
|
15126
|
-
|
|
15127
|
-
|
|
15128
|
-
|
|
15129
|
-
|
|
15130
|
-
|
|
15131
|
-
|
|
15132
|
-
|
|
15133
|
-
|
|
15134
|
-
|
|
15135
|
-
|
|
15136
|
-
|
|
15137
|
-
|
|
15138
|
-
|
|
15139
|
-
|
|
15140
|
-
|
|
15141
|
-
|
|
15142
|
-
|
|
15143
|
-
|
|
15144
|
-
|
|
15145
|
-
|
|
15146
|
-
|
|
15147
|
-
|
|
15148
|
-
|
|
15149
|
-
|
|
15150
|
-
|
|
15151
|
-
|
|
15152
|
-
|
|
15153
|
-
|
|
15154
|
-
|
|
15155
|
-
|
|
15156
|
-
|
|
15157
|
-
|
|
15158
|
-
|
|
15159
|
-
|
|
15160
|
-
|
|
15161
|
-
|
|
15162
|
-
|
|
15163
|
-
|
|
15164
|
-
|
|
15165
|
-
|
|
15166
|
-
|
|
15167
|
-
|
|
15168
|
-
|
|
15169
|
-
|
|
15170
|
-
|
|
15171
|
-
|
|
15172
|
-
|
|
15173
|
-
|
|
15174
|
-
|
|
15175
|
-
|
|
15176
|
-
|
|
15177
|
-
|
|
15178
|
-
|
|
15179
|
-
|
|
15180
|
-
|
|
15181
|
-
|
|
15182
|
-
|
|
15183
|
-
|
|
15184
|
-
|
|
15185
|
-
|
|
15186
|
-
|
|
15187
|
-
|
|
15188
|
-
|
|
15189
|
-
|
|
15190
|
-
|
|
15191
|
-
|
|
15192
|
-
|
|
15193
|
-
|
|
15194
|
-
|
|
15195
|
-
|
|
15196
|
-
|
|
15197
|
-
|
|
15198
|
-
|
|
15199
|
-
|
|
15200
|
-
|
|
15201
|
-
|
|
15202
|
-
|
|
15203
|
-
|
|
15204
|
-
|
|
15205
|
-
|
|
15206
|
-
|
|
15207
|
-
|
|
15208
|
-
|
|
15209
|
-
|
|
15210
|
-
|
|
15211
|
-
|
|
15212
|
-
|
|
15213
|
-
|
|
15214
|
-
|
|
15215
|
-
|
|
15216
|
-
|
|
15217
|
-
|
|
15218
|
-
|
|
15219
|
-
|
|
15220
|
-
|
|
15221
|
-
|
|
15222
|
-
|
|
15223
|
-
|
|
15224
|
-
|
|
15225
|
-
|
|
15226
|
-
|
|
15227
|
-
|
|
15228
|
-
|
|
15229
|
-
|
|
15230
|
-
|
|
15231
|
-
|
|
15232
|
-
|
|
15233
|
-
|
|
15234
|
-
|
|
15235
|
-
|
|
15236
|
-
|
|
15237
|
-
|
|
15238
|
-
|
|
15239
|
-
|
|
15240
|
-
|
|
15241
|
-
|
|
15242
|
-
|
|
15243
|
-
|
|
15244
|
-
|
|
15245
|
-
|
|
15246
|
-
|
|
15247
|
-
|
|
15248
|
-
|
|
15249
|
-
|
|
15250
|
-
|
|
15251
|
-
|
|
15252
|
-
|
|
15253
|
-
|
|
15254
|
-
|
|
15255
|
-
|
|
15256
|
-
|
|
15257
|
-
|
|
15258
|
-
|
|
15259
|
-
|
|
15260
|
-
|
|
15261
|
-
|
|
15262
|
-
|
|
15263
|
-
|
|
15264
|
-
|
|
15265
|
-
|
|
15266
|
-
|
|
15267
|
-
|
|
15268
|
-
|
|
15269
|
-
|
|
15270
|
-
|
|
15271
|
-
|
|
15272
|
-
|
|
15273
|
-
|
|
15274
|
-
|
|
15275
|
-
|
|
15276
|
-
|
|
15277
|
-
|
|
15278
|
-
|
|
15279
|
-
|
|
15280
|
-
|
|
15281
|
-
|
|
15282
|
-
|
|
15283
|
-
|
|
15284
|
-
|
|
15285
|
-
|
|
15286
|
-
|
|
15287
|
-
|
|
15288
|
-
|
|
15289
|
-
|
|
15290
|
-
|
|
15291
|
-
|
|
15292
|
-
|
|
15293
|
-
|
|
15294
|
-
|
|
15295
|
-
|
|
15296
|
-
|
|
15297
|
-
|
|
15298
|
-
|
|
15299
|
-
|
|
15300
|
-
|
|
15301
|
-
|
|
15302
|
-
|
|
15303
|
-
|
|
15304
|
-
|
|
15305
|
-
|
|
15306
|
-
|
|
15307
|
-
|
|
15308
|
-
|
|
15309
|
-
|
|
15310
|
-
|
|
15311
|
-
|
|
15312
|
-
|
|
15313
|
-
|
|
15314
|
-
|
|
15315
|
-
|
|
15316
|
-
|
|
15317
|
-
|
|
15318
|
-
|
|
15319
|
-
|
|
15320
|
-
|
|
15321
|
-
|
|
15322
|
-
|
|
15323
|
-
|
|
15324
|
-
|
|
15325
|
-
|
|
15326
|
-
|
|
15327
|
-
|
|
15328
|
-
|
|
15329
|
-
|
|
15330
|
-
|
|
15331
|
-
|
|
15332
|
-
|
|
15333
|
-
|
|
15334
|
-
|
|
15335
|
-
|
|
15336
|
-
|
|
15337
|
-
|
|
15338
|
-
|
|
15339
|
-
|
|
15340
|
-
|
|
15341
|
-
|
|
15342
|
-
|
|
15343
|
-
|
|
15344
|
-
|
|
15345
|
-
|
|
15346
|
-
|
|
15347
|
-
|
|
15348
|
-
|
|
15349
|
-
|
|
15350
|
-
|
|
15351
|
-
|
|
15352
|
-
|
|
15353
|
-
|
|
15354
|
-
|
|
15355
|
-
|
|
15356
|
-
|
|
15357
|
-
|
|
15358
|
-
|
|
15359
|
-
|
|
15360
|
-
|
|
15361
|
-
|
|
15362
|
-
|
|
15363
|
-
|
|
15364
|
-
|
|
15365
|
-
|
|
15366
|
-
|
|
15367
|
-
|
|
15368
|
-
|
|
15369
|
-
|
|
14650
|
+
/**
|
|
14651
|
+
* Whether the Assault class is allowed per team or globally.
|
|
14652
|
+
* If global: `true | false`
|
|
14653
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14654
|
+
*/
|
|
14655
|
+
AssaultClass: PerTeam<boolean>;
|
|
14656
|
+
/**
|
|
14657
|
+
* Whether the Support class is allowed per team or globally.
|
|
14658
|
+
* If global: `true | false`
|
|
14659
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14660
|
+
*/
|
|
14661
|
+
SupportClass: PerTeam<boolean>;
|
|
14662
|
+
/**
|
|
14663
|
+
* Whether the Recon class is allowed per team or globally.
|
|
14664
|
+
* If global: `true | false`
|
|
14665
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14666
|
+
*/
|
|
14667
|
+
ReconClass: PerTeam<boolean>;
|
|
14668
|
+
/**
|
|
14669
|
+
* Whether the Engineer class is allowed per team or globally.
|
|
14670
|
+
* If global: `true | false`
|
|
14671
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14672
|
+
*/
|
|
14673
|
+
EngineerClass: PerTeam<boolean>;
|
|
14674
|
+
/**
|
|
14675
|
+
* Whether the HK417A2 weapon (U_HK417A2) is allowed per team or globally.
|
|
14676
|
+
* If global: `true | false`
|
|
14677
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14678
|
+
*/
|
|
14679
|
+
U_HK417A2: PerTeam<boolean>;
|
|
14680
|
+
/**
|
|
14681
|
+
* Whether the ARAD MR weapon (U_ARADMR) is allowed per team or globally.
|
|
14682
|
+
* If global: `true | false`
|
|
14683
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14684
|
+
*/
|
|
14685
|
+
U_ARADMR: PerTeam<boolean>;
|
|
14686
|
+
/**
|
|
14687
|
+
* Whether the AK-205 weapon (U_AK205) is allowed per team or globally.
|
|
14688
|
+
* If global: `true | false`
|
|
14689
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14690
|
+
*/
|
|
14691
|
+
U_AK205: PerTeam<boolean>;
|
|
14692
|
+
/**
|
|
14693
|
+
* Whether the M4A1 weapon (U_M4A1) is allowed per team or globally.
|
|
14694
|
+
* If global: `true | false`
|
|
14695
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14696
|
+
*/
|
|
14697
|
+
U_M4A1: PerTeam<boolean>;
|
|
14698
|
+
/**
|
|
14699
|
+
* Whether the QBZ-192 weapon (U_QBZ192) is allowed per team or globally.
|
|
14700
|
+
* If global: `true | false`
|
|
14701
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14702
|
+
*/
|
|
14703
|
+
U_QBZ192: PerTeam<boolean>;
|
|
14704
|
+
/**
|
|
14705
|
+
* Whether the XM7 weapon (U_XM7) is allowed per team or globally.
|
|
14706
|
+
* If global: `true | false`
|
|
14707
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14708
|
+
*/
|
|
14709
|
+
U_XM7: PerTeam<boolean>;
|
|
14710
|
+
/**
|
|
14711
|
+
* Whether the SIG553R weapon (U_SIG553R) is allowed per team or globally.
|
|
14712
|
+
* If global: `true | false`
|
|
14713
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14714
|
+
*/
|
|
14715
|
+
U_SIG553R: PerTeam<boolean>;
|
|
14716
|
+
/**
|
|
14717
|
+
* Whether the 590A1 shotgun (U_590A1) is allowed per team or globally.
|
|
14718
|
+
* If global: `true | false`
|
|
14719
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14720
|
+
*/
|
|
14721
|
+
U_590A1: PerTeam<boolean>;
|
|
14722
|
+
/**
|
|
14723
|
+
* Whether the 185-KSK weapon (U_185KSK) is allowed per team or globally.
|
|
14724
|
+
* If global: `true | false`
|
|
14725
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14726
|
+
*/
|
|
14727
|
+
U_185KSK: PerTeam<boolean>;
|
|
14728
|
+
/**
|
|
14729
|
+
* Whether the M1014 shotgun (U_M1014) is allowed per team or globally.
|
|
14730
|
+
* If global: `true | false`
|
|
14731
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14732
|
+
*/
|
|
14733
|
+
U_M1014: PerTeam<boolean>;
|
|
14734
|
+
/**
|
|
14735
|
+
* Whether the stationary M2 machine gun emplacement (U_VEH_Stationary_M2MG) is allowed per team or globally.
|
|
14736
|
+
* If global: `true | false`
|
|
14737
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14738
|
+
*/
|
|
14739
|
+
U_VEH_Stationary_M2MG: PerTeam<boolean>;
|
|
14740
|
+
/**
|
|
14741
|
+
* Whether the stationary GDF-009 emplacement (U_VEH_Stationary_GDF009) is allowed per team or globally.
|
|
14742
|
+
* If global: `true | false`
|
|
14743
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14744
|
+
*/
|
|
14745
|
+
U_VEH_Stationary_GDF009: PerTeam<boolean>;
|
|
14746
|
+
/**
|
|
14747
|
+
* Whether the stationary BGM-71 TOW launcher (U_VEH_Stationary_BGM71TOW) is allowed per team or globally.
|
|
14748
|
+
* If global: `true | false`
|
|
14749
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14750
|
+
*/
|
|
14751
|
+
U_VEH_Stationary_BGM71TOW: PerTeam<boolean>;
|
|
14752
|
+
/**
|
|
14753
|
+
* Whether the Stinger launcher (U_Stinger) is allowed per team or globally.
|
|
14754
|
+
* If global: `true | false`
|
|
14755
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14756
|
+
*/
|
|
14757
|
+
U_Stinger: PerTeam<boolean>;
|
|
14758
|
+
/**
|
|
14759
|
+
* Whether the M320 Smoke launcher (U_M320Smoke) is allowed per team or globally.
|
|
14760
|
+
* If global: `true | false`
|
|
14761
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14762
|
+
*/
|
|
14763
|
+
U_M320Smoke: PerTeam<boolean>;
|
|
14764
|
+
/**
|
|
14765
|
+
* Whether the M320 Thermobaric launcher (U_M320Thermobaric) is allowed per team or globally.
|
|
14766
|
+
* If global: `true | false`
|
|
14767
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14768
|
+
*/
|
|
14769
|
+
U_M320Thermobaric: PerTeam<boolean>;
|
|
14770
|
+
/**
|
|
14771
|
+
* Whether the Drill GL launcher (U_DrillGL) is allowed per team or globally.
|
|
14772
|
+
* If global: `true | false`
|
|
14773
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14774
|
+
*/
|
|
14775
|
+
U_DrillGL: PerTeam<boolean>;
|
|
14776
|
+
/**
|
|
14777
|
+
* Whether the M320 HE launcher (U_M320HE) is allowed per team or globally.
|
|
14778
|
+
* If global: `true | false`
|
|
14779
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14780
|
+
*/
|
|
14781
|
+
U_M320HE: PerTeam<boolean>;
|
|
14782
|
+
/**
|
|
14783
|
+
* Whether the Airburst Incendiary weapon (U_AirburstIncendiary) is allowed per team or globally.
|
|
14784
|
+
* If global: `true | false`
|
|
14785
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14786
|
+
*/
|
|
14787
|
+
U_AirburstIncendiary: PerTeam<boolean>;
|
|
14788
|
+
/**
|
|
14789
|
+
* Whether the M39 EMR weapon (U_M39EMR) is allowed per team or globally.
|
|
14790
|
+
* If global: `true | false`
|
|
14791
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14792
|
+
*/
|
|
14793
|
+
U_M39EMR: PerTeam<boolean>;
|
|
14794
|
+
/**
|
|
14795
|
+
* Whether the SVDM sniper rifle (U_SVDM) is allowed per team or globally.
|
|
14796
|
+
* If global: `true | false`
|
|
14797
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14798
|
+
*/
|
|
14799
|
+
U_SVDM: PerTeam<boolean>;
|
|
14800
|
+
/**
|
|
14801
|
+
* Whether the SVCh sniper rifle (U_SVCh) is allowed per team or globally.
|
|
14802
|
+
* If global: `true | false`
|
|
14803
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14804
|
+
*/
|
|
14805
|
+
U_SVCh: PerTeam<boolean>;
|
|
14806
|
+
/**
|
|
14807
|
+
* Whether the 6P67 assault rifle (U_6P67) is allowed per team or globally.
|
|
14808
|
+
* If global: `true | false`
|
|
14809
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14810
|
+
*/
|
|
14811
|
+
U_6P67: PerTeam<boolean>;
|
|
14812
|
+
/**
|
|
14813
|
+
* Whether the G36 assault rifle (U_G36) is allowed per team or globally.
|
|
14814
|
+
* If global: `true | false`
|
|
14815
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14816
|
+
*/
|
|
14817
|
+
U_G36: PerTeam<boolean>;
|
|
14818
|
+
/**
|
|
14819
|
+
* Whether the HK433 assault rifle (U_HK433) is allowed per team or globally.
|
|
14820
|
+
* If global: `true | false`
|
|
14821
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14822
|
+
*/
|
|
14823
|
+
U_HK433: PerTeam<boolean>;
|
|
14824
|
+
/**
|
|
14825
|
+
* Whether the G3A4 battle rifle (U_G3A4) is allowed per team or globally.
|
|
14826
|
+
* If global: `true | false`
|
|
14827
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14828
|
+
*/
|
|
14829
|
+
U_G3A4: PerTeam<boolean>;
|
|
14830
|
+
/**
|
|
14831
|
+
* Whether the L85A3 assault rifle (U_L85A3) is allowed per team or globally.
|
|
14832
|
+
* If global: `true | false`
|
|
14833
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14834
|
+
*/
|
|
14835
|
+
U_L85A3: PerTeam<boolean>;
|
|
14836
|
+
/**
|
|
14837
|
+
* Whether the ACE 32 assault rifle (U_ACE32) is allowed per team or globally.
|
|
14838
|
+
* If global: `true | false`
|
|
14839
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14840
|
+
*/
|
|
14841
|
+
U_ACE32: PerTeam<boolean>;
|
|
14842
|
+
/**
|
|
14843
|
+
* Whether the SCAR-L assault rifle (U_SCARL) is allowed per team or globally.
|
|
14844
|
+
* If global: `true | false`
|
|
14845
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14846
|
+
*/
|
|
14847
|
+
U_SCARL: PerTeam<boolean>;
|
|
14848
|
+
/**
|
|
14849
|
+
* Whether the Tavor 7 battle rifle (U_Tavor7) is allowed per team or globally.
|
|
14850
|
+
* If global: `true | false`
|
|
14851
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14852
|
+
*/
|
|
14853
|
+
U_Tavor7: PerTeam<boolean>;
|
|
14854
|
+
/**
|
|
14855
|
+
* Whether the Ultimax light machine gun (U_Ultimax) is allowed per team or globally.
|
|
14856
|
+
* If global: `true | false`
|
|
14857
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14858
|
+
*/
|
|
14859
|
+
U_Ultimax: PerTeam<boolean>;
|
|
14860
|
+
/**
|
|
14861
|
+
* Whether the Minimi light machine gun (U_Minimi) is allowed per team or globally.
|
|
14862
|
+
* If global: `true | false`
|
|
14863
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14864
|
+
*/
|
|
14865
|
+
U_Minimi: PerTeam<boolean>;
|
|
14866
|
+
/**
|
|
14867
|
+
* Whether the M27 IAR weapon (U_M27IAR) is allowed per team or globally.
|
|
14868
|
+
* If global: `true | false`
|
|
14869
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14870
|
+
*/
|
|
14871
|
+
U_M27IAR: PerTeam<boolean>;
|
|
14872
|
+
/**
|
|
14873
|
+
* Whether the M250 light machine gun (U_M250) is allowed per team or globally.
|
|
14874
|
+
* If global: `true | false`
|
|
14875
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14876
|
+
*/
|
|
14877
|
+
U_M250: PerTeam<boolean>;
|
|
14878
|
+
/**
|
|
14879
|
+
* Whether the M240L machine gun (U_M240L) is allowed per team or globally.
|
|
14880
|
+
* If global: `true | false`
|
|
14881
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14882
|
+
*/
|
|
14883
|
+
U_M240L: PerTeam<boolean>;
|
|
14884
|
+
/**
|
|
14885
|
+
* Whether the MG4K light machine gun (U_MG4K) is allowed per team or globally.
|
|
14886
|
+
* If global: `true | false`
|
|
14887
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14888
|
+
*/
|
|
14889
|
+
U_MG4K: PerTeam<boolean>;
|
|
14890
|
+
/**
|
|
14891
|
+
* Whether the M60E6 light machine gun (U_M60E6) is allowed per team or globally.
|
|
14892
|
+
* If global: `true | false`
|
|
14893
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14894
|
+
*/
|
|
14895
|
+
U_M60E6: PerTeam<boolean>;
|
|
14896
|
+
/**
|
|
14897
|
+
* Whether the RPKM light machine gun (U_RPKM) is allowed per team or globally.
|
|
14898
|
+
* If global: `true | false`
|
|
14899
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14900
|
+
*/
|
|
14901
|
+
U_RPKM: PerTeam<boolean>;
|
|
14902
|
+
/**
|
|
14903
|
+
* Whether the M18 pistol (U_M18) is allowed per team or globally.
|
|
14904
|
+
* If global: `true | false`
|
|
14905
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14906
|
+
*/
|
|
14907
|
+
U_M18: PerTeam<boolean>;
|
|
14908
|
+
/**
|
|
14909
|
+
* Whether the Five-Seven pistol (U_FiveSeven) is allowed per team or globally.
|
|
14910
|
+
* If global: `true | false`
|
|
14911
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14912
|
+
*/
|
|
14913
|
+
U_FiveSeven: PerTeam<boolean>;
|
|
14914
|
+
/**
|
|
14915
|
+
* Whether the Raging Hunter revolver (U_RagingHunter) is allowed per team or globally.
|
|
14916
|
+
* If global: `true | false`
|
|
14917
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14918
|
+
*/
|
|
14919
|
+
U_RagingHunter: PerTeam<boolean>;
|
|
14920
|
+
/**
|
|
14921
|
+
* Whether the M45A1 pistol (U_M45A1) is allowed per team or globally.
|
|
14922
|
+
* If global: `true | false`
|
|
14923
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14924
|
+
*/
|
|
14925
|
+
U_M45A1: PerTeam<boolean>;
|
|
14926
|
+
/**
|
|
14927
|
+
* Whether the M2010 ESR sniper rifle (U_M2010ESR) is allowed per team or globally.
|
|
14928
|
+
* If global: `true | false`
|
|
14929
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14930
|
+
*/
|
|
14931
|
+
U_M2010ESR: PerTeam<boolean>;
|
|
14932
|
+
/**
|
|
14933
|
+
* Whether the SV-98M sniper rifle (U_SV98M) is allowed per team or globally.
|
|
14934
|
+
* If global: `true | false`
|
|
14935
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14936
|
+
*/
|
|
14937
|
+
U_SV98M: PerTeam<boolean>;
|
|
14938
|
+
/**
|
|
14939
|
+
* Whether the MRAD sniper rifle (U_MRAD) is allowed per team or globally.
|
|
14940
|
+
* If global: `true | false`
|
|
14941
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14942
|
+
*/
|
|
14943
|
+
U_MRAD: PerTeam<boolean>;
|
|
14944
|
+
/**
|
|
14945
|
+
* Whether the P90 submachine gun (U_P90) is allowed per team or globally.
|
|
14946
|
+
* If global: `true | false`
|
|
14947
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14948
|
+
*/
|
|
14949
|
+
U_P90: PerTeam<boolean>;
|
|
14950
|
+
/**
|
|
14951
|
+
* Whether the MPX submachine gun (U_MPX) is allowed per team or globally.
|
|
14952
|
+
* If global: `true | false`
|
|
14953
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14954
|
+
*/
|
|
14955
|
+
U_MPX: PerTeam<boolean>;
|
|
14956
|
+
/**
|
|
14957
|
+
* Whether the UMP-40 submachine gun (U_UMP40) is allowed per team or globally.
|
|
14958
|
+
* If global: `true | false`
|
|
14959
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14960
|
+
*/
|
|
14961
|
+
U_UMP40: PerTeam<boolean>;
|
|
14962
|
+
/**
|
|
14963
|
+
* Whether the Vector submachine gun (U_Vector) is allowed per team or globally.
|
|
14964
|
+
* If global: `true | false`
|
|
14965
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14966
|
+
*/
|
|
14967
|
+
U_Vector: PerTeam<boolean>;
|
|
14968
|
+
/**
|
|
14969
|
+
* Whether the MP5 MLI submachine gun (U_MP5MLI) is allowed per team or globally.
|
|
14970
|
+
* If global: `true | false`
|
|
14971
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14972
|
+
*/
|
|
14973
|
+
U_MP5MLI: PerTeam<boolean>;
|
|
14974
|
+
/**
|
|
14975
|
+
* Whether the APDW (Advanced Personal Defense Weapon) (U_APDW) is allowed per team or globally.
|
|
14976
|
+
* If global: `true | false`
|
|
14977
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14978
|
+
*/
|
|
14979
|
+
U_APDW: PerTeam<boolean>;
|
|
14980
|
+
/**
|
|
14981
|
+
* Whether the MP7A2 submachine gun (U_MP7A2) is allowed per team or globally.
|
|
14982
|
+
* If global: `true | false`
|
|
14983
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14984
|
+
*/
|
|
14985
|
+
U_MP7A2: PerTeam<boolean>;
|
|
14986
|
+
/**
|
|
14987
|
+
* Whether the APC10 submachine gun (U_APC10) is allowed per team or globally.
|
|
14988
|
+
* If global: `true | false`
|
|
14989
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14990
|
+
*/
|
|
14991
|
+
U_APC10: PerTeam<boolean>;
|
|
14992
|
+
/**
|
|
14993
|
+
* Whether the Cheetah tank (U_VEH_Tank_Cheetah) is allowed per team or globally.
|
|
14994
|
+
* If global: `true | false`
|
|
14995
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
14996
|
+
*/
|
|
14997
|
+
U_VEH_Tank_Cheetah: PerTeam<boolean>;
|
|
14998
|
+
/**
|
|
14999
|
+
* Whether the Flyer 60 vehicle (U_OB_VEH_Car_Flyer60_Base) is allowed per team or globally.
|
|
15000
|
+
* If global: `true | false`
|
|
15001
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15002
|
+
*/
|
|
15003
|
+
U_OB_VEH_Car_Flyer60_Base: PerTeam<boolean>;
|
|
15004
|
+
/**
|
|
15005
|
+
* Whether the CV90 tank (U_VEH_Tank_CV90) is allowed per team or globally.
|
|
15006
|
+
* If global: `true | false`
|
|
15007
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15008
|
+
*/
|
|
15009
|
+
U_VEH_Tank_CV90: PerTeam<boolean>;
|
|
15010
|
+
/**
|
|
15011
|
+
* Whether the M1 Abrams tank (U_VEH_Tank_Abrams) is allowed per team or globally.
|
|
15012
|
+
* If global: `true | false`
|
|
15013
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15014
|
+
*/
|
|
15015
|
+
U_VEH_Tank_Abrams: PerTeam<boolean>;
|
|
15016
|
+
/**
|
|
15017
|
+
* Whether the Gepard anti-air tank (U_VEH_Tank_Gepard) is allowed per team or globally.
|
|
15018
|
+
* If global: `true | false`
|
|
15019
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15020
|
+
*/
|
|
15021
|
+
U_VEH_Tank_Gepard: PerTeam<boolean>;
|
|
15022
|
+
/**
|
|
15023
|
+
* Whether the Bradley infantry fighting vehicle (U_VEH_Tank_Bradley) is allowed per team or globally.
|
|
15024
|
+
* If global: `true | false`
|
|
15025
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15026
|
+
*/
|
|
15027
|
+
U_VEH_Tank_Bradley: PerTeam<boolean>;
|
|
15028
|
+
/**
|
|
15029
|
+
* Whether the Leopard main battle tank (U_VEH_Tank_Leopard) is allowed per team or globally.
|
|
15030
|
+
* If global: `true | false`
|
|
15031
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15032
|
+
*/
|
|
15033
|
+
U_VEH_Tank_Leopard: PerTeam<boolean>;
|
|
15034
|
+
/**
|
|
15035
|
+
* Whether ground transport vehicles (Portal_WebApp_GroundTransport) are allowed per team or globally.
|
|
15036
|
+
* If global: `true | false`
|
|
15037
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15038
|
+
*/
|
|
15039
|
+
Portal_WebApp_GroundTransport: PerTeam<boolean>;
|
|
15040
|
+
/**
|
|
15041
|
+
* Whether the Eurocopter helicopter (U_VEH_Helicopter_Eurocopter) is allowed per team or globally.
|
|
15042
|
+
* If global: `true | false`
|
|
15043
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15044
|
+
*/
|
|
15045
|
+
U_VEH_Helicopter_Eurocopter: PerTeam<boolean>;
|
|
15046
|
+
/**
|
|
15047
|
+
* Whether the SU-57 fighter jet (U_VEH_Airplane_SU57) is allowed per team or globally.
|
|
15048
|
+
* If global: `true | false`
|
|
15049
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15050
|
+
*/
|
|
15051
|
+
U_VEH_Airplane_SU57: PerTeam<boolean>;
|
|
15052
|
+
/**
|
|
15053
|
+
* Whether the F-16 fighter jet (U_VEH_Airplane_F16) is allowed per team or globally.
|
|
15054
|
+
* If global: `true | false`
|
|
15055
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15056
|
+
*/
|
|
15057
|
+
U_VEH_Airplane_F16: PerTeam<boolean>;
|
|
15058
|
+
/**
|
|
15059
|
+
* Whether the AH-64E Apache attack helicopter (U_VEH_Helicopter_AH64E) is allowed per team or globally.
|
|
15060
|
+
* If global: `true | false`
|
|
15061
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15062
|
+
*/
|
|
15063
|
+
U_VEH_Helicopter_AH64E: PerTeam<boolean>;
|
|
15064
|
+
/**
|
|
15065
|
+
* Whether the UH-60 transport helicopter (U_VEH_Helicopter_UH60) is allowed per team or globally.
|
|
15066
|
+
* If global: `true | false`
|
|
15067
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15068
|
+
*/
|
|
15069
|
+
U_VEH_Helicopter_UH60: PerTeam<boolean>;
|
|
15070
|
+
/**
|
|
15071
|
+
* Whether the F-22 Raptor fighter jet (U_VEH_Airplane_F22) is allowed per team or globally.
|
|
15072
|
+
* If global: `true | false`
|
|
15073
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15074
|
+
*/
|
|
15075
|
+
U_VEH_Airplane_F22: PerTeam<boolean>;
|
|
15076
|
+
/**
|
|
15077
|
+
* Whether the JAS 39 Gripen fighter jet (U_VEH_Airplane_JAS39) is allowed per team or globally.
|
|
15078
|
+
* If global: `true | false`
|
|
15079
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15080
|
+
*/
|
|
15081
|
+
U_VEH_Airplane_JAS39: PerTeam<boolean>;
|
|
15082
|
+
/**
|
|
15083
|
+
* Whether the repair tool (U_RepairTool) is allowed per team or globally.
|
|
15084
|
+
* If global: `true | false`
|
|
15085
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15086
|
+
*/
|
|
15087
|
+
U_RepairTool: PerTeam<boolean>;
|
|
15088
|
+
/**
|
|
15089
|
+
* Whether the Adrenaline Shot gadget (U_AdrenalineShot) is allowed per team or globally.
|
|
15090
|
+
* If global: `true | false`
|
|
15091
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15092
|
+
*/
|
|
15093
|
+
U_AdrenalineShot: PerTeam<boolean>;
|
|
15094
|
+
/**
|
|
15095
|
+
* Whether the Spawn Beacon gadget (U_SpawnBeacon) is allowed per team or globally.
|
|
15096
|
+
* If global: `true | false`
|
|
15097
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15098
|
+
*/
|
|
15099
|
+
U_SpawnBeacon: PerTeam<boolean>;
|
|
15100
|
+
/**
|
|
15101
|
+
* Whether the T-UGS motion sensor (U_TUGS) is allowed per team or globally.
|
|
15102
|
+
* If global: `true | false`
|
|
15103
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15104
|
+
*/
|
|
15105
|
+
U_TUGS: PerTeam<boolean>;
|
|
15106
|
+
/**
|
|
15107
|
+
* Whether the Deployable Cover gadget (U_DeployableCover) is allowed per team or globally.
|
|
15108
|
+
* If global: `true | false`
|
|
15109
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15110
|
+
*/
|
|
15111
|
+
U_DeployableCover: PerTeam<boolean>;
|
|
15112
|
+
/**
|
|
15113
|
+
* Whether the EIDOS detection device (U_EIDOS) is allowed per team or globally.
|
|
15114
|
+
* If global: `true | false`
|
|
15115
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15116
|
+
*/
|
|
15117
|
+
U_EIDOS: PerTeam<boolean>;
|
|
15118
|
+
/**
|
|
15119
|
+
* Whether the Deployable Mortar (U_DeployableMortar) is allowed per team or globally.
|
|
15120
|
+
* If global: `true | false`
|
|
15121
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15122
|
+
*/
|
|
15123
|
+
U_DeployableMortar: PerTeam<boolean>;
|
|
15124
|
+
/**
|
|
15125
|
+
* Whether the Supply Crate gadget (U_Gadget_SupplyCrate) is allowed per team or globally.
|
|
15126
|
+
* If global: `true | false`
|
|
15127
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15128
|
+
*/
|
|
15129
|
+
U_Gadget_SupplyCrate: PerTeam<boolean>;
|
|
15130
|
+
/**
|
|
15131
|
+
* Whether the Drone gadget (U_Drone) is allowed per team or globally.
|
|
15132
|
+
* If global: `true | false`
|
|
15133
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15134
|
+
*/
|
|
15135
|
+
U_Drone: PerTeam<boolean>;
|
|
15136
|
+
/**
|
|
15137
|
+
* Whether the Sniper Decoy gadget (U_SniperDecoy) is allowed per team or globally.
|
|
15138
|
+
* If global: `true | false`
|
|
15139
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15140
|
+
*/
|
|
15141
|
+
U_SniperDecoy: PerTeam<boolean>;
|
|
15142
|
+
/**
|
|
15143
|
+
* Whether the MP-APS active protection system (U_MPAPS) is allowed per team or globally.
|
|
15144
|
+
* If global: `true | false`
|
|
15145
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15146
|
+
*/
|
|
15147
|
+
U_MPAPS: PerTeam<boolean>;
|
|
15148
|
+
/**
|
|
15149
|
+
* Whether the Deployable Ladder (U_Ladder) is allowed per team or globally.
|
|
15150
|
+
* If global: `true | false`
|
|
15151
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15152
|
+
*/
|
|
15153
|
+
U_Ladder: PerTeam<boolean>;
|
|
15154
|
+
/**
|
|
15155
|
+
* Whether the EOD Bot gadget (U_EODBot) is allowed per team or globally.
|
|
15156
|
+
* If global: `true | false`
|
|
15157
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15158
|
+
*/
|
|
15159
|
+
U_EODBot: PerTeam<boolean>;
|
|
15160
|
+
/**
|
|
15161
|
+
* Whether the Vehicle Supply Crate gadget (U_Gadget_VehicleSupplyCrate) is allowed per team or globally.
|
|
15162
|
+
* If global: `true | false`
|
|
15163
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15164
|
+
*/
|
|
15165
|
+
U_Gadget_VehicleSupplyCrate: PerTeam<boolean>;
|
|
15166
|
+
/**
|
|
15167
|
+
* Whether the Anti-Tank Mine gadget (U_Gadget_ATMine) is allowed per team or globally.
|
|
15168
|
+
* If global: `true | false`
|
|
15169
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15170
|
+
*/
|
|
15171
|
+
U_Gadget_ATMine: PerTeam<boolean>;
|
|
15172
|
+
/**
|
|
15173
|
+
* Whether the C4 explosive (U_C4) is allowed per team or globally.
|
|
15174
|
+
* If global: `true | false`
|
|
15175
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15176
|
+
*/
|
|
15177
|
+
U_C4: PerTeam<boolean>;
|
|
15178
|
+
/**
|
|
15179
|
+
* Whether the PTKM-1R smart mine (U_PTKM1R) is allowed per team or globally.
|
|
15180
|
+
* If global: `true | false`
|
|
15181
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15182
|
+
*/
|
|
15183
|
+
U_PTKM1R: PerTeam<boolean>;
|
|
15184
|
+
/**
|
|
15185
|
+
* Whether the M4 SLAM explosive (U_M4SLAM) is allowed per team or globally.
|
|
15186
|
+
* If global: `true | false`
|
|
15187
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15188
|
+
*/
|
|
15189
|
+
U_M4SLAM: PerTeam<boolean>;
|
|
15190
|
+
/**
|
|
15191
|
+
* Whether the M18 Claymore (U_M18Claymore) is allowed per team or globally.
|
|
15192
|
+
* If global: `true | false`
|
|
15193
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15194
|
+
*/
|
|
15195
|
+
U_M18Claymore: PerTeam<boolean>;
|
|
15196
|
+
/**
|
|
15197
|
+
* Whether the Javelin launcher (U_Javelin) is allowed per team or globally.
|
|
15198
|
+
* If global: `true | false`
|
|
15199
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15200
|
+
*/
|
|
15201
|
+
U_Javelin: PerTeam<boolean>;
|
|
15202
|
+
/**
|
|
15203
|
+
* Whether the RPG-7 V2 launcher (U_RPG7V2) is allowed per team or globally.
|
|
15204
|
+
* If global: `true | false`
|
|
15205
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15206
|
+
*/
|
|
15207
|
+
U_RPG7V2: PerTeam<boolean>;
|
|
15208
|
+
/**
|
|
15209
|
+
* Whether the AT4 launcher (U_AT4) is allowed per team or globally.
|
|
15210
|
+
* If global: `true | false`
|
|
15211
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15212
|
+
*/
|
|
15213
|
+
U_AT4: PerTeam<boolean>;
|
|
15214
|
+
/**
|
|
15215
|
+
* Whether the MBT LAW (rocket) (U_MBTLAW) is allowed per team or globally.
|
|
15216
|
+
* If global: `true | false`
|
|
15217
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15218
|
+
*/
|
|
15219
|
+
U_MBTLAW: PerTeam<boolean>;
|
|
15220
|
+
/**
|
|
15221
|
+
* Whether the Combat Knife melee weapon (U_Melee_CombatKnife) is allowed per team or globally.
|
|
15222
|
+
* If global: `true | false`
|
|
15223
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15224
|
+
*/
|
|
15225
|
+
U_Melee_CombatKnife: PerTeam<boolean>;
|
|
15226
|
+
/**
|
|
15227
|
+
* Whether the Sledgehammer melee weapon (U_Melee_Sledgehammer) is allowed per team or globally.
|
|
15228
|
+
* If global: `true | false`
|
|
15229
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15230
|
+
*/
|
|
15231
|
+
U_Melee_Sledgehammer: PerTeam<boolean>;
|
|
15232
|
+
/**
|
|
15233
|
+
* Whether the Geko Knife melee weapon (U_Melee_GekoKnife) is allowed per team or globally.
|
|
15234
|
+
* If global: `true | false`
|
|
15235
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15236
|
+
*/
|
|
15237
|
+
U_Melee_GekoKnife: PerTeam<boolean>;
|
|
15238
|
+
/**
|
|
15239
|
+
* Whether the Tracer Dart gadget (U_TracerDart) is allowed per team or globally.
|
|
15240
|
+
* If global: `true | false`
|
|
15241
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15242
|
+
*/
|
|
15243
|
+
U_TracerDart: PerTeam<boolean>;
|
|
15244
|
+
/**
|
|
15245
|
+
* Whether the M26 Mass (Dragonbreath) round (U_M26MassDragonbreath) is allowed per team or globally.
|
|
15246
|
+
* If global: `true | false`
|
|
15247
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15248
|
+
*/
|
|
15249
|
+
U_M26MassDragonbreath: PerTeam<boolean>;
|
|
15250
|
+
/**
|
|
15251
|
+
* Whether the PLD device (U_PLD) is allowed per team or globally.
|
|
15252
|
+
* If global: `true | false`
|
|
15253
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15254
|
+
*/
|
|
15255
|
+
U_PLD: PerTeam<boolean>;
|
|
15256
|
+
/**
|
|
15257
|
+
* Whether defibrillators equipped (U_Defibrillators_Equipped) are allowed per team or globally.
|
|
15258
|
+
* If global: `true | false`
|
|
15259
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15260
|
+
*/
|
|
15261
|
+
U_Defibrillators_Equipped: PerTeam<boolean>;
|
|
15262
|
+
/**
|
|
15263
|
+
* Whether the Supply Pouch weapon/gadget (U_WEP_SupplyPouch) is allowed per team or globally.
|
|
15264
|
+
* If global: `true | false`
|
|
15265
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15266
|
+
*/
|
|
15267
|
+
U_WEP_SupplyPouch: PerTeam<boolean>;
|
|
15268
|
+
/**
|
|
15269
|
+
* Whether incendiary grenades (U_Grenade_IncendiaryGrenade) are allowed per team or globally.
|
|
15270
|
+
* If global: `true | false`
|
|
15271
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15272
|
+
*/
|
|
15273
|
+
U_Grenade_IncendiaryGrenade: PerTeam<boolean>;
|
|
15274
|
+
/**
|
|
15275
|
+
* Whether frag grenades (U_WEP_FragGrenade) are allowed per team or globally.
|
|
15276
|
+
* If global: `true | false`
|
|
15277
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15278
|
+
*/
|
|
15279
|
+
U_WEP_FragGrenade: PerTeam<boolean>;
|
|
15280
|
+
/**
|
|
15281
|
+
* Whether the Proximity Sensor gadget (U_GAD_Proximity) is allowed per team or globally.
|
|
15282
|
+
* If global: `true | false`
|
|
15283
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15284
|
+
*/
|
|
15285
|
+
U_GAD_Proximity: PerTeam<boolean>;
|
|
15286
|
+
/**
|
|
15287
|
+
* Whether the Anti-Tank Grenade (U_AntiTankGrenade) is allowed per team or globally.
|
|
15288
|
+
* If global: `true | false`
|
|
15289
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15290
|
+
*/
|
|
15291
|
+
U_AntiTankGrenade: PerTeam<boolean>;
|
|
15292
|
+
/**
|
|
15293
|
+
* Whether the Throwing Knife (U_WEP_ThrowingKnife) is allowed per team or globally.
|
|
15294
|
+
* If global: `true | false`
|
|
15295
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15296
|
+
*/
|
|
15297
|
+
U_WEP_ThrowingKnife: PerTeam<boolean>;
|
|
15298
|
+
/**
|
|
15299
|
+
* Whether Flashbang grenades (U_WEP_Flashbang) are allowed per team or globally.
|
|
15300
|
+
* If global: `true | false`
|
|
15301
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15302
|
+
*/
|
|
15303
|
+
U_WEP_Flashbang: PerTeam<boolean>;
|
|
15304
|
+
/**
|
|
15305
|
+
* Whether Concussion grenades (U_WEP_ConcussionGrenade) are allowed per team or globally.
|
|
15306
|
+
* If global: `true | false`
|
|
15307
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15308
|
+
*/
|
|
15309
|
+
U_WEP_ConcussionGrenade: PerTeam<boolean>;
|
|
15310
|
+
/**
|
|
15311
|
+
* Whether Mini V40 grenades (U_MiniV40) are allowed per team or globally.
|
|
15312
|
+
* If global: `true | false`
|
|
15313
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15314
|
+
*/
|
|
15315
|
+
U_MiniV40: PerTeam<boolean>;
|
|
15316
|
+
/**
|
|
15317
|
+
* Whether the Portal carbine weapon category (Portal_WebApp_Carbine) is allowed per team or globally.
|
|
15318
|
+
* If global: `true | false`
|
|
15319
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15320
|
+
*/
|
|
15321
|
+
Portal_WebApp_Carbine: PerTeam<boolean>;
|
|
15322
|
+
/**
|
|
15323
|
+
* Whether the Portal shotgun weapon category (Portal_WebApp_SG) is allowed per team or globally.
|
|
15324
|
+
* If global: `true | false`
|
|
15325
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15326
|
+
*/
|
|
15327
|
+
Portal_WebApp_SG: PerTeam<boolean>;
|
|
15328
|
+
/**
|
|
15329
|
+
* Whether the Portal stationary weapon category (Portal_WebApp_Stationary) is allowed per team or globally.
|
|
15330
|
+
* If global: `true | false`
|
|
15331
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15332
|
+
*/
|
|
15333
|
+
Portal_WebApp_Stationary: PerTeam<boolean>;
|
|
15334
|
+
/**
|
|
15335
|
+
* Whether the Portal grenade launcher weapon category (Portal_WebApp_GrenadeLauncher) is allowed per team or globally.
|
|
15336
|
+
* If global: `true | false`
|
|
15337
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15338
|
+
*/
|
|
15339
|
+
Portal_WebApp_GrenadeLauncher: PerTeam<boolean>;
|
|
15340
|
+
/**
|
|
15341
|
+
* Whether the Portal designated marksman rifle (DMR) weapon category (Portal_WebApp_DMR) is allowed per team or globally.
|
|
15342
|
+
* If global: `true | false`
|
|
15343
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15344
|
+
*/
|
|
15345
|
+
Portal_WebApp_DMR: PerTeam<boolean>;
|
|
15346
|
+
/**
|
|
15347
|
+
* Whether the Portal assault rifle weapon category (Portal_WebApp_AR) is allowed per team or globally.
|
|
15348
|
+
* If global: `true | false`
|
|
15349
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15350
|
+
*/
|
|
15351
|
+
Portal_WebApp_AR: PerTeam<boolean>;
|
|
15352
|
+
/**
|
|
15353
|
+
* Whether the Portal machine gun weapon category (Portal_WebApp_MG) is allowed per team or globally.
|
|
15354
|
+
* If global: `true | false`
|
|
15355
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15356
|
+
*/
|
|
15357
|
+
Portal_WebApp_MG: PerTeam<boolean>;
|
|
15358
|
+
/**
|
|
15359
|
+
* Whether the Portal pistol weapon category (Portal_WebApp_Pistol) is allowed per team or globally.
|
|
15360
|
+
* If global: `true | false`
|
|
15361
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15362
|
+
*/
|
|
15363
|
+
Portal_WebApp_Pistol: PerTeam<boolean>;
|
|
15364
|
+
/**
|
|
15365
|
+
* Whether the Portal sniper rifle weapon category (Portal_WebApp_SR) is allowed per team or globally.
|
|
15366
|
+
* If global: `true | false`
|
|
15367
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15368
|
+
*/
|
|
15369
|
+
Portal_WebApp_SR: PerTeam<boolean>;
|
|
15370
|
+
/**
|
|
15371
|
+
* Whether the Portal PDW (personal defense weapon) category (Portal_WebApp_PDW) is allowed per team or globally.
|
|
15372
|
+
* If global: `true | false`
|
|
15373
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15374
|
+
*/
|
|
15375
|
+
Portal_WebApp_PDW: PerTeam<boolean>;
|
|
15376
|
+
/**
|
|
15377
|
+
* Whether the Portal ground combat vehicle category (Portal_WebApp_GroundCombat) is allowed per team or globally.
|
|
15378
|
+
* If global: `true | false`
|
|
15379
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15380
|
+
*/
|
|
15381
|
+
Portal_WebApp_GroundCombat: PerTeam<boolean>;
|
|
15382
|
+
/**
|
|
15383
|
+
* Whether the Portal air combat vehicle category (Portal_WebApp_AirCombat) is allowed per team or globally.
|
|
15384
|
+
* If global: `true | false`
|
|
15385
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15386
|
+
*/
|
|
15387
|
+
Portal_WebApp_AirCombat: PerTeam<boolean>;
|
|
15388
|
+
/**
|
|
15389
|
+
* Whether the Portal class gadget category (Portal_WebApp_ClassGadget) is allowed per team or globally.
|
|
15390
|
+
* If global: `true | false`
|
|
15391
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15392
|
+
*/
|
|
15393
|
+
Portal_WebApp_ClassGadget: PerTeam<boolean>;
|
|
15394
|
+
/**
|
|
15395
|
+
* Whether the Portal deployable gadget category (Portal_WebApp_Deployable) is allowed per team or globally.
|
|
15396
|
+
* If global: `true | false`
|
|
15397
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15398
|
+
*/
|
|
15399
|
+
Portal_WebApp_Deployable: PerTeam<boolean>;
|
|
15400
|
+
/**
|
|
15401
|
+
* Whether the Portal explosive gadget category (Portal_WebApp_Explosive) is allowed per team or globally.
|
|
15402
|
+
* If global: `true | false`
|
|
15403
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15404
|
+
*/
|
|
15405
|
+
Portal_WebApp_Explosive: PerTeam<boolean>;
|
|
15406
|
+
/**
|
|
15407
|
+
* Whether the Portal launcher weapon category (Portal_WebApp_Launcher) is allowed per team or globally.
|
|
15408
|
+
* If global: `true | false`
|
|
15409
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15410
|
+
*/
|
|
15411
|
+
Portal_WebApp_Launcher: PerTeam<boolean>;
|
|
15412
|
+
/**
|
|
15413
|
+
* Whether the Portal melee weapon category (Portal_WebApp_Melee) is allowed per team or globally.
|
|
15414
|
+
* If global: `true | false`
|
|
15415
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15416
|
+
*/
|
|
15417
|
+
Portal_WebApp_Melee: PerTeam<boolean>;
|
|
15418
|
+
/**
|
|
15419
|
+
* Whether the Portal miscellaneous gadget category (Portal_WebApp_Gadget_Misc) is allowed per team or globally.
|
|
15420
|
+
* If global: `true | false`
|
|
15421
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15422
|
+
*/
|
|
15423
|
+
Portal_WebApp_Gadget_Misc: PerTeam<boolean>;
|
|
15424
|
+
/**
|
|
15425
|
+
* Whether the Portal throwable category (Portal_WebApp_Throwable) is allowed per team or globally.
|
|
15426
|
+
* If global: `true | false`
|
|
15427
|
+
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15428
|
+
*/
|
|
15429
|
+
Portal_WebApp_Throwable: PerTeam<boolean>;
|
|
15430
|
+
};
|
|
15431
|
+
declare enum AttachmentType {
|
|
15432
|
+
SpatialData = 1,
|
|
15433
|
+
TypeScript = 2,
|
|
15434
|
+
Strings = 4,
|
|
15435
|
+
}
|
|
15436
|
+
/**
|
|
15437
|
+
* Represents a map resource within the game or editor.
|
|
15438
|
+
*/
|
|
15439
|
+
type MapType = {
|
|
15440
|
+
/**
|
|
15441
|
+
* Unique identifier for the map.
|
|
15442
|
+
*/
|
|
15443
|
+
id: string;
|
|
15444
|
+
/**
|
|
15445
|
+
* Spatial attachment data containing map metadata, versioning,
|
|
15446
|
+
* and processing information.
|
|
15447
|
+
*/
|
|
15448
|
+
spatialAttachment: {
|
|
15449
|
+
/**
|
|
15450
|
+
* Unique identifier for the spatial attachment.
|
|
15370
15451
|
*/
|
|
15371
|
-
|
|
15452
|
+
id: string;
|
|
15372
15453
|
/**
|
|
15373
|
-
*
|
|
15374
|
-
* If global: `true | false`
|
|
15375
|
-
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15454
|
+
* Original filename of the attachment.
|
|
15376
15455
|
*/
|
|
15377
|
-
|
|
15456
|
+
filename: string;
|
|
15378
15457
|
/**
|
|
15379
|
-
*
|
|
15380
|
-
* If global: `true | false`
|
|
15381
|
-
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15458
|
+
* Additional metadata describing the attachment
|
|
15382
15459
|
*/
|
|
15383
|
-
|
|
15460
|
+
metadata: string;
|
|
15384
15461
|
/**
|
|
15385
|
-
*
|
|
15386
|
-
* If global: `true | false`
|
|
15387
|
-
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15462
|
+
* Version string representing the attachment's iteration or schema version.
|
|
15388
15463
|
*/
|
|
15389
|
-
|
|
15464
|
+
version: string;
|
|
15390
15465
|
/**
|
|
15391
|
-
* Whether the
|
|
15392
|
-
* If global: `true | false`
|
|
15393
|
-
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15466
|
+
* Whether the attachment is processable
|
|
15394
15467
|
*/
|
|
15395
|
-
|
|
15468
|
+
isProcessable: boolean;
|
|
15396
15469
|
/**
|
|
15397
|
-
*
|
|
15398
|
-
* If global: `true | false`
|
|
15399
|
-
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15470
|
+
* Numeric code describing the attachment's current processing status.
|
|
15400
15471
|
*/
|
|
15401
|
-
|
|
15472
|
+
processingStatus: number;
|
|
15402
15473
|
/**
|
|
15403
|
-
*
|
|
15404
|
-
*
|
|
15405
|
-
* If per team: `[[teamIndex, isAllowed], ...]`
|
|
15474
|
+
* Raw data associated with the attachment.
|
|
15475
|
+
* May include both original and compiled forms.
|
|
15406
15476
|
*/
|
|
15407
|
-
|
|
15408
|
-
|
|
15409
|
-
|
|
15410
|
-
|
|
15411
|
-
|
|
15412
|
-
|
|
15413
|
-
|
|
15414
|
-
|
|
15415
|
-
|
|
15416
|
-
|
|
15417
|
-
type MapType = {
|
|
15477
|
+
attachmentData: {
|
|
15478
|
+
/**
|
|
15479
|
+
* This is encoded in base64
|
|
15480
|
+
*/
|
|
15481
|
+
original: string;
|
|
15482
|
+
/**
|
|
15483
|
+
* This is encoded in base64
|
|
15484
|
+
*/
|
|
15485
|
+
compiled: string;
|
|
15486
|
+
};
|
|
15418
15487
|
/**
|
|
15419
|
-
*
|
|
15488
|
+
* Type of attachment
|
|
15420
15489
|
*/
|
|
15421
|
-
|
|
15490
|
+
attachmentType: AttachmentType;
|
|
15422
15491
|
/**
|
|
15423
|
-
*
|
|
15424
|
-
* and processing information.
|
|
15492
|
+
* Any errors encountered during processing or validation.
|
|
15425
15493
|
*/
|
|
15426
|
-
|
|
15427
|
-
|
|
15428
|
-
* Unique identifier for the spatial attachment.
|
|
15429
|
-
*/
|
|
15430
|
-
id: string;
|
|
15431
|
-
/**
|
|
15432
|
-
* Original filename of the attachment.
|
|
15433
|
-
*/
|
|
15434
|
-
filename: string;
|
|
15435
|
-
/**
|
|
15436
|
-
* Additional metadata describing the attachment
|
|
15437
|
-
*/
|
|
15438
|
-
metadata: string;
|
|
15439
|
-
/**
|
|
15440
|
-
* Version string representing the attachment's iteration or schema version.
|
|
15441
|
-
*/
|
|
15442
|
-
version: string;
|
|
15443
|
-
/**
|
|
15444
|
-
* Whether the attachment is processable
|
|
15445
|
-
*/
|
|
15446
|
-
isProcessable: boolean;
|
|
15447
|
-
/**
|
|
15448
|
-
* Numeric code describing the attachment's current processing status.
|
|
15449
|
-
*/
|
|
15450
|
-
processingStatus: number;
|
|
15451
|
-
/**
|
|
15452
|
-
* Raw data associated with the attachment.
|
|
15453
|
-
* May include both original and compiled forms.
|
|
15454
|
-
*/
|
|
15455
|
-
attachmentData: {
|
|
15456
|
-
/**
|
|
15457
|
-
* This is encoded in base64
|
|
15458
|
-
*/
|
|
15459
|
-
original: string;
|
|
15460
|
-
/**
|
|
15461
|
-
* This is encoded in base64
|
|
15462
|
-
*/
|
|
15463
|
-
compiled: string;
|
|
15464
|
-
};
|
|
15465
|
-
/**
|
|
15466
|
-
* Type of attachment
|
|
15467
|
-
*/
|
|
15468
|
-
attachmentType: AttachmentType;
|
|
15469
|
-
/**
|
|
15470
|
-
* Any errors encountered during processing or validation.
|
|
15471
|
-
*/
|
|
15472
|
-
errors: unknown[];
|
|
15473
|
-
};
|
|
15494
|
+
errors: unknown[];
|
|
15495
|
+
};
|
|
15474
15496
|
};
|
|
15475
15497
|
/**
|
|
15476
15498
|
* Represents the workspace structure for a mod or custom experience.
|
|
15477
15499
|
*/
|
|
15478
15500
|
type Workspace = {
|
|
15479
|
-
|
|
15480
|
-
|
|
15481
|
-
|
|
15482
|
-
|
|
15483
|
-
|
|
15484
|
-
|
|
15485
|
-
|
|
15486
|
-
|
|
15487
|
-
|
|
15488
|
-
|
|
15489
|
-
|
|
15490
|
-
|
|
15491
|
-
|
|
15492
|
-
};
|
|
15493
|
-
/**
|
|
15494
|
-
* List of variables defined within the workspace.
|
|
15495
|
-
*/
|
|
15496
|
-
variables: {
|
|
15497
|
-
/**
|
|
15498
|
-
* Human-readable name of the variable.
|
|
15499
|
-
*/
|
|
15500
|
-
name: string;
|
|
15501
|
-
/**
|
|
15502
|
-
* Unique identifier of the variable.
|
|
15503
|
-
*/
|
|
15504
|
-
id: string;
|
|
15505
|
-
/**
|
|
15506
|
-
* Variable type or data category (e.g., "Global").
|
|
15507
|
-
*/
|
|
15508
|
-
type: string;
|
|
15509
|
-
}[];
|
|
15501
|
+
mod: {
|
|
15502
|
+
/**
|
|
15503
|
+
* Describes block-based scripting data (e.g., visual logic definitions).
|
|
15504
|
+
*/
|
|
15505
|
+
blocks: {
|
|
15506
|
+
/**
|
|
15507
|
+
* Version number of the block language schema (e.g., Blockly or internal DSL version).
|
|
15508
|
+
*/
|
|
15509
|
+
languageVersion: number;
|
|
15510
|
+
/**
|
|
15511
|
+
* Array of block definitions representing visual scripting logic.
|
|
15512
|
+
*/
|
|
15513
|
+
blocks: unknown[];
|
|
15510
15514
|
};
|
|
15515
|
+
/**
|
|
15516
|
+
* List of variables defined within the workspace.
|
|
15517
|
+
*/
|
|
15518
|
+
variables: {
|
|
15519
|
+
/**
|
|
15520
|
+
* Human-readable name of the variable.
|
|
15521
|
+
*/
|
|
15522
|
+
name: string;
|
|
15523
|
+
/**
|
|
15524
|
+
* Unique identifier of the variable.
|
|
15525
|
+
*/
|
|
15526
|
+
id: string;
|
|
15527
|
+
/**
|
|
15528
|
+
* Variable type or data category (e.g., "Global").
|
|
15529
|
+
*/
|
|
15530
|
+
type: string;
|
|
15531
|
+
}[];
|
|
15532
|
+
};
|
|
15511
15533
|
};
|
|
15512
15534
|
/**
|
|
15513
15535
|
* Describes the configuration of a single team in the game.
|
|
15514
15536
|
* Each entry represents a team index and its composition limits.
|
|
15515
15537
|
*/
|
|
15516
15538
|
type TeamComposition = [
|
|
15517
|
-
|
|
15518
|
-
|
|
15519
|
-
|
|
15520
|
-
|
|
15521
|
-
|
|
15522
|
-
|
|
15523
|
-
|
|
15524
|
-
|
|
15525
|
-
|
|
15526
|
-
|
|
15527
|
-
|
|
15528
|
-
|
|
15529
|
-
|
|
15530
|
-
|
|
15531
|
-
|
|
15532
|
-
|
|
15533
|
-
|
|
15534
|
-
|
|
15535
|
-
}
|
|
15536
|
-
];
|
|
15539
|
+
/**
|
|
15540
|
+
* The team index (e.g., 0–3 depending on the number of teams).
|
|
15541
|
+
*/
|
|
15542
|
+
number, {
|
|
15543
|
+
/**
|
|
15544
|
+
* Maximum number of human players allowed on this team.
|
|
15545
|
+
*/
|
|
15546
|
+
humanCapacity: number;
|
|
15547
|
+
/**
|
|
15548
|
+
* Maximum number of AI bots allowed on this team.
|
|
15549
|
+
*/
|
|
15550
|
+
aiCapacity?: number;
|
|
15551
|
+
/**
|
|
15552
|
+
* Type of AI assigned to this team.
|
|
15553
|
+
* Unknown what any other value than 1 means. If you are aware, please create an issue
|
|
15554
|
+
*/
|
|
15555
|
+
aiType: 0 | 1;
|
|
15556
|
+
}];
|
|
15537
15557
|
/**
|
|
15538
15558
|
* Represents a collection of attachments associated with a map or project.
|
|
15539
15559
|
* Each attachment can include original and compiled data, metadata,
|
|
15540
15560
|
* and information about its processing status.
|
|
15541
15561
|
*/
|
|
15542
15562
|
type Attachment = {
|
|
15543
|
-
|
|
15544
|
-
|
|
15545
|
-
|
|
15546
|
-
|
|
15547
|
-
|
|
15548
|
-
|
|
15549
|
-
|
|
15550
|
-
|
|
15551
|
-
|
|
15552
|
-
|
|
15553
|
-
|
|
15554
|
-
|
|
15555
|
-
|
|
15556
|
-
|
|
15557
|
-
|
|
15558
|
-
|
|
15559
|
-
|
|
15560
|
-
|
|
15561
|
-
|
|
15562
|
-
|
|
15563
|
-
|
|
15564
|
-
|
|
15565
|
-
|
|
15566
|
-
|
|
15567
|
-
|
|
15568
|
-
|
|
15569
|
-
|
|
15570
|
-
|
|
15571
|
-
|
|
15572
|
-
|
|
15573
|
-
|
|
15574
|
-
|
|
15575
|
-
|
|
15576
|
-
|
|
15577
|
-
|
|
15578
|
-
|
|
15579
|
-
|
|
15580
|
-
|
|
15581
|
-
|
|
15582
|
-
|
|
15583
|
-
|
|
15584
|
-
|
|
15585
|
-
|
|
15586
|
-
|
|
15587
|
-
|
|
15588
|
-
|
|
15589
|
-
|
|
15563
|
+
/**
|
|
15564
|
+
* Unique identifier for this attachment.
|
|
15565
|
+
*/
|
|
15566
|
+
id: string;
|
|
15567
|
+
/**
|
|
15568
|
+
* Version string or numeric revision of the attachment.
|
|
15569
|
+
*/
|
|
15570
|
+
version: string;
|
|
15571
|
+
/**
|
|
15572
|
+
* Name of the file represented by this attachment.
|
|
15573
|
+
*/
|
|
15574
|
+
filename: string;
|
|
15575
|
+
/**
|
|
15576
|
+
* Indicates whether this attachment can be processed (compiled or validated).
|
|
15577
|
+
*/
|
|
15578
|
+
isProcessable: boolean;
|
|
15579
|
+
/**
|
|
15580
|
+
* Numeric code describing the current processing status of the attachment.
|
|
15581
|
+
*/
|
|
15582
|
+
processingStatus: number;
|
|
15583
|
+
/**
|
|
15584
|
+
* Container for raw and compiled forms of the attachment data.
|
|
15585
|
+
*/
|
|
15586
|
+
attachmentData: {
|
|
15587
|
+
/**
|
|
15588
|
+
* Base64-encoded JSON string containing the original (unprocessed) data.
|
|
15589
|
+
*/
|
|
15590
|
+
original: string;
|
|
15591
|
+
/**
|
|
15592
|
+
* Base64-encoded JSON string containing the compiled or processed version.
|
|
15593
|
+
*/
|
|
15594
|
+
compiled: string;
|
|
15595
|
+
};
|
|
15596
|
+
/**
|
|
15597
|
+
* Numeric or string identifier describing the type of attachment.
|
|
15598
|
+
* For example, `1` may represent a map attachment.
|
|
15599
|
+
*/
|
|
15600
|
+
attachmentType: AttachmentType;
|
|
15601
|
+
/**
|
|
15602
|
+
* Arbitrary metadata string associated with this attachment.
|
|
15603
|
+
* May contain additional parameters (e.g., "mapIdx=5").
|
|
15604
|
+
*/
|
|
15605
|
+
metadata?: string;
|
|
15606
|
+
/**
|
|
15607
|
+
* Any errors encountered while processing or validating this attachment.
|
|
15608
|
+
*/
|
|
15609
|
+
errors: unknown[];
|
|
15590
15610
|
};
|
|
15591
15611
|
/**
|
|
15592
15612
|
* Represents the configuration structure for a BF6 mod project.
|
|
@@ -15594,51 +15614,52 @@ type Attachment = {
|
|
|
15594
15614
|
* and references to related attachments or workspace details.
|
|
15595
15615
|
*/
|
|
15596
15616
|
type ConfigType = {
|
|
15597
|
-
|
|
15598
|
-
|
|
15599
|
-
|
|
15600
|
-
|
|
15601
|
-
|
|
15602
|
-
|
|
15603
|
-
|
|
15604
|
-
|
|
15605
|
-
|
|
15606
|
-
|
|
15607
|
-
|
|
15608
|
-
|
|
15609
|
-
|
|
15610
|
-
|
|
15611
|
-
|
|
15612
|
-
|
|
15613
|
-
|
|
15614
|
-
|
|
15615
|
-
|
|
15616
|
-
|
|
15617
|
-
|
|
15618
|
-
|
|
15619
|
-
|
|
15620
|
-
|
|
15621
|
-
|
|
15622
|
-
|
|
15623
|
-
|
|
15624
|
-
|
|
15625
|
-
|
|
15626
|
-
|
|
15627
|
-
|
|
15628
|
-
|
|
15629
|
-
|
|
15630
|
-
|
|
15631
|
-
|
|
15632
|
-
|
|
15633
|
-
|
|
15634
|
-
|
|
15635
|
-
|
|
15636
|
-
|
|
15637
|
-
|
|
15638
|
-
|
|
15639
|
-
|
|
15617
|
+
/**
|
|
15618
|
+
* Optional set of mutator overrides or customizations.
|
|
15619
|
+
* Each key corresponds to a mutator category or setting that modifies gameplay rules.
|
|
15620
|
+
*/
|
|
15621
|
+
mutators?: Partial<Mutators>;
|
|
15622
|
+
/**
|
|
15623
|
+
* Optional restrictions applied to in-game assets.
|
|
15624
|
+
* Used to limit or enable specific weapons, vehicles, or classes.
|
|
15625
|
+
*/
|
|
15626
|
+
assetRestrictions?: Partial<AssetRestrictions>;
|
|
15627
|
+
/**
|
|
15628
|
+
* Display name of the mod project or configuration.
|
|
15629
|
+
*/
|
|
15630
|
+
name: string;
|
|
15631
|
+
/**
|
|
15632
|
+
* Brief description of the mod, shown in the mod browser or editor.
|
|
15633
|
+
*/
|
|
15634
|
+
description: string;
|
|
15635
|
+
/**
|
|
15636
|
+
* Optional list of maps included in this configuration’s rotation.
|
|
15637
|
+
* Each entry defines a playable map and its associated parameters.
|
|
15638
|
+
*/
|
|
15639
|
+
mapRotation?: MapType[];
|
|
15640
|
+
/**
|
|
15641
|
+
* Optional workspace configuration defining project metadata,
|
|
15642
|
+
* environment paths, and editor state for the mod.
|
|
15643
|
+
*/
|
|
15644
|
+
workspace?: Workspace;
|
|
15645
|
+
/**
|
|
15646
|
+
* Defines team composition for this configuration.
|
|
15647
|
+
* IMPORTANT! Note that each teamComposition MUST be 1 greater than the team ID.
|
|
15648
|
+
*/
|
|
15649
|
+
teamComposition?: TeamComposition[];
|
|
15650
|
+
/**
|
|
15651
|
+
* Specifies the game mode type this configuration belongs to.
|
|
15652
|
+
* Usually "ModBuilderCustom" for user-created modes.
|
|
15653
|
+
*/
|
|
15654
|
+
gameMode?: "ModBuilderCustom";
|
|
15655
|
+
/**
|
|
15656
|
+
* Array of attachment objects containing spatial or file data
|
|
15657
|
+
* such as blueprints, scene files, or custom resource definitions.
|
|
15658
|
+
*/
|
|
15659
|
+
attachments?: Attachment[];
|
|
15640
15660
|
};
|
|
15641
|
-
|
|
15661
|
+
//#endregion
|
|
15662
|
+
//#region src/modlib/index.d.ts
|
|
15642
15663
|
declare function Concat(s1: string, s2: string): string;
|
|
15643
15664
|
declare function And(...rest: boolean[]): boolean;
|
|
15644
15665
|
type ConditionFunction = () => boolean;
|
|
@@ -15655,9 +15676,9 @@ declare function SortedArray(array: any[], compare: (a: any, b: any) => number):
|
|
|
15655
15676
|
declare function Equals(a: any, b: any): boolean;
|
|
15656
15677
|
declare function WaitUntil(delay: number, cond: () => boolean): Promise<void>;
|
|
15657
15678
|
declare class ConditionState {
|
|
15658
|
-
|
|
15659
|
-
|
|
15660
|
-
|
|
15679
|
+
lastState: boolean;
|
|
15680
|
+
constructor();
|
|
15681
|
+
update(newState: boolean): boolean;
|
|
15661
15682
|
}
|
|
15662
15683
|
declare function getPlayerCondition(obj: mod.Player, n: number): ConditionState;
|
|
15663
15684
|
declare function getTeamCondition(team: mod.Team, n: number): ConditionState;
|
|
@@ -15673,5 +15694,6 @@ declare function ShowHighlightedGameModeMessage(event: mod.Message, target?: mod
|
|
|
15673
15694
|
declare function ShowNotificationMessage(msg: mod.Message, target?: mod.Player | mod.Team): void;
|
|
15674
15695
|
declare function ClearAllCustomNotificationMessages(target: mod.Player): void;
|
|
15675
15696
|
declare function ClearCustomNotificationMessage(custom: mod.CustomNotificationSlots, target?: mod.Player | mod.Team): void;
|
|
15676
|
-
|
|
15677
|
-
export { AiSpawnType, And, AndFn,
|
|
15697
|
+
//#endregion
|
|
15698
|
+
export { AiSpawnType, And, AndFn, AssetRestrictions, Attachment, AttachmentType, ClearAllCustomNotificationMessages, ClearCustomNotificationMessage, Concat, ConditionState, ConfigType, ConvertArray, DisplayCustomNotificationMessage, Equals, FactionID, FilteredArray, IfThenElse, IndexOfFirstTrue, IsTrueForAll, IsTrueForAny, ManDownExperienceType, MapType, ModBuilderGameMode, Mutators, ParseUI, PerTeam, PingBehavior, ScoreboardType, ShowEventGameModeMessage, ShowHighlightedGameModeMessage, ShowNotificationMessage, SortedArray, SquadSpawnType, TeamComposition, WaitUntil, Workspace, getCapturePointCondition, getGlobalCondition, getMCOMCondition, getPlayerCondition, getPlayerId, getPlayersInTeam, getTeamCondition, getTeamId, getVehicleCondition };
|
|
15699
|
+
//# sourceMappingURL=index.d.ts.map
|