-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathBootstrapper.xml
1677 lines (1664 loc) · 86.4 KB
/
Bootstrapper.xml
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
<?xml version="1.0"?>
<doc>
<assembly>
<name>Bootstrapper</name>
</assembly>
<members>
<member name="F:GTANetworkAPI.Event.ResourceStart">
<summary>
Event has no parameters.
</summary>
</member>
<member name="F:GTANetworkAPI.Event.ResourceStop">
<summary>
Event has no parameters.
</summary>
</member>
<member name="F:GTANetworkAPI.Event.ResourceStartEx">
<summary>
Event Params: <see cref="T:System.String"/> resourceName
</summary>
</member>
<member name="F:GTANetworkAPI.Event.ResourceStopEx">
<summary>
Event Params: <see cref="T:System.String"/> resourceName
</summary>
</member>
<member name="F:GTANetworkAPI.Event.MapChange">
<summary>
Event Params: <see cref="T:System.String"/> mapName, <see cref="T:GTANetworkAPI.XmlGroup"/> map
</summary>
</member>
<member name="F:GTANetworkAPI.Event.ChatMessage">
<summary>
Event Params: <see cref="T:GTANetworkAPI.Client"/> client, <see cref="T:System.String"/> message
</summary>
</member>
<member name="F:GTANetworkAPI.Event.Update">
<summary>
Event has no parameters.
</summary>
</member>
<member name="F:GTANetworkAPI.Event.EntityCreated">
<summary>
Event Params: <see cref="T:GTANetworkAPI.NetHandle"/> entity
</summary>
</member>
<member name="F:GTANetworkAPI.Event.EntityDeleted">
<summary>
Event Params: <see cref="T:GTANetworkAPI.NetHandle"/> entity
</summary>
</member>
<member name="F:GTANetworkAPI.Event.EntityModelChange">
<summary>
Event Params: <see cref="T:GTANetworkAPI.NetHandle"/> entity, <see cref="T:System.UInt32"/> oldModel
</summary>
</member>
<member name="F:GTANetworkAPI.Event.PlayerConnected">
<summary>
Event Params: <see cref="T:GTANetworkAPI.Client"/> client
</summary>
</member>
<member name="F:GTANetworkAPI.Event.PlayerDisconnected">
<summary>
Event Params: <see cref="T:GTANetworkAPI.Client"/> client, <see cref="T:GTANetworkAPI.DisconnectionType"/> type, <see cref="T:System.String"/> reason
</summary>
</member>
<member name="F:GTANetworkAPI.Event.PlayerSpawn">
<summary>
Event Params: <see cref="T:GTANetworkAPI.Client"/> client
</summary>
</member>
<member name="F:GTANetworkAPI.Event.PlayerDeath">
<summary>
Event Params: <see cref="T:GTANetworkAPI.Client"/> client, <see cref="T:GTANetworkAPI.Client"/> killer, <see cref="T:System.UInt32"/> reason
<para>Death reason can be of either <see cref="T:GTANetworkAPI.WeaponHash"/> or <see cref="T:GTANetworkAPI.DeathReason"/></para>
</summary>
</member>
<member name="F:GTANetworkAPI.Event.PlayerDamage">
<summary>
Event Params: <see cref="T:GTANetworkAPI.Client"/> client, <see cref="T:System.Single"/> healthLoss, <see cref="T:System.Single"/> armorLoss
</summary>
</member>
<member name="F:GTANetworkAPI.Event.PlayerPickup">
<summary>
Event Params: <see cref="T:GTANetworkAPI.Client"/> client, <see cref="T:GTANetworkAPI.Pickup"/> pickup
</summary>
</member>
<member name="F:GTANetworkAPI.Event.PlayerWeaponSwitch">
<summary>
Event Params: <see cref="T:GTANetworkAPI.Client"/> client, <see cref="T:GTANetworkAPI.WeaponHash"/> oldWeaponHash, <see cref="T:GTANetworkAPI.WeaponHash"/> newWeaponHash
</summary>
</member>
<member name="F:GTANetworkAPI.Event.PlayerDetonateStickies">
<summary>
Event Params: <see cref="T:GTANetworkAPI.Client"/> client
</summary>
</member>
<member name="F:GTANetworkAPI.Event.PlayerEnterCheckpoint">
<summary>
Event Params: <see cref="T:GTANetworkAPI.Checkpoint"/> checkpoint, <see cref="T:GTANetworkAPI.Client"/> client
</summary>
</member>
<member name="F:GTANetworkAPI.Event.PlayerExitCheckpoint">
<summary>
Event Params: <see cref="T:GTANetworkAPI.Checkpoint"/> checkpoint, <see cref="T:GTANetworkAPI.Client"/> client
</summary>
</member>
<member name="F:GTANetworkAPI.Event.PlayerEnterColshape">
<summary>
Event Params: <see cref="T:GTANetworkAPI.ColShape"/> colShape, <see cref="T:GTANetworkAPI.Client"/> client
</summary>
</member>
<member name="F:GTANetworkAPI.Event.PlayerExitColshape">
<summary>
Event Params: <see cref="T:GTANetworkAPI.ColShape"/> colShape, <see cref="T:GTANetworkAPI.Client"/> client
</summary>
</member>
<member name="F:GTANetworkAPI.Event.PlayerEnterVehicleAttempt">
<summary>
Event Params: <see cref="T:GTANetworkAPI.Client"/> client, <see cref="T:GTANetworkAPI.Vehicle"/> vehicle, <see cref="T:System.SByte"/> seatID
</summary>
</member>
<member name="F:GTANetworkAPI.Event.PlayerExitVehicleAttempt">
<summary>
Event Params: <see cref="T:GTANetworkAPI.Client"/> client, <see cref="T:GTANetworkAPI.Vehicle"/> vehicle
</summary>
</member>
<member name="F:GTANetworkAPI.Event.PlayerEnterVehicle">
<summary>
Event Params: <see cref="T:GTANetworkAPI.Client"/> client, <see cref="T:GTANetworkAPI.Vehicle"/> vehicle, <see cref="T:System.SByte"/> seatID
</summary>
</member>
<member name="F:GTANetworkAPI.Event.PlayerExitVehicle">
<summary>
Event Params: <see cref="T:GTANetworkAPI.Client"/> client, <see cref="T:GTANetworkAPI.Vehicle"/> vehicle
</summary>
</member>
<member name="F:GTANetworkAPI.Event.VehicleDamage">
<summary>
Event Params: <see cref="T:GTANetworkAPI.Vehicle"/> vehicle, <see cref="T:System.Single"/> bodyHealthLoss, <see cref="T:System.Single"/> engineHealthLoss
</summary>
</member>
<member name="F:GTANetworkAPI.Event.VehicleDeath">
<summary>
Event Params: <see cref="T:GTANetworkAPI.Vehicle"/> vehicle
</summary>
</member>
<member name="F:GTANetworkAPI.Event.VehicleHornToggle">
<summary>
Event Params: <see cref="T:GTANetworkAPI.Vehicle"/> vehicle
</summary>
</member>
<member name="F:GTANetworkAPI.Event.VehicleSirenToggle">
<summary>
Event Params: <see cref="T:GTANetworkAPI.Vehicle"/> vehicle, <see cref="T:System.Boolean"/> oldValue
</summary>
</member>
<member name="F:GTANetworkAPI.Event.VehicleDoorBreak">
<summary>
Event Params: <see cref="T:GTANetworkAPI.Vehicle"/> vehicle, <see cref="T:System.Int32"/> index
</summary>
</member>
<member name="F:GTANetworkAPI.Event.VehicleWindowSmash">
<summary>
Event Params: <see cref="T:GTANetworkAPI.Vehicle"/> vehicle, <see cref="T:System.Int32"/> index
</summary>
</member>
<member name="F:GTANetworkAPI.Event.VehicleTyreBurst">
<summary>
Event Params: <see cref="T:GTANetworkAPI.Vehicle"/> vehicle, <see cref="T:System.Int32"/> index
</summary>
</member>
<member name="F:GTANetworkAPI.Event.VehicleTrailerChange">
<summary>
Event Params: <see cref="T:GTANetworkAPI.Vehicle"/> vehicle, <see cref="T:GTANetworkAPI.Vehicle"/> trailer
</summary>
</member>
<member name="F:GTANetworkAPI.Event.FirstChanceException">
<summary>
<para>Occurs when an exception is thrown in managed code, before the runtime searches
the call stack for an exception handler in the application domain.</para>
<para>Event Params: <see cref="T:System.Exception"/> exception</para>
</summary>
</member>
<member name="F:GTANetworkAPI.Event.UnhandledException">
<summary>
Occurs when an exception is not caught.
Event Params: <see cref="T:System.Exception"/> exception
</summary>
</member>
<member name="F:GTANetworkAPI.Event.Invalid">
<summary>
An invalid event for internal usage
</summary>
</member>
<member name="M:GTANetworkMethods.Task.Run(System.Action,System.Int64)">
<summary>
Runs thread-safe API code on main thread.
</summary>
<param name="task"></param>
<param name="delayTime">should be in ms (milliseconds)</param>
</member>
<!-- ACL Methods -->
<member name="M:GTANetworkMethods.ACL.DoesPlayerHaveAccessToCommand(GTANetworkAPI.Client,System.String)">
<summary>
Returns a <see cref="System.Boolean"/> depending on if the given Client has access to the given Command.
</summary>
<param name="Client"></param>
<param name="Command"></param>
</member>
<member name="M:GTANetworkMethods.ACL.GetPlayerAclGroup(GTANetworkAPI.Client)">
<summary>
Returns a <see cref="System.String"/> with the given Client's ACL group.
</summary>
<param name="Client"></param>
</member>
<member name="M:GTANetworkMethods.ACL.IsAclEnabled()">
<summary>
Returns a <see cref="System.Boolean"/> depending on if ACL is enabled on the current server.
</summary>
</member>
<member name="M:GTANetworkMethods.ACL.IsPlayerLoggedIn(GTANetworkAPI.Client)">
<summary>
Returns a <see cref="System.Boolean"/> depending on if given Client is logged in to ACL.
</summary>
<param name="Client"></param>
</member>
<member name="M:GTANetworkMethods.ACL.LoginPlayer(GTANetworkAPI.Client,System.String)">
<summary>
Attempts to login in given Client with the given Password, returns <see cref="GTANetworkAPI.LoginResult"/> enum with the result of the login.
</summary>
<param name="Client"></param>
<param name="Password"></param>
</member>
<member name="M:GTANetworkMethods.ACL.Logoutlayer(GTANetworkAPI.Client)">
<summary>
Logs out the given Client, this method is void meaning it returns nothing.
</summary>
<param name="Client"></param>
</member>
<!-- Blips Methods -->
<member name="M:GTANetworkMethods.Blip.CreateBlip(GTANetworkAPI.NetHandle)">
<summary>
Creates a <see cref="GTANetworkAPI.Blip"/> with the given <see cref="GTANetworkAPI.NetHandle"/>.
</summary>
<param name="entity"></param>
</member>
<member name="M:GTANetworkMethods.Blip.CreateBlip(GTANetworkAPI.Vector3,System.UInt32)">
<summary>
Creates blip with the given Vector3. Uses the default parameters.
</summary>
<param name="pos">The position of the blip.</param>
<param name="Dimension">Optional, defaults to Global Dimension.</param>
</member>
<member name="M:GTANetworkMethods.Blip.CreateBlip(GTANetworkAPI.Vector3,System.Single,System.UInt32)">
<summary>
Creates blip with the given Vector3, and Range. Uses the default parameters.
</summary>
<param name="pos">The position of the blip.</param>
<param name="range">The distance the blip can be seen.</param>
<param name="dimension">Optional, defaults to Global Dimension.</param>
</member>
<member name="M:GTANetworkMethods.Blip.CreateBlip(System.UInt32,GTANetworkAPI.Vector3,System.Single,System.Byte,System.String,System.Byte,System.Single,System.Boolean,System.Int16,System.UInt32)">
<summary>
Creates blip with the given Sprite, Vector3, Scale, and Color.
</summary>
<param name="sprite">The sprite/image of the blip.</param>
<param name="position">The position of the blip.</param>
<param name="scale">The scale of the blip.</param>
<param name="color">The color of the blip.</param>
<param name="name">Optional, defaults to "".</param>
<param name="alpha">Optional, defaults to 255.</param>
<param name="drawDistance">Optional, defaults to 0.</param>
<param name="shortRange">Optional, defaults to false.</param>
<param name="rotation">Optional, defaults to 0.</param>
<param name="Dimension">Optional, defaults to Global Dimension.</param>
</member>
<member name="M:GTANetworkMethods.Blip.CreateBlip(System.Int32,GTANetworkAPI.Vector3,System.Single,System.Byte,System.String,System.Byte,System.Single,System.Boolean,System.Int16,System.UInt32)">
<summary>
Creates blip with the given Sprite, Vector3, Scale, and Color.
</summary>
<param name="sprite">The sprite/image of the blip.</param>
<param name="position">The position of the blip.</param>
<param name="scale">The scale of the blip.</param>
<param name="color">The color of the blip.</param>
<param name="name">Optional, defaults to "".</param>
<param name="alpha">Optional, defaults to 255.</param>
<param name="drawDistance">Optional, defaults to 0.</param>
<param name="shortRange">Optional, defaults to false.</param>
<param name="rotation">Optional, defaults to 0.</param>
<param name="Dimension">Optional, defaults to Global Dimension.</param>
</member>
<member name="M:GTANetworkMethods.Blip.GetBlipColor(GTANetworkAPI.NetHandle)">
<summary>
Gets the given <see cref="GTANetworkAPI.Blip"/>'s color and returns it as a int.
</summary>
<param name="blip">The Blip.</param>
</member>
<member name="M:GTANetworkMethods.Blip.GetBlipColor(GTANetworkAPI.NetHandle)">
<summary>
Gets the given <see cref="GTANetworkAPI.Blip"/>'s color and returns it as a int.
</summary>
<param name="blip">The Blip.</param>
</member>
<member name="M:GTANetworkMethods.Blip.GetBlipName(GTANetworkAPI.NetHandle)">
<summary>
Gets the given <see cref="GTANetworkAPI.Blip"/>'s name and returns it as a string.
</summary>
<param name="blip">The Blip.</param>
</member>
<member name="M:GTANetworkMethods.Blip.GetBlipPosition(GTANetworkAPI.NetHandle)">
<summary>
Gets the given <see cref="GTANetworkAPI.Blip"/>'s position and returns it as a Vector3.
</summary>
<param name="blip">The Blip.</param>
</member>
<member name="M:GTANetworkMethods.Blip.GetBlipRouteColor(GTANetworkAPI.NetHandle)">
<summary>
Gets the given <see cref="GTANetworkAPI.Blip"/>'s Route Color and returns it as a int.
</summary>
<param name="blip">The Blip.</param>
</member>
<member name="M:GTANetworkMethods.Blip.GetBlipRouteVisible(GTANetworkAPI.NetHandle)">
<summary>
Gets the given <see cref="GTANetworkAPI.Blip"/>'s current route visibility and returns it as a bool.
</summary>
<param name="blip">The Blip.</param>
</member>
<member name="M:GTANetworkMethods.Blip.GetBlipScale(GTANetworkAPI.NetHandle)">
<summary>
Gets the given <see cref="GTANetworkAPI.Blip"/>'s scale and returns it as a float.
</summary>
<param name="blip">The Blip.</param>
</member>
<member name="M:GTANetworkMethods.Blip.GetBlipShortRange(GTANetworkAPI.NetHandle)">
<summary>
Gets the given <see cref="GTANetworkAPI.Blip"/>'s short range and returns it as a bool.
</summary>
<param name="blip">The Blip.</param>
</member>
<member name="M:GTANetworkMethods.Blip.GetBlipSprite(GTANetworkAPI.NetHandle)">
<summary>
Gets the given <see cref="GTANetworkAPI.Blip"/>'s sprite and returns it as a uint.
</summary>
<param name="blip">The Blip.</param>
</member>
<member name="M:GTANetworkMethods.Blip.GetBlipTransparency(GTANetworkAPI.NetHandle)">
<summary>
Gets the given <see cref="GTANetworkAPI.Blip"/>'s current transparency and returns it as a int.
</summary>
<param name="blip">The Blip.</param>
</member>
<member name="M:GTANetworkMethods.Blip.GetBlipTransparency(GTANetworkAPI.NetHandle)">
<summary>
Gets the given <see cref="GTANetworkAPI.Blip"/>'s current transparency and returns it as a int.
</summary>
<param name="blip">The Blip.</param>
</member>
<member name="M:GTANetworkMethods.Blip.SetBlipColor(GTANetworkAPI.NetHandle,System.Int32)">
<summary>
Sets the given <see cref="GTANetworkAPI.Blip"/>'s color based on the int you pass in.
</summary>
<param name="blip">The Blip.</param>
<param name="color">The Color of the Blip.</param>
</member>
<member name="M:GTANetworkMethods.Blip.SetBlipName(GTANetworkAPI.NetHandle,System.String)">
<summary>
Sets the given <see cref="GTANetworkAPI.Blip"/>'s name based on the string you pass in.
</summary>
<param name="blip">The Blip.</param>
<param name="name">The Name of the Blip.</param>
</member>
<member name="M:GTANetworkMethods.Blip.SetBlipPosition(GTANetworkAPI.NetHandle,GTANetworkAPI.Vector3)">
<summary>
Sets the given <see cref="GTANetworkAPI.Blip"/>'s position based on the Vector3 you pass in.
</summary>
<param name="blip">The Blip.</param>
<param name="newPos">The Position of the Blip.</param>
</member>
<member name="M:GTANetworkMethods.Blip.SetBlipRouteColor(GTANetworkAPI.NetHandle,System.Int32)">
<summary>
Sets the given <see cref="GTANetworkAPI.Blip"/>'s route color based on the int you pass in.
</summary>
<param name="blip">The Blip.</param>
<param name="color">The Route Color of the Blip.</param>
</member>
<member name="M:GTANetworkMethods.Blip.SetBlipRouteVisible(GTANetworkAPI.NetHandle,System.Boolean)">
<summary>
Sets the given <see cref="GTANetworkAPI.Blip"/>'s visiblity based on the bool you pass in.
</summary>
<param name="blip">The Blip.</param>
<param name="visible">The Visiblity of the Blip.</param>
</member>
<member name="M:GTANetworkMethods.Blip.SetBlipScale(GTANetworkAPI.NetHandle,System.Single)">
<summary>
Sets the given <see cref="GTANetworkAPI.Blip"/>'s scale based on the float you pass in.
</summary>
<param name="blip">The Blip.</param>
<param name="scale">The Scale of the Blip.</param>
</member>
<member name="M:GTANetworkMethods.Blip.SetBlipShortRange(GTANetworkAPI.NetHandle,System.Boolean)">
<summary>
Sets the given <see cref="GTANetworkAPI.Blip"/>'s short range based on the bool you pass in.
</summary>
<param name="blip">The Blip.</param>
<param name="range">The Short Range of the Blip.</param>
</member>
<member name="M:GTANetworkMethods.Blip.SetBlipSprite(GTANetworkAPI.NetHandle,System.Int32)">
<summary>
Sets the given <see cref="GTANetworkAPI.Blip"/>'s sprite based on the int you pass in.
</summary>
<param name="blip">The Blip.</param>
<param name="sprite">The Sprite of the Blip.</param>
</member>
<member name="M:GTANetworkMethods.Blip.SetBlipSprite(GTANetworkAPI.NetHandle,System.UInt32)">
<summary>
Sets the given <see cref="GTANetworkAPI.Blip"/>'s sprite based on the uint you pass in.
</summary>
<param name="blip">The Blip.</param>
<param name="sprite">The Sprite of the Blip.</param>
</member>
<member name="M:GTANetworkMethods.Blip.SetBlipTransparency(GTANetworkAPI.NetHandle,System.Int32)">
<summary>
Sets the given <see cref="GTANetworkAPI.Blip"/>'s transparency based on the int you pass in.
</summary>
<param name="blip">The Blip.</param>
<param name="alpha">The Transparency of the Blip.</param>
</member>
<!-- Chat Methods -->
<member name="M:GTANetworkMethods.Chat.SendChatMessageToAll(System.String,System.Boolean)">
<summary>
Sends a chat message to every player in the server.
</summary>
<param name="message">The Message.</param>
<param name="oldColors">Optional, bool to use the old chat colors.</param>
</member>
<member name="M:GTANetworkMethods.Chat.SendChatMessageToAll(System.String,System.String,System.Boolean)">
<summary>
Sends a chat message to every player in the server, with the name of a sender.
</summary>
<param name="sender">The Sender of the Message.</param>
<param name="message">The Message.</param>
<param name="oldColors">Optional, bool to use the old chat colors.</param>
</member>
<member name="M:GTANetworkMethods.Chat.SendChatMessageToPlayer(GTANetworkAPI.Client,System.String,System.Boolean)">
<summary>
Sends a chat message to the given Client.
</summary>
<param name="player">The Player the Message will be sent to.</param>
<param name="message">The Message.</param>
<param name="oldColors">Optional, bool to use the old chat colors.</param>
</member>
<member name="M:GTANetworkMethods.Chat.SendChatMessageToAll(GTANetworkAPI.Client,System.String,System.String,System.Boolean)">
<summary>
Sends a chat message to the given Client, with the name of a sender.
</summary>
<param name="player">The Player the Message will be sent to.</param>
<param name="sender">The Sender of the Message.</param>
<param name="message">The Message.</param>
<param name="oldColors">Optional, bool to use the old chat colors.</param>
</member>
<!-- Checkpoint Methods -->
<member name="M:GTANetworkMethods.Checkpoint.CreateCheckpoint(GTANetworkAPI.CheckpointType,GTANetworkAPI.Vector3,GTANetworkAPI.Vector3,System.Single,GTANetworkAPI.Color,System.UInt32)">
<summary>
Creates a checkpoint with the given CheckpointType, Vector3 for the position, Vector3 for the direction, float for the scale, and Color for the color.
</summary>
<param name="model">The Checkpoint's model.</param>
<param name="pos">The Position of the Checkpoint.</param>
<param name="dir">The Direction of the Checkpoint.</param>
<param name="scale">The Scale of the Checkpoint.</param>
<param name="color">The Color of the Checkpoint.</param>
<param name="dimension">Optional, defaults to the Global Dimension.</param>
</member>
<member name="M:GTANetworkMethods.Checkpoint.CreateCheckpoint(System.UInt32,GTANetworkAPI.Vector3,GTANetworkAPI.Vector3,System.Single,GTANetworkAPI.Color,System.UInt32)">
<summary>
Creates a checkpoint with the given the uint for the model, Vector3 for the position, Vector3 for the direction, float for the scale, and Color for the color.
</summary>
<param name="model">The Checkpoint's model.</param>
<param name="pos">The Position of the Checkpoint.</param>
<param name="dir">The Direction of the Checkpoint.</param>
<param name="scale">The Scale of the Checkpoint.</param>
<param name="color">The Color of the Checkpoint.</param>
<param name="dimension">Optional, defaults to the Global Dimension.</param>
</member>
<member name="M:GTANetworkMethods.Checkpoint.CreateCheckpoint(System.Int32,GTANetworkAPI.Vector3,GTANetworkAPI.Vector3,System.Single,GTANetworkAPI.Color,System.UInt32)">
<summary>
Creates a checkpoint with the given the int for the model, Vector3 for the position, Vector3 for the direction, float for the scale, and Color for the color.
</summary>
<param name="model">The Checkpoint's model.</param>
<param name="pos">The Position of the Checkpoint.</param>
<param name="dir">The Direction of the Checkpoint.</param>
<param name="scale">The Scale of the Checkpoint.</param>
<param name="color">The Color of the Checkpoint.</param>
<param name="dimension">Optional, defaults to the Global Dimension.</param>
</member>
<member name="M:GTANetworkMethods.Checkpoint.GetCheckpointColor(GTANetworkAPI.NetHandle)">
<summary>
Gets the given Checkpoint's Color and returns it as a Color.
</summary>
<param name="marker">The Checkpoint.</param>
</member>
<member name="M:GTANetworkMethods.Checkpoint.GetCheckpointDirection(GTANetworkAPI.NetHandle)">
<summary>
Gets the given Checkpoint's Direction and returns it as a Vector3.
</summary>
<param name="marker">The Checkpoint.</param>
</member>
<member name="M:GTANetworkMethods.Checkpoint.GetCheckpointScale(GTANetworkAPI.NetHandle)">
<summary>
Gets the given Checkpoint's Scale and returns it as a float.
</summary>
<param name="marker">The Checkpoint.</param>
</member>
<member name="M:GTANetworkMethods.Checkpoint.SetCheckpointColor(GTANetworkAPI.NetHandle,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Sets the given Checkpoint's Color with the int for alpha, int for red, int for green, int for blue.
</summary>
<param name="marker">The Checkpoint.</param>
<param name="alpha">The Alpha/Transparency.</param>
<param name="red">The Red.</param>
<param name="green">The Green Color.</param>
<param name="blue">The Blue Color.</param>
</member>
<member name="M:GTANetworkMethods.Checkpoint.SetCheckpointDirection(GTANetworkAPI.NetHandle,GTANetworkAPI.Vector3)">
<summary>
Sets the given Checkpoint's Direction with the "dir" parameter as the Direction.
</summary>
<param name="marker">The Checkpoint.</param>
<param name="dir">The Direction of the Checkpoint.</param>
</member>
<member name="M:GTANetworkMethods.Checkpoint.SetCheckpointScale(GTANetworkAPI.NetHandle,System.Single)">
<summary>
Sets the given Checkpoint's Scale with the float as the Scale.
</summary>
<param name="marker">The Checkpoint.</param>
<param name="scale">The Scale of the Checkpoint.</param>
</member>
<member name="P:GTANetworkAPI.Checkpoint.Color">
<summary>
Gets or sets the color of this <see cref="GTANetworkAPI.Checkpoint"/>.<para/>
Color must be of <see cref="GTANetworkAPI.Color"/> type.
</summary>
</member>
<member name="P:GTANetworkAPI.Checkpoint.Direction">
<summary>
Gets or sets the direction of this <see cref="GTANetworkAPI.Checkpoint"/> is pointing at.<para/>
</summary>
</member>
<member name="P:GTANetworkAPI.Checkpoint.Scale">
<summary>
Gets or sets the scale of this <see cref="GTANetworkAPI.Checkpoint"/>.<para/>
</summary>
</member>
<!-- ClientEvent Methods -->
<member name="M:GTANetworkMethods.ClientEvent.TriggerClientEvent(GTANetworkAPI.Client,System.String,System.Object[])">
<summary>
Triggers a client-side event with the given <see cref="System.String"/> for the passed in <see cref="GTANetworkAPI.Client"/>.
</summary>
<param name="player">The Client.</param>
<param name="eventName">The name of the event you want to trigger on the client-side.</param>
<param name="args">The arguments for the event you are triggering.</param>
</member>
<member name="M:GTANetworkMethods.ClientEvent.TriggerClientEventForAll(System.String,System.Object[])">
<summary>
Triggers a client-side event for all of the <see cref="GTANetworkAPI.Client"/>'s in the server.
</summary>
<param name="eventName">The name of the event you want to trigger on the client-side.</param>
<param name="args">The arguments for the event you are triggering.</param>
</member>
<member name="M:GTANetworkMethods.ClientEvent.TriggerClientEventInDimension(System.UInt32,System.String,System.Object[])">
<summary>
Triggers a client-side event for all of the <see cref="GTANetworkAPI.Client"/>'s in the given dimension.
<para/>
This event is trigger on every client in the given dimension.
</summary>
<param name="dimension">The dimension you want to trigger the event in.</param>
<param name="eventName">The name of the event you want to trigger on the client-side.</param>
<param name="args">The arguments for the event you are triggering.</param>
</member>
<member name="M:GTANetworkMethods.ClientEvent.TriggerClientEventInRange(GTANetworkAPI.Vector3,System.Single,System.String,System.Object[])">
<summary>
Triggers a client-side event for all of the <see cref="GTANetworkAPI.Client"/>'s in the given range.
<para/>
This event is trigger on every client in the given range around the given <see cref="GTANetworkAPI.Vector3"/>.
</summary>
<param name="pos">The position you want to trigger the event at.</param>
<param name="range">The range of the event you want to trigger.</param>
<param name="eventName">The name of the event you want to trigger on the client-side.</param>
<param name="args">The arguments for the event you are triggering.</param>
</member>
<member name="M:GTANetworkMethods.ClientEvent.TriggerClientEventInRange(GTANetworkAPI.Vector3,System.Single,System.String,System.Object[])">
<summary>
Triggers a client-side event for all of the <see cref="GTANetworkAPI.Client"/>'s in the given range.
<para/>
This event is trigger on every client in the given range around the given <see cref="GTANetworkAPI.Vector3"/>.
</summary>
<param name="pos">The position you want to trigger the event at.</param>
<param name="range">The range of the event you want to trigger.</param>
<param name="eventName">The name of the event you want to trigger on the client-side.</param>
<param name="args">The arguments for the event you are triggering.</param>
</member>
<member name="M:GTANetworkMethods.ClientEvent.TriggerClientEventToPlayers(GTANetworkAPI.Client[],System.String,System.Object[])">
<summary>
Triggers a client-side event for all of the given <see cref="GTANetworkAPI.Client"/>'s in the array.
</summary>
<param name="players">An array of <see cref="GTANetworkAPI.Client"/>'s you want the event to trigger for.</param>
<param name="eventName">The name of the event you want to trigger on the client-side.</param>
<param name="args">The arguments for the event you are triggering.</param>
</member>
<!-- Colshape Methods -->
<member name="M:GTANetworkMethods.ColShape.CreatCircleColShape(System.Single,System.Single,System.Single,System.UInt32)">
<summary>
Creates a <see cref="GTANetworkAPI.ColShape"/> at the given x and y with the passed in range.
</summary>
<param name="x">The X coord where it will be place on the map.</param>
<param name="y">The Y coord where it will be place on the map.</param>
<param name="range">The radius of the <see cref="GTANetworkAPI.ColShape"/>'s circle.</param>
<param name="dimension">The dimension the <see cref="GTANetworkAPI.ColShape"/> will be placed in. The default is the Global Dimension</param>
</member>
<member name="M:GTANetworkMethods.ColShape.Create2DColShape(System.Single,System.Single,System.Single,System.Single,System.UInt32)">
<summary>
Creates a <see cref="GTANetworkAPI.ColShape"/> at the given x and y with the passed in height and width.
<para/>
This creates a rectangular area where the height is not a factor.
</summary>
<param name="x">The X coord where it will be place on the map.</param>
<param name="y">The Y coord where it will be place on the map.</param>
<param name="width">The width of the <see cref="GTANetworkAPI.ColShape"/>'s rectangle.</param>
<param name="height">The height of the <see cref="GTANetworkAPI.ColShape"/>'s rectangle.</param>
<param name="dimension">The dimension the <see cref="GTANetworkAPI.ColShape"/> will be placed in. The default is the Global Dimension</param>
</member>
<member name="M:GTANetworkMethods.ColShape.Create3DColShape(GTANetworkAPI.Vector3,GTANetworkAPI.Vector3,System.UInt32)">
<summary>
Creates a <see cref="GTANetworkAPI.ColShape"/> at the given <see cref="GTANetworkAPI.Vector3"/> and ends at the other <see cref="GTANetworkAPI.Vector3"/>.
<para/>
This creates a rectangular area where the height is a factor.
</summary>
<param name="start">The <see cref="GTANetworkAPI.Vector3"/> where the start of the rectangle begins.</param>
<param name="end">The <see cref="GTANetworkAPI.Vector3"/> where the rectangle ends.</param>
<param name="dimension">The dimension the <see cref="GTANetworkAPI.ColShape"/> will be placed in. The default is the Global Dimension</param>
</member>
<member name="M:GTANetworkMethods.ColShape.CreateCylinderColShape(GTANetworkAPI.Vector3,System.Single,System.Single,System.UInt32)">
<summary>
Creates a <see cref="GTANetworkAPI.ColShape"/> at the given <see cref="GTANetworkAPI.Vector3"/>, this is where the center of the Cylinder will be placed.
<para/>
This creates a Cylinder where the height is a factor.
</summary>
<param name="position">The <see cref="GTANetworkAPI.Vector3"/> where the center of the Cylinder will be placed.</param>
<param name="range">The radius of the Cylinder's base.</param>
<param name="height">The height of the Cylinder.</param>
<param name="dimension">The dimension the <see cref="GTANetworkAPI.ColShape"/> will be placed in. The default is the Global Dimension</param>
</member>
<member name="M:GTANetworkMethods.ColShape.CreateSphereColShape(GTANetworkAPI.Vector3,System.Single,System.UInt32)">
<summary>
Creates a <see cref="GTANetworkAPI.ColShape"/> at the given <see cref="GTANetworkAPI.Vector3"/>, this is where the center of the Sphere will be placed.
</summary>
<param name="position">The <see cref="GTANetworkAPI.Vector3"/> where the center of the Sphere will be placed.</param>
<param name="range">The radius of the Sphere</param>
<param name="dimension">The dimension the <see cref="GTANetworkAPI.ColShape"/> will be placed in. The default is the Global Dimension</param>
</member>
<member name="M:GTANetworkMethods.ColShape.DeleteColShape(GTANetworkAPI.ColShape)">
<summary>
Deletes the passed in <see cref="GTANetworkAPI.ColShape"/>.
</summary>
<param name="shape">The <see cref="GTANetworkAPI.ColShape"/> that will be deleted.</param>
</member>
<member name="M:GTANetworkMethods.ColShape.IsPointWithinColshape(GTANetworkAPI.ColShape,GTANetworkAPI.Vector3)">
<summary>
Checks to see if the given <see cref="GTANetworkAPI.Vector3"/> is inside of the passed in <see cref="GTANetworkAPI.ColShape"/>.
</summary>
<param name="shape">The <see cref="GTANetworkAPI.ColShape"/> that will be referenced.</param>
<param name="point">The <see cref="GTANetworkAPI.Vector3"/> that will be check if it's inside of the ColShape.</param>
</member>
<!-- Entity -->
<member name="T:GTANetworkAPI.Entity">
<summary>
The Entity class.
</summary>
</member>
<member name="P:GTANetworkAPI.Entity.Collisionless">
<summary>
Gets or sets a value indicating whether this <see cref="GTANetworkAPI.Entity"/> should have no-collision or not.
</summary>
<returns>Boolean lol</returns>
</member>
<member name="P:GTANetworkAPI.Entity.Dimension">
<summary>
Gets or sets the Dimension this <see cref="GTANetworkAPI.Entity"/> is in.
This also determines who this <see cref="GTANetworkAPI.Entity"/> is visible to.
<para />
<para />
Example: <para />
Players in Dimension <c>0</c> can only see an <see cref="GTANetworkAPI.Entity"/> when it is in Dimension <c>0</c>.
Entities that are in Dimension <c>1</c> are not visible to these Players.
</summary>
</member>
<member name="P:GTANetworkAPI.Entity.Exists">
<summary>
Gets a value indicating whether this <see cref="GTANetworkAPI.Entity"/> exists or not.
</summary>
</member>
<member name="P:GTANetworkAPI.Entity.FreezePosition">
<summary>
Gets or sets a value indicating whether this <see cref="GTANetworkAPI.Entity"/>'s position is frozen or not.
</summary>
</member>
<member name="P:GTANetworkAPI.Entity.Handle">
<summary>
Gets the <see cref="GTANetworkAPI.NetHandle"/> of this <see cref="GTANetworkAPI.Entity"/>.
</summary>
</member>
<member name="P:GTANetworkAPI.Entity.Heading">
<summary>
Gets or sets the heading of this <see cref="GTANetworkAPI.Entity"/>.
</summary>
</member>
<member name="P:GTANetworkAPI.Entity.Invincible">
<summary>
Gets or sets a value indicating whether this <see cref="GTANetworkAPI.Entity"/> is invincible or not.
</summary>
</member>
<member name="P:GTANetworkAPI.Entity.IsNull">
<summary>
Gets a value which indicates whether this instance of <see cref="GTANetworkAPI.Entity"/> is equal to <c>null</c> or not.
</summary>
</member>
<member name="P:GTANetworkAPI.Entity.Model">
<summary>
Gets the model of this <see cref="GTANetworkAPI.Entity"/>.
</summary>
</member>
<member name="P:GTANetworkAPI.Entity.Position">
<summary>
Gets or sets the position of this <see cref="GTANetworkAPI.Entity"/>.
</summary>
</member>
<member name="P:GTANetworkAPI.Entity.Rotation">
<summary>
Gets or sets the rotation of this <see cref="GTANetworkAPI.Entity"/>.
<para/>
<para/>
Helpful info:<para/>
X = Pitch<para/>
Y = Roll<para/>
Z = Yaw
</summary>
</member>
<member name="P:GTANetworkAPI.Entity.Transparency">
<summary>
Gets or sets the transparency of this <see cref="GTANetworkAPI.Entity"/>.
<para/>
</summary>
</member>
<member name="P:GTANetworkAPI.Entity.Type">
<summary>
Gets the type of this <see cref="GTANetworkAPI.Entity"/>.
</summary>
</member>
<member name="P:GTANetworkAPI.Entity.Value">
<summary>
</summary>
</member>
<!-- Blip -->
<member name="T:GTANetworkAPI.Blip">
<summary>
The Blip class.
</summary>
</member>
<member name="P:GTANetworkAPI.Blip.Color">
<summary>
Gets or sets the color of this <see cref="GTANetworkAPI.Blip"/>.<para/>
Colors range from 0 - 85. A list of them is available on <a href="https://wiki.rage.mp/index.php?title=Blip::color">the RageMP wiki</a>.
</summary>
</member>
<member name="P:GTANetworkAPI.Blip.Name">
<summary>
Gets or sets the name of this <see cref="GTANetworkAPI.Blip" /> shown on the in-game map.
</summary>
</member>
<member name="P:GTANetworkAPI.Blip.RouteColor">
<summary>
Gets or sets the route color of this <see cref="GTANetworkAPI.Blip" />.<para/>
Colors range from 0 - 85. A list of them is available on <a href="https://wiki.rage.mp/index.php?title=Blip::color">the RageMP wiki</a>.
</summary>
</member>
<member name="P:GTANetworkAPI.Blip.RouteVisible">
<summary>
Gets or sets a value indicating whether the route to this <see cref="GTANetworkAPI.Blip" /> should be visible.
</summary>
</member>
<member name="P:GTANetworkAPI.Blip.Scale">
<summary>
Gets or sets the scale of this <see cref="GTANetworkAPI.Blip"/>.
</summary>
</member>
<member name="P:GTANetworkAPI.Blip.ShortRange">
<summary>
Gets or sets a value indicating whether this <see cref="GTANetworkAPI.Blip"/> should only be seen when the player is in close proximity.
</summary>
</member>
<member name="P:GTANetworkAPI.Blip.Sprite">
<summary>
Gets or sets the sprite texture of this <see cref="GTANetworkAPI.Blip"/>.<para/>
A list of them is available on <a href="https://wiki.rage.mp/index.php?title=Blips#Blip_model">the RageMP wiki</a>.
</summary>
</member>
<!-- Vehicles -->
<member name="P:GTANetworkAPI.Vehicle.BulletproofTyres">
<summary>
Gets or sets a value indicating whether the tyres of this <see cref="GTANetworkAPI.Vehicle"/> are bulletproof or not.
</summary>
</member>
<member name="P:GTANetworkAPI.Vehicle.Class">
<summary>
Gets the class of this <see cref="GTANetworkAPI.Vehicle"/><para />
A full list of all vehicle classes can be found on <a href="https://wiki.rage.mp/index.php?title=Vehicle_Classes">the RageMP wiki</a>.
</summary>
</member>
<member name="P:GTANetworkAPI.Vehicle.ClassName">
<summary>
Gets the name of this <see cref="GTANetworkAPI.Vehicle"/>'s class.<para />
A full list of all vehicle classes can be found on <a href="https://wiki.rage.mp/index.php?title=Vehicle_Classes">the RageMP wiki</a>.
</summary>
</member>
<member name="P:GTANetworkAPI.Vehicle.CustomPrimaryColor">
<summary>
Gets or sets this <see cref="GTANetworkAPI.Vehicle"/>'s custom primary color.<para />
</summary>
</member>
<member name="P:GTANetworkAPI.Vehicle.CustomSecondaryColor">
<summary>
Gets or sets this <see cref="GTANetworkAPI.Vehicle"/>'s custom secondary color.<para />
</summary>
</member>
<member name="P:GTANetworkAPI.Vehicle.DashboardColor">
<summary>
Gets or sets the color used on the dashboard of this <see cref="GTANetworkAPI.Vehicle"/>.<para />
</summary>
</member>
<member name="P:GTANetworkAPI.Vehicle.DisplayName">
<summary>
Gets this <see cref="GTANetworkAPI.Vehicle"/>'s display name shown in the bottom-right-hand corner of the screen.<para />
</summary>
</member>
<member name="P:GTANetworkAPI.Vehicle.EnginePowerMultiplier">
<summary>
Gets or sets the engine's power multiplier of this <see cref="GTANetworkAPI.Vehicle"/>.
</summary>
</member>
<member name="P:GTANetworkAPI.Vehicle.EngineStatus">
<summary>
Gets or sets a value indicating whether this <see cref="GTANetworkAPI.Vehicle"/>'s the engine of is turned on or off.
</summary>
</member>
<member name="P:GTANetworkAPI.Vehicle.EngineTorqueMultiplier">
<summary>
Gets or sets the engine's torque multiplier of this <see cref="GTANetworkAPI.Vehicle"/>.
</summary>
</member>
<member name="P:GTANetworkAPI.Vehicle.Health">
<summary>
Gets or sets the health of this <see cref="GTANetworkAPI.Vehicle"/>.<para/>
Values range from:<para/>
<c>0</c>: Minimum - Vehicle will be undriveable<para/>
<c>1000</c>: Maximum
</summary>
</member>
<member name="P:GTANetworkAPI.Vehicle.Livery">
<summary>
Gets or sets this <see cref="GTANetworkAPI.Vehicle"/>'s livery.<para/>
If a <see cref="GTANetworkAPI.Vehicle"/> has no livery set, it will revert to <c>-1</c>.
</summary>
</member>
<member name="P:GTANetworkAPI.Vehicle.Locked">
<summary>
Gets or sets a value indicating whether this <see cref="GTANetworkAPI.Vehicle"/> is locked or unlocked.
</summary>
</member>
<member name="P:GTANetworkAPI.Vehicle.MaxAcceleration">
<summary>
Gets this <see cref="GTANetworkAPI.Vehicle"/>'s maximum acceleration.
</summary>
</member>
<member name="P:GTANetworkAPI.Vehicle.MaxBraking">
<summary>
Gets this <see cref="GTANetworkAPI.Vehicle"/>'s maximum braking power.
</summary>
</member>
<member name="P:GTANetworkAPI.Vehicle.MaxOccupants">
<summary>
Gets this <see cref="GTANetworkAPI.Vehicle"/>'s maximum number of occupants.
</summary>
</member>
<member name="P:GTANetworkAPI.Vehicle.MaxPassengers">
<summary>
Gets this <see cref="GTANetworkAPI.Vehicle"/>'s maximum number of passengers.
</summary>
</member>
<member name="P:GTANetworkAPI.Vehicle.MaxSpeed">
<summary>
Gets this <see cref="GTANetworkAPI.Vehicle"/>'s maximum acceleration.
</summary>
</member>
<member name="P:GTANetworkAPI.Vehicle.NeonColor">
<summary>
Gets or sets this <see cref="GTANetworkAPI.Vehicle"/>'s neon light colors.
</summary>
</member>
<member name="P:GTANetworkAPI.Vehicle.Neons">
<summary>
Gets or sets a value indicating whether this <see cref="GTANetworkAPI.Vehicle"/>'s neon lights are turned on or off.
</summary>
</member>
<member name="P:GTANetworkAPI.Vehicle.NumberPlate">
<summary>
Gets or sets this <see cref="GTANetworkAPI.Vehicle"/>'s number plate.<para/>
The maximum <see cref="string"/> length that can be shown is <c>8</c> characters.
</summary>
</member>
<member name="P:GTANetworkAPI.Vehicle.NumberPlateStyle">
<summary>
Gets or sets this <see cref="GTANetworkAPI.Vehicle"/>'s number plate style.<para/>
<para/>
A list of all available styles:<para/>
<c>0</c>: Blue/White
<c>1</c>: Yellow/Black
<c>2</c>: Yellow/Blue
<c>3</c>: Blue/White 2
<c>4</c>: Blue/White 3
<c>5</c>: North Yankton
</summary>
</member>
<member name="P:GTANetworkAPI.Vehicle.Occupants">
<summary>
Gets the list of all occupants inside of this <see cref="GTANetworkAPI.Vehicle"/>.
</summary>
</member>
<member name="P:GTANetworkAPI.Vehicle.PearlescentColor">
<summary>
Gets or sets this <see cref="GTANetworkAPI.Vehicle"/>'s pearlescent color.
</summary>
</member>
<member name="P:GTANetworkAPI.Vehicle.PrimaryColor">
<summary>
Gets or sets this <see cref="GTANetworkAPI.Vehicle"/>'s primary color.
</summary>
</member>
<member name="P:GTANetworkAPI.Vehicle.PrimaryPaint">
<summary>
Gets or sets this <see cref="GTANetworkAPI.Vehicle"/>'s primary paint.
</summary>
</member>
<member name="P:GTANetworkAPI.Vehicle.SecondaryColor">
<summary>
Gets or sets this <see cref="GTANetworkAPI.Vehicle"/>'s secondary color.
</summary>
</member>
<member name="P:GTANetworkAPI.Vehicle.SecondaryPaint">
<summary>
Gets or sets this <see cref="GTANetworkAPI.Vehicle"/>'s secondary paint.
</summary>
</member>
<member name="P:GTANetworkAPI.Vehicle.Siren">
<summary>
Gets a value indicating whether this <see cref="GTANetworkAPI.Vehicle"/> has a siren or not.
</summary>
</member>
<member name="P:GTANetworkAPI.Vehicle.SpecialLight">
<summary>
Gets or sets a value indicating whether this <see cref="GTANetworkAPI.Vehicle"/>'s special light is turned on or off.
</summary>
</member>
<member name="P:GTANetworkAPI.Vehicle.Trailer">
<summary>
Gets this <see cref="GTANetworkAPI.Vehicle"/>'s trailer <see cref="GTANetworkAPI.Vehicle"/>.<para/>
If there's no trailer attached, it will return null.
</summary>
</member>
<member name="P:GTANetworkAPI.Vehicle.TraileredBy">
<summary>
Gets this the <see cref="GTANetworkAPI.Vehicle"/> which this <see cref="GTANetworkAPI.Vehicle"/> is trailered by.<para/>
If this <see cref="GTANetworkAPI.Vehicle"/> is not being trailered, it will return null.
</summary>
</member>
<member name="P:GTANetworkAPI.Vehicle.TrimColor">
<summary>
Gets or sets this <see cref="GTANetworkAPI.Vehicle"/>'s trim color.
</summary>
</member>
<member name="P:GTANetworkAPI.Vehicle.TyreSmokeColor">
<summary>
Gets or sets this <see cref="GTANetworkAPI.Vehicle"/>'s tyre smoke color.
</summary>
</member>
<member name="P:GTANetworkAPI.Vehicle.WheelColor">
<summary>