-
Notifications
You must be signed in to change notification settings - Fork 4
/
parameters.json
2148 lines (2142 loc) · 46.5 KB
/
parameters.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"AcceptedFactionInvite": [
{
"description": "The name of the faction the player accepted to join.",
"name": "factionName",
"type": "String"
},
{
"description": "The name of the player who accepted the invitation.",
"name": "playerName",
"type": "String"
}
],
"AcceptedSafehouseInvite": [
{
"description": "The name of the safehouse the player accepted to join.",
"name": "safehouseName",
"type": "String"
},
{
"description": "The name of the player who accepted the invitation.",
"name": "playerName",
"type": "String"
}
],
"AcceptedTrade": [
{
"description": "Whether the trade was accepted or not.",
"name": "accepted",
"type": "Boolean"
}
],
"AddXP": [
{
"description": "The character who's gaining XP.",
"name": "character",
"type": "IsoGameCharacter"
},
{
"description": "The perk that is being leveled up.",
"name": "perk",
"type": "PerkFactory.Perk"
},
{
"description": "The perk level gained.",
"name": "level",
"type": "Float"
}
],
"Attack": [
{
"description": "The character who's performing the attack.",
"type": "IsoLivingCharacter"
},
{
"description": "The charge time of the weapon used to perform the attack.",
"name": "chargeTime",
"type": "Float"
},
{
"description": "The hand weapon used to perform the attack.",
"type": "HandWeapon"
}
],
"AutoDrink": [
{
"description": "The character who needs to drink.",
"type": "IsoGameCharacter"
}
],
"CalculateStats": [
{
"description": "The character whose stats are being calculated.",
"type": "IsoGameCharacter"
}
],
"DoSpecialTooltip": [
{
"description": "The tooltip object to be filled.",
"type": "ObjectTooltip"
},
{
"description": "The grid square on which the tooltip has been triggered.",
"type": "IsoGridSquare"
}
],
"EveryDays": null,
"EveryHours": null,
"EveryOneMinute": null,
"EveryTenMinutes": null,
"LevelPerk": [
{
"description": "The character whose perk is being leveled up or down.",
"type": "IsoGameCharacter"
},
{
"description": "The perk being leveled up or down.",
"name": "perk",
"type": "PerkFactory.Perk"
},
{
"description": "Perk level.",
"name": "level",
"type": "Integer"
},
{
"description": "Whether the perk is being leveled up.",
"name": "levelUp",
"type": "Boolean"
}
],
"LoadGridsquare": [
{
"description": "The grid square that is being loaded.",
"type": "IsoGridSquare"
}
],
"MngInvReceiveItems": [
{
"description": "The items that are being received.",
"name": "items",
"type": "KahluaTable"
}
],
"onAddForageDefs": [
{
"description": "The forage system object",
"name": "forageSystem",
"type": "KahluaTable"
}
],
"OnAIStateChange": [
{
"description": "The character whose AI state is being changed.",
"type": "IsoGameCharacter"
},
{
"description": "The new AI state.",
"name": "newState",
"type": "State"
},
{
"description": "The old AI state.",
"name": "oldState",
"type": "State"
}
],
"OnAIStateEnter": [
{
"description": "The character whose AI state is being entered.",
"type": "IsoGameCharacter"
}
],
"OnAIStateExecute": [
{
"description": "The character whose AI state is being executed.",
"type": "IsoGameCharacter"
}
],
"OnAIStateExit": [
{
"description": "The character whose AI state is being exited.",
"type": "IsoGameCharacter"
}
],
"OnAcceptInvite": [
{
"description": "The connection string.",
"name": "connectionString",
"type": "String"
}
],
"OnAddBuilding": [
{
"description": "The building definition that is being added.",
"type": "BuildingDef"
}
],
"OnAddMessage": [
{
"description": "The chat message being added.",
"type": "ChatMessage"
},
{
"description": "The identifier of the tab in which the message is being added.",
"name": "tabId",
"type": "Short"
}
],
"OnAdminMessage": [
{
"description": "The text of the message being received from the admin.",
"name": "text",
"type": "String"
},
{
"description": "The x coordinate where to display the message.",
"name": "x",
"type": "Integer"
},
{
"description": "The y coordinate where to display the message.",
"name": "y",
"type": "Integer"
},
{
"description": "The z coordinate where to display the message.",
"name": "z",
"type": "Integer"
}
],
"OnAmbientSound": [
{
"description": "The name of the ambient sound.",
"name": "name",
"type": "String"
},
{
"description": "The x coordinate of the ambient sound.",
"name": "x",
"type": "Float"
},
{
"description": "The y coordinate of the ambient sound.",
"name": "y",
"type": "Float"
}
],
"OnBeingHitByZombie": [
{
"description": "TODO: EVENT NOT FOUND."
}
],
"OnCGlobalObjectSystemInit": null,
"OnChallengeQuery": null,
"OnChangeWeather": [
{
"description": "A string representing the weather. Can be either: \"normal\", \"cloud\", \"rain\", or \"sunny\" ",
"name": "weather",
"type": "String"
}
],
"OnCharacterCollide": [
{
"description": "The character who's colliding with another character.",
"name": "player",
"type": "IsoGameCharacter"
},
{
"description": "The character who's being collided with.",
"type": "IsoGameCharacter"
}
],
"OnCharacterCreateStats": [
{
"description": "The survivor whose description is being created.",
"type": "SurvivorDesc"
}
],
"OnCharacterDeath": [
{
"description": "The character who's about to die.",
"type": "IsoGameCharacter"
}
],
"OnCharacterMeet": [
{
"description": "The survivor who's meeting another character.",
"type": "IsoSurvivor"
},
{
"description": "The character who's being met.",
"type": "IsoGameCharacter"
},
{
"description": "The number of times the two characters already met. If zero, then this is their first encounter.",
"name": "encounters",
"type": "Integer"
}
],
"OnChatWindowInit": null,
"OnClientCommand": [
{
"description": "The name of the module for this client command.",
"name": "module",
"type": "String"
},
{
"description": "The text of the actual client command.",
"name": "command",
"type": "String"
},
{
"description": "The player who initiated the client command.",
"type": "IsoPlayer"
},
{
"description": "The arguments of the client command.",
"name": "args",
"type": "KahluaTable"
}
],
"OnClimateManagerInit": [
{
"description": "The climate manager which is being initialized.",
"type": "ClimateManager"
}
],
"OnClimateTick": [
{
"description": "The climate manager.",
"type": "ClimateManager"
}
],
"OnClimateTickDebug": [
{
"description": "The climate manager.",
"type": "ClimateManager"
}
],
"OnClothingUpdated": [
{
"description": "The character whose clothing has been updated.",
"name": "playerOrCharacter",
"type": "IsoPlayer,IsoGameCharacter"
}
],
"OnConnectFailed": [
{
"description": "The error message describing the reason for the connection failure.",
"name": "error",
"type": "String"
}
],
"OnConnected": null,
"OnConnectionStateChanged": [
{
"description": "The current state of the connection that has changed.",
"name": "state",
"type": "String"
},
{
"description": "The reason leading to the state change. It can be null.",
"name": "reason",
"type": "String"
}
],
"OnContainerUpdate": [
{
"description": "The container which is being updated.",
"name": "container",
"type": "Food,IsoDeadBody,IsoGridSquare,IsoWorldInventoryObject"
}
],
"OnCoopJoinFailed": [
{
"description": "The identifier of the player who was denied access to join the cooperative game. It can be either 0, 1, 2, or 3.",
"name": "playerId",
"type": "Integer"
}
],
"OnCoopServerMessage": [
{
"description": "The type of message received from the server. Can be either `ping`, `pong`, `steam-id`, or `server-address`.",
"name": "messageType",
"type": "String"
},
{
"description": "The nick of the player who's sending the message.",
"name": "playerNick",
"type": "String"
},
{
"description": "The Steam identifier of the player who's sending the message.",
"name": "steamId",
"type": "String"
}
],
"OnCreateLivingCharacter": [
{
"description": "The player or survivor who's being created.",
"name": "playerOrSurvivor",
"type": "IsoPlayer,IsoSurvivor"
},
{
"description": "The survivor description of the player or survivor who's being created.",
"type": "SurvivorDesc"
}
],
"OnCreatePlayer": [
{
"description": "The index of the player who's being created.",
"name": "playerIndex",
"type": "Integer"
},
{
"description": "The player who's being created.",
"type": "IsoPlayer"
}
],
"OnCreateSurvivor": [
{
"description": "The survivor who's being created.",
"type": "IsoSurvivor"
}
],
"OnCreateUI": null,
"OnCustomUIKey": [
{
"description": "The [http://legacy.lwjgl.org/javadoc/org/lwjgl/input/Keyboard.html Keyboard] key that has been released.",
"name": "key",
"type": "Integer"
}
],
"OnCustomUIKeyPressed": [
{
"description": "The [http://legacy.lwjgl.org/javadoc/org/lwjgl/input/Keyboard.html Keyboard] key that has been pressed.",
"name": "key",
"type": "Integer"
}
],
"OnCustomUIKeyReleased": [
{
"description": "The [http://legacy.lwjgl.org/javadoc/org/lwjgl/input/Keyboard.html Keyboard] key that has been released.",
"name": "key",
"type": "Integer"
}
],
"OnDawn": null,
"OnDestroyIsoThumpable": [
{
"description": "The thumpable object which is being destroyed.",
"type": "IsoThumpable"
}
],
"OnDeviceText": [
{
"description": "The interaction codes of the media device.",
"name": "interactCodes",
"type": "String"
},
{
"description": "The x coordinate of the media device displaying the text.",
"name": "x",
"type": "Float"
},
{
"description": "The y coordinate of the media device displaying the text.",
"name": "y",
"type": "Float"
},
{
"description": "The z coordinate of the media device displaying the text.",
"name": "z",
"type": "Float"
},
{
"description": "The line of text which the media device is displaying.",
"name": "line",
"type": "String"
},
{
"description": "The media device that is displaying the text.",
"name": "device",
"type": "IsoWaveSignal,Radio,VehiclePart"
}
],
"onDisableSearchMode": [
{
"description": "The player who's disabling search mode.",
"type": "IsoPlayer"
},
{
"description": "Whether search mode is being enabled or disabled.",
"name": "isSearchMode",
"type": "Boolean"
}
],
"OnDisconnect": null,
"OnDistributionMerge": null,
"OnDoTileBuilding": [
{
"description": "True when the ghost image of what is to be build should be drawn. False when the building should actually be started/done.",
"name": "isRender",
"type": "Boolean"
},
{
"description": "The x coordinate of the square where to draw the building tile.",
"name": "x",
"type": "Integer"
},
{
"description": "The y coordinate of the square where to draw the building tile.",
"name": "y",
"type": "Integer"
},
{
"description": "The z coordinate of the square where to draw the building tile.",
"name": "z",
"type": "Integer"
},
{
"description": "The square where to draw the building tile.",
"type": "IsoGridSquare"
},
{
"description": "The inventory item on the cursor to define what has to be built.",
"type": "InventoryItem"
}
],
"OnDoTileBuilding2": [
{
"description": "The chunk in which the tile is being set.",
"type": "IsoChunk"
},
{
"description": "Whether the tile should be rendered or not.",
"name": "render",
"type": "Boolean"
},
{
"description": "The x coordinate of the tile being set.",
"name": "x",
"type": "Integer"
},
{
"description": "The y coordinate of the tile being set.",
"name": "y",
"type": "Integer"
},
{
"description": "The z coordinate of the tile being set.",
"name": "z",
"type": "Integer"
},
{
"description": "The grid square where the tile is being set.",
"type": "IsoGridSquare"
}
],
"OnDoTileBuilding3": [
{
"description": "The chunk in which the tile is being set.",
"type": "IsoChunk"
},
{
"description": "Whether the tile should be rendered or not.",
"name": "render",
"type": "Boolean"
},
{
"description": "The x coordinate of the tile being set.",
"name": "x",
"type": "Integer"
},
{
"description": "The y coordinate of the tile being set.",
"name": "y",
"type": "Integer"
},
{
"description": "The z coordinate of the tile being set.",
"name": "z",
"type": "Integer"
}
],
"OnDusk": null,
"OnDynamicMovableRecipe": [
{
"description": "The movable object resulting from using the recipe.",
"type": "Moveable"
},
{
"description": "The movable recipe that is being used.",
"type": "MovableRecipe"
},
{
"description": "The item from the player inventory.",
"type": "InventoryItem"
},
{
"description": "The character who's using the recipe.",
"type": "IsoGameCharacter"
}
],
"onEnableSearchMode": [
{
"description": "The player who's enabling search mode.",
"type": "IsoPlayer"
},
{
"description": "Whether search mode is being enabled or disabled.",
"name": "isSearchMode",
"type": "Boolean"
}
],
"OnEnterVehicle": [
{
"description": "The character who's entering the vehicle.",
"type": "IsoGameCharacter"
}
],
"OnEquipPrimary": [
{
"description": "The character who's equipping the item.",
"type": "IsoGameCharacter"
},
{
"description": "The item that is being equipped in the primary slot.",
"type": "InventoryItem"
}
],
"OnEquipSecondary": [
{
"description": "The character who's equipping the item.",
"type": "IsoGameCharacter"
},
{
"description": "The item that is being equipped in the secondary slot.",
"type": "InventoryItem"
}
],
"OnExitVehicle": [
{
"description": "The character who's exiting the vehicle.",
"type": "IsoGameCharacter"
}
],
"OnFETick": [
{
"description": "Always zero.",
"name": "numberTicks",
"type": "Double"
}
],
"OnFillContainer": [
{
"description": "The room name in which the container is installed.",
"name": "roomName",
"type": "String"
},
{
"description": "The type of the container that is being filled.",
"name": "containerType",
"type": "String"
},
{
"description": "The container that is being filled.",
"type": "ItemContainer"
}
],
"OnFillInventoryObjectContextMenu": [
{
"description": "The player for which the context menu is being filled.",
"type": "IsoPlayer"
},
{
"description": "The context menu to be filled.",
"type": "context",
"type": "KahluaTable"
},
{
"description": "The items available in the player inventory.",
"name": "items",
"type": "KahluaTable"
}
],
"onFillSearchIconContextMenu": [
{
"description": "The context menu to be filled.",
"name": "context",
"type": "KahluaTable"
},
{
"description": "TODO",
"name": "baseIcon",
"type": "KahluaTable"
}
],
"OnFillWorldObjectContextMenu": [
{
"description": "The player for which the context menu is being filled.",
"type": "IsoPlayer"
},
{
"description": "The context menu to be filled.",
"name": "context",
"type": "KahluaTable"
},
{
"description": "The world objects available nearby the player.",
"name": "worldObjects",
"type": "KahluaTable"
},
{
"description": "Set to true if called for the purpose of testing for nearby objects.",
"name": "test",
"type": "Boolean"
}
],
"OnGameBoot": null,
"OnGameStart": null,
"OnGameTimeLoaded": null,
"OnGamepadConnect": [
{
"description": "The identifier of the gamepad which has been connected.",
"name": "controllerID",
"type": "Integer"
}
],
"OnGamepadDisconnect": [
{
"description": "The identifier of the gamepad which has been disconnected.",
"name": "controllerID",
"type": "Integer"
}
],
"OnGetDBSchema": [
{
"description": "The database schema of the game client.",
"name": "dbSchema",
"type": "KahluaTable"
}
],
"OnGetTableResult": [
{
"description": "The row data of the table result.",
"name": "result",
"type": "ArrayList"
},
{
"description": "The row identifier of the table result.",
"name": "rowId",
"type": "Integer"
},
{
"description": "The name of the table result.",
"name": "tableName",
"type": "String"
}
],
"OnGridBurnt": [
{
"description": "The grid square that is burning.",
"type": "IsoGridSquare"
}
],
"OnHitZombie": [
{
"description": "The zombie that is being hit.",
"type": "IsoZombie"
},
{
"description": "The character who's hitting the zombie.",
"type": "IsoGameCharacter"
},
{
"description": "The body part where the zombie was hit.",
"type": "BodyPartType"
},
{
"description": "The hand weapon used to hit the zombie.",
"type": "HandWeapon"
}
],
"OnInitGlobalModData": [
{
"description": "Whether this is a new game or not.",
"name": "isNewGame",
"type": "Boolean"
}
],
"OnInitModdedWeatherStage": [
{
"description": "The weather period of this weather stage.",
"type": "WeatherPeriod"
},
{
"description": "The weather stage to be initialized.",
"type": "WeatherPeriod.WeatherStage"
},
{
"name": "airFrontStrength",
"type": "Float"
}
],
"OnInitRecordedMedia": [
{
"description": "The recorded media to be initialized.",
"type": "RecordedMedia"
}
],
"OnInitSeasons": [
{
"description": "The season to be initialized.",
"type": "ErosionSeason"
}
],
"OnInitWorld": null,
"OnIsoThumpableLoad": [
{
"description": "TODO: EVENT NOT FOUND."
}
],
"OnIsoThumpableSave": [
{
"description": "TODO: EVENT NOT FOUND."
}
],
"onItemFall": [
{
"description": "The inventory item being dropped on the ground.",
"name": "item",
"type": "InventoryItem"
}
],
"OnJoypadActivate": [
{
"description": "The identifier of the joypad which has been activated.",
"name": "controllerId",
"type": "Integer"
}
],
"OnJoypadActivateUI": [
{
"description": "The identifier of the joypad.",
"name": "joypadId",
"type": "Integer"
}
],
"OnJoypadBeforeDeactivate": [
{
"description": "The identifier of the joypad.",
"name": "joypadId",
"type": "Double"
}
],
"OnJoypadBeforeReactivate": [
{
"description": "The identifier of the joypad.",
"name": "joypadId",
"type": "Double"
}
],
"OnJoypadDeactivate": [
{
"description": "The identifier of the joypad.",
"name": "joypadId",
"type": "Double"
}
],
"OnJoypadReactivate": [
{
"description": "The identifier of the joypad.",
"name": "joypadId",
"type": "Double"
}
],
"OnJoypadRenderUI": null,
"OnKeyKeepPressed": [
{
"description": "The [http://legacy.lwjgl.org/javadoc/org/lwjgl/input/Keyboard.html Keyboard] key that has been kept pressed.",
"name": "key",
"type": "Integer"
}
],
"OnKeyPressed": [
{
"description": "The [http://legacy.lwjgl.org/javadoc/org/lwjgl/input/Keyboard.html Keyboard] key that has been released.",
"name": "key",
"type": "Integer"
}
],
"OnKeyStartPressed": [
{
"description": "The [http://legacy.lwjgl.org/javadoc/org/lwjgl/input/Keyboard.html Keyboard] key that has been pressed.",
"name": "key",
"type": "Integer"
}
],
"OnLoad": null,
"OnLoadMapZones": null,
"OnLoadRadioScripts": [
{
"description": "The radio script manager.",
"type": "RadioScriptManager"
},
{
"description": "True if the world has not yet been initialized.",
"name": "worldInit",
"type": "Boolean"
}
],
"OnLoadSoundBanks": null,
"OnLoadedTileDefinitions": [
{
"description": "The sprite manager.",
"type": "IsoSpriteManager"
}
],
"OnLoginState": [
{
"max_version": "40.43",
"description": "The current login state.",
"type": "LoginState"
}
],
"OnLoginStateSuccess": null,
"OnMainMenuEnter": null,
"OnMakeItem": [
{
"description": "The item used to make the item.",
"name": "item",
"type": "InventoryItem"
},
{
"description": "The resulting item that is being created from applying the recipe.",
"name": "resultItem",
"type": "InventoryItem"
},
{
"description": "The recipe to make the resulting item.",
"type": "Recipe"
}
],
"OnMapLoadCreateIsoObject": [
{
"description": "TODO: EVENT NOT FOUND."
}
],
"OnMechanicActionDone": [
{
"description": "The character who performed the mechanic action.",
"type": "IsoGameCharacter"
},
{
"description": "Whether the machanic action was successful or not.",
"name": "success",
"type": "Boolean"
},
{
"description": "The identifier of the vehicle on which the mechanic action is being performed.",
"name": "vehicleId",
"type": "Integer"
},
{
"description": "The vehicle part identifier that is being installed or removed.",
"name": "partId",
"type": "String"
},
{
"description": "The item identifier used to perform the mechanic action.",
"name": "itemId",
"type": "Long"
},
{
"description": "Whether the vehicle part is being installed or removed.",
"name": "installing",
"type": "Boolean"
}
],
"OnMiniScoreboardUpdate": null,
"OnModsModified": null,
"OnMouseDown": [
{
"description": "The x coordinate where the mouse button was pressed down.",
"name": "x",
"type": "Integer"
},
{
"description": "The y coordinate where the mouse button was pressed down.",
"name": "y",
"type": "Integer"
}
],
"OnMouseMove": [
{
"description": "The x coordinate of the mouse position.",
"name": "x",
"type": "Integer"
},
{
"description": "The y coordinate of the mouse position.",
"name": "y",
"type": "Integer"
},
{
"description": "TODO: Mouse position deltaX?",
"name": "dx",
"type": "Integer"
},
{
"description": "TODO: Mouse position deltaY?",
"name": "dy",
"type": "Integer"
}
],
"OnMouseUp": [