-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path0Tacho.pwn
3987 lines (3743 loc) · 209 KB
/
0Tacho.pwn
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
//Important: Make a folder in scriptfiles called "Spieler", and make .txt files for all players in the "Spieler"-folder. The .txt-files should be called exactly like the players name,
//for example: Simon.txt or WhatEverThePlayerNameIs.txt
//dini include: https://dracoblue.net/downloads/dini/
//foreach include: https://github.com/karimcambridge/samp-foreach/blob/master/foreach.inc
#include a_samp
#include dini
#include foreach
#pragma tabsize 0
#pragma dynamic 65536
#define AUTOD 4
#define PLANED 6
#define Hellrot 0xFF0000FF
#define Hellblau 0x0091FFFF
#define Weis 0xFFFFFFFF
#define MAX_ZONE_NAME 28
new VehicleNames[][] =
{
"Landstalker", "Bravura", "Buffalo", "Linerunner", "Perrenial", "Sentinel",
"Dumper", "Firetruck", "Trashmaster", "Stretch", "Manana", "Infernus",
"Voodoo", "Pony", "Mule", "Cheetah", "Ambulance", "Leviathan", "Moonbeam",
"Esperanto", "Taxi", "Washington", "Bobcat", "Whoopee", "BF Injection",
"Hunter", "Premier", "Enforcer", "Securicar", "Banshee", "Predator", "Bus",
"Rhino", "Barracks", "Hotknife", "Trailer", "Previon", "Coach", "Cabbie",
"Stallion", "Rumpo", "RC Bandit", "Romero", "Packer", "Monster", "Admiral",
"Squalo", "Seasparrow", "Pizzaboy", "Tram", "Trailer", "Turismo", "Speeder",
"Reefer", "Tropic", "Flatbed", "Yankee", "Caddy", "Solair", "Berkley's RC Van",
"Skimmer", "PCJ-600", "Faggio", "Freeway", "RC Baron", "RC Raider", "Glendale",
"Oceanic","Sanchez", "Sparrow", "Patriot", "Quad", "Coastguard", "Dinghy",
"Hermes", "Sabre", "Rustler", "ZR-350", "Walton", "Regina", "Comet", "BMX",
"Burrito", "Camper", "Marquis", "Baggage", "Dozer", "Maverick", "News Chopper",
"Rancher", "FBI Rancher", "Virgo", "Greenwood", "Jetmax", "Hotring", "Sandking",
"Blista Compact", "Police Maverick", "Boxvillde", "Benson", "Mesa", "RC Goblin",
"Hotring Racer A", "Hotring Racer B", "Bloodring Banger", "Rancher", "Super GT",
"Elegant", "Journey", "Bike", "Mountain Bike", "Beagle", "Cropduster", "Stunt",
"Tanker", "Roadtrain", "Nebula", "Majestic", "Buccaneer", "Shamal", "Hydra",
"FCR-900", "NRG-500", "HPV1000", "Cement Truck", "Tow Truck", "Fortune",
"Cadrona", "FBI Truck", "Willard", "Forklift", "Tractor", "Combine", "Feltzer",
"Remington", "Slamvan", "Blade", "Freight", "Streak", "Vortex", "Vincent",
"Bullet", "Clover", "Sadler", "Firetruck", "Hustler", "Intruder", "Primo",
"Cargobob", "Tampa", "Sunrise", "Merit", "Utility", "Nevada", "Yosemite",
"Windsor", "Monster", "Monster", "Uranus", "Jester", "Sultan", "Stratium",
"Elegy", "Raindance", "RC Tiger", "Flash", "Tahoma", "Savanna", "Bandito",
"Freight Flat", "Streak Carriage", "Kart", "Mower", "Dune", "Sweeper",
"Broadway", "Tornado", "AT-400", "DFT-30", "Huntley", "Stafford", "BF-400",
"News Van", "Tug", "Trailer", "Emperor", "Wayfarer", "Euros", "Hotdog", "Club",
"Freight Box", "Trailer", "Andromada", "Dodo", "RC Cam", "Launch", "Police Car",
"Police Car", "Police Car", "Police Ranger", "Picador", "S.W.A.T", "Alpha",
"Phoenix", "Glendale", "Sadler", "Luggage", "Luggage", "Stairs", "Boxville",
"Tiller", "Utility Trailer"
};
new BlinkerL[MAX_VEHICLES];
new BlinkerR[MAX_VEHICLES];
new BlinkerVL;
new BlinkerVR;
new BlinkerHL;
new BlinkerHR;
new LandingGearCRTL[MAX_PLAYERS];
new PlayerText:Tacho[MAX_PLAYERS][56];
new PlayerText:KMH[MAX_PLAYERS];
new PlayerText:AutoHP[MAX_PLAYERS][5];
new PlayerText:Sprit[MAX_PLAYERS];
new PlayerText:Batterie[MAX_PLAYERS][6];
new PlayerText:Motorleuchte[MAX_PLAYERS][9];
new PlayerText:Licht[MAX_PLAYERS][4];
new PlayerText:Locked[MAX_PLAYERS][4];
new PlayerText:Kilometerstand[MAX_PLAYERS];
new PlayerText:Tachonadel[MAX_PLAYERS];
new PlayerText:Spritnadel[MAX_PLAYERS];
new PlayerText:Tacho_Mitte[MAX_PLAYERS];
new PlayerText:Sprit_Mitte[MAX_PLAYERS];
new PlayerText:Blitz[MAX_PLAYERS];
new PlayerText:Airspeed[MAX_PLAYERS];
new PlayerText:Airspeeed[MAX_PLAYERS];
new PlayerText:Airspeedindicator[MAX_PLAYERS];
new PlayerText:Airspeeddisplay[MAX_PLAYERS];
new PlayerText:Alittudegauge[MAX_PLAYERS];
new PlayerText:Altimeter[MAX_PLAYERS];
new PlayerText:Altdisplay[MAX_PLAYERS];
new PlayerText:Tausendnadel[MAX_PLAYERS];
new PlayerText:Hundertnadel[MAX_PLAYERS];
new PlayerText:SteigtSinkt[MAX_PLAYERS];
new PlayerText:SteigtHintergrund[MAX_PLAYERS];
new PlayerText:Steigtnadel[MAX_PLAYERS];
new PlayerText:Variometer[MAX_PLAYERS];
new PlayerText:Variodisplay[MAX_PLAYERS];
new PlayerText:Altideckel[MAX_PLAYERS];
new PlayerText:Airspeeddeckel[MAX_PLAYERS];
new PlayerText:ArtHorizon[MAX_PLAYERS];
new PlayerText:CRTLboard_plane[MAX_PLAYERS];
new PlayerText:CRTLboard1_plane[MAX_PLAYERS];
new PlayerText:CRTLboard2_plane[MAX_PLAYERS];
new PlayerText:Kompass_Gauge[MAX_PLAYERS];
new PlayerText:Kompass_Hintergrund[MAX_PLAYERS];
new PlayerText:Kompass_N[MAX_PLAYERS];
new PlayerText:Kompass_E[MAX_PLAYERS];
new PlayerText:Kompass_S[MAX_PLAYERS];
new PlayerText:Kompass_W[MAX_PLAYERS];
new PlayerText:Kompass_Icon[MAX_PLAYERS];
new PlayerText:Flug_Info[MAX_PLAYERS];
new PlayerText:Flug_InfoHintergrund[MAX_PLAYERS];
new PlayerText:Abgrenzung[MAX_PLAYERS][4];
new PlayerText:RFuel[MAX_PLAYERS];
new PlayerText:LFuel[MAX_PLAYERS];
new PlayerText:Fuel1[MAX_PLAYERS];
new PlayerText:Fuel2[MAX_PLAYERS];
new PlayerText:Condition[MAX_PLAYERS];
new PlayerText:Zustand[MAX_PLAYERS];
new PlayerText:Fname[MAX_PLAYERS];
new PlayerText:Distance[MAX_PLAYERS];
new PlayerText:KMStandFlieger[MAX_PLAYERS];
new PlayerText:Fuelpumpen[MAX_PLAYERS];
new PlayerText:FPON[MAX_PLAYERS];
new PlayerText:FPOFF[MAX_PLAYERS];
new PlayerText:PEngine[MAX_PLAYERS];
new PlayerText:PEON[MAX_PLAYERS];
new PlayerText:PEOFF[MAX_PLAYERS];
new PlayerText:LDGear[MAX_PLAYERS];
new PlayerText:LDGON[MAX_PLAYERS];
new PlayerText:LDGOFF[MAX_PLAYERS];
new PlayerText:LowFuel[MAX_PLAYERS];
new PlayerText:LowFuelW[MAX_PLAYERS];
new PlayerText:BlinkerLinks[MAX_PLAYERS];
new PlayerText:BlinkerRechts[MAX_PLAYERS];
new NVehicleLocked[MAX_VEHICLES];
new speedotimer;
new Planespeedotimer;
new Tachonadeltimer;
new BlinkerTimer;
new Float:Fuel[MAX_VEHICLES] = {100.0,...};
new Float:Pfuel[MAX_VEHICLES] = {100.0,...};
new Float:Milage[MAX_VEHICLES] = {0.0,...};
new Float:Pdistance[MAX_VEHICLES] = {0.0,...};
new Spieler[64];
new Sname [MAX_PLAYER_NAME];
new Blitztimer;
new NBlitzertimer;
public OnFilterScriptInit()
{
return 1;
}
public OnFilterScriptExit()
{
KillTimer(speedotimer);
KillTimer(Tachonadeltimer);
KillTimer(Planespeedotimer);
return 1;
}
public OnPlayerConnect(playerid)
{
speedotimer = SetTimerEx("Speedometer",555,true, "%i", playerid);
Tachonadeltimer = SetTimerEx("Speedo",250,true, "%i", playerid);
Planespeedotimer = SetTimerEx("PlaneSpeedo",250, true, "%i", playerid);
Tacho[playerid][19] = CreatePlayerTextDraw(playerid, 458.666564, 335.444274, "LD_POOL:ball");
PlayerTextDrawTextSize(playerid, Tacho[playerid][19], 90.540115, 108.010002);
PlayerTextDrawAlignment(playerid, Tacho[playerid][19], 1);
PlayerTextDrawColor(playerid, Tacho[playerid][19], 255);
PlayerTextDrawBackgroundColor(playerid, Tacho[playerid][19], 255);
PlayerTextDrawFont(playerid, Tacho[playerid][19], 4);
Tacho[playerid][20] = CreatePlayerTextDraw(playerid, 463.999969, 341.251800, "LD_POOL:ball");
PlayerTextDrawTextSize(playerid, Tacho[playerid][20], 80.000000, 96.000000);
PlayerTextDrawAlignment(playerid, Tacho[playerid][20], 1);
PlayerTextDrawColor(playerid, Tacho[playerid][20], -1);
PlayerTextDrawBackgroundColor(playerid, Tacho[playerid][20], 255);
PlayerTextDrawFont(playerid, Tacho[playerid][20], 4);
Tacho[playerid][21] = CreatePlayerTextDraw(playerid, 525.066650, 312.214599, "LD_POOL:ball");
PlayerTextDrawTextSize(playerid, Tacho[playerid][21], 110.000000, 133.000000);
PlayerTextDrawAlignment(playerid, Tacho[playerid][21], 1);
PlayerTextDrawColor(playerid, Tacho[playerid][21], 255);
PlayerTextDrawBackgroundColor(playerid, Tacho[playerid][21], 255);
PlayerTextDrawFont(playerid, Tacho[playerid][21], 4);
Tacho[playerid][22] = CreatePlayerTextDraw(playerid, 531.333374, 320.096069, "LD_POOL:ball");
PlayerTextDrawTextSize(playerid, Tacho[playerid][22], 98.000000, 117.000000);
PlayerTextDrawAlignment(playerid, Tacho[playerid][22], 1);
PlayerTextDrawColor(playerid, Tacho[playerid][22], -1);
PlayerTextDrawBackgroundColor(playerid, Tacho[playerid][22], 255);
PlayerTextDrawFont(playerid, Tacho[playerid][22], 4);
Tacho[playerid][23] = CreatePlayerTextDraw(playerid, 538.000000, 400.570495, "");
PlayerTextDrawTextSize(playerid, Tacho[playerid][23], 23.000000, 23.000000);
PlayerTextDrawAlignment(playerid, Tacho[playerid][23], 1);
PlayerTextDrawColor(playerid, Tacho[playerid][23], 0x808080FF);
PlayerTextDrawFont(playerid, Tacho[playerid][23], 5);
PlayerTextDrawSetPreviewModel(playerid, Tacho[playerid][23], 3812);
PlayerTextDrawSetPreviewRot(playerid, Tacho[playerid][23], -90.000000, 0.000000, -41.000000, 2.000000);
PlayerTextDrawBackgroundColor(playerid,Tacho[playerid][23], 0);
Tacho[playerid][24] = CreatePlayerTextDraw(playerid, 529.000305, 382.318450, "");
PlayerTextDrawTextSize(playerid, Tacho[playerid][24], 23.000000, 23.000000);
PlayerTextDrawAlignment(playerid, Tacho[playerid][24], 1);
PlayerTextDrawColor(playerid, Tacho[playerid][24], 0x808080FF);
PlayerTextDrawFont(playerid, Tacho[playerid][24], 5);
PlayerTextDrawSetPreviewModel(playerid, Tacho[playerid][24], 3812);
PlayerTextDrawSetPreviewRot(playerid, Tacho[playerid][24], -90.000000, 0.000000, 110.000000, 2.000000);
PlayerTextDrawBackgroundColor(playerid,Tacho[playerid][24], 0);
Tacho[playerid][25] = CreatePlayerTextDraw(playerid, 527.000305, 361.162719, "");
PlayerTextDrawTextSize(playerid, Tacho[playerid][25], 23.000000, 23.000000);
PlayerTextDrawAlignment(playerid, Tacho[playerid][25], 1);
PlayerTextDrawColor(playerid, Tacho[playerid][25], 0x808080FF);
PlayerTextDrawFont(playerid, Tacho[playerid][25], 5);
PlayerTextDrawSetPreviewModel(playerid, Tacho[playerid][25], 3812);
PlayerTextDrawSetPreviewRot(playerid, Tacho[playerid][25], -90.000000, 0.000000, -99.000000, 2.000000);
PlayerTextDrawBackgroundColor(playerid,Tacho[playerid][25], 0);
Tacho[playerid][26] = CreatePlayerTextDraw(playerid, 532.000183, 340.421966, "");
PlayerTextDrawTextSize(playerid, Tacho[playerid][26], 23.000000, 23.000000);
PlayerTextDrawAlignment(playerid, Tacho[playerid][26], 1);
PlayerTextDrawColor(playerid, Tacho[playerid][26], 0x808080FF);
PlayerTextDrawFont(playerid, Tacho[playerid][26], 5);
PlayerTextDrawSetPreviewModel(playerid, Tacho[playerid][26], 3812);
PlayerTextDrawSetPreviewRot(playerid, Tacho[playerid][26], -90.000000, 0.000000, 57.000000, 2.000000);
PlayerTextDrawBackgroundColor(playerid,Tacho[playerid][26], 0);
Tacho[playerid][27] = CreatePlayerTextDraw(playerid, 544.000122, 324.658874, "");
PlayerTextDrawTextSize(playerid, Tacho[playerid][27], 23.000000, 23.000000);
PlayerTextDrawAlignment(playerid, Tacho[playerid][27], 1);
PlayerTextDrawColor(playerid, Tacho[playerid][27], 0x808080FF);
PlayerTextDrawFont(playerid, Tacho[playerid][27], 5);
PlayerTextDrawSetPreviewModel(playerid, Tacho[playerid][27], 3812);
PlayerTextDrawSetPreviewRot(playerid, Tacho[playerid][27], -90.000000, 0.000000, 30.000000, 2.000000);
PlayerTextDrawBackgroundColor(playerid,Tacho[playerid][27], 0);
Tacho[playerid][28] = CreatePlayerTextDraw(playerid, 560.000122, 315.532928, "");
PlayerTextDrawTextSize(playerid, Tacho[playerid][28], 23.000000, 23.000000);
PlayerTextDrawAlignment(playerid, Tacho[playerid][28], 1);
PlayerTextDrawColor(playerid, Tacho[playerid][28], 0x808080FF);
PlayerTextDrawFont(playerid, Tacho[playerid][28], 5);
PlayerTextDrawSetPreviewModel(playerid, Tacho[playerid][28], 3812);
PlayerTextDrawSetPreviewRot(playerid, Tacho[playerid][28], -90.000000, 0.000000, 10.000000, 2.000000);
PlayerTextDrawBackgroundColor(playerid,Tacho[playerid][28], 0);
Tacho[playerid][29] = CreatePlayerTextDraw(playerid, 577.666748, 315.947753, "");
PlayerTextDrawTextSize(playerid, Tacho[playerid][29], 23.000000, 23.000000);
PlayerTextDrawAlignment(playerid, Tacho[playerid][29], 1);
PlayerTextDrawColor(playerid, Tacho[playerid][29], 0x808080FF);
PlayerTextDrawFont(playerid, Tacho[playerid][29], 5);
PlayerTextDrawSetPreviewModel(playerid, Tacho[playerid][29], 3812);
PlayerTextDrawSetPreviewRot(playerid, Tacho[playerid][29], -90.000000, 0.000000, -11.000000, 2.000000);
PlayerTextDrawBackgroundColor(playerid,Tacho[playerid][29], 0);
Tacho[playerid][30] = CreatePlayerTextDraw(playerid, 593.999816, 324.658905, "");
PlayerTextDrawTextSize(playerid, Tacho[playerid][30], 23.000000, 23.000000);
PlayerTextDrawAlignment(playerid, Tacho[playerid][30], 1);
PlayerTextDrawColor(playerid, Tacho[playerid][30], 0x808080FF);
PlayerTextDrawFont(playerid, Tacho[playerid][30], 5);
PlayerTextDrawSetPreviewModel(playerid, Tacho[playerid][30], 3812);
PlayerTextDrawSetPreviewRot(playerid, Tacho[playerid][30], -90.000000, 0.000000, -32.000000, 2.000000);
PlayerTextDrawBackgroundColor(playerid,Tacho[playerid][30], 0);
Tacho[playerid][31] = CreatePlayerTextDraw(playerid, 605.666503, 340.421966, "");
PlayerTextDrawTextSize(playerid, Tacho[playerid][31], 23.000000, 23.000000);
PlayerTextDrawAlignment(playerid, Tacho[playerid][31], 1);
PlayerTextDrawColor(playerid, Tacho[playerid][31], 0x808080FF);
PlayerTextDrawFont(playerid, Tacho[playerid][31], 5);
PlayerTextDrawSetPreviewModel(playerid, Tacho[playerid][31], 3812);
PlayerTextDrawSetPreviewRot(playerid, Tacho[playerid][31], -90.000000, 0.000000, -55.000000, 2.000000);
PlayerTextDrawBackgroundColor(playerid,Tacho[playerid][31], 0);
Tacho[playerid][32] = CreatePlayerTextDraw(playerid, 610.666137, 361.577606, "");
PlayerTextDrawTextSize(playerid, Tacho[playerid][32], 23.000000, 23.000000);
PlayerTextDrawAlignment(playerid, Tacho[playerid][32], 1);
PlayerTextDrawColor(playerid, Tacho[playerid][32], 0x808080FF);
PlayerTextDrawFont(playerid, Tacho[playerid][32], 5);
PlayerTextDrawSetPreviewModel(playerid, Tacho[playerid][32], 3812);
PlayerTextDrawSetPreviewRot(playerid, Tacho[playerid][32], -90.000000, 0.000000, -85.000000, 2.000000);
PlayerTextDrawBackgroundColor(playerid,Tacho[playerid][32], 0);
Tacho[playerid][33] = CreatePlayerTextDraw(playerid, 609.332824, 382.733245, "");
PlayerTextDrawTextSize(playerid, Tacho[playerid][33], 23.000000, 23.000000);
PlayerTextDrawAlignment(playerid, Tacho[playerid][33], 1);
PlayerTextDrawColor(playerid, Tacho[playerid][33], 0x808080FF);
PlayerTextDrawFont(playerid, Tacho[playerid][33], 5);
PlayerTextDrawSetPreviewModel(playerid, Tacho[playerid][33], 3812);
PlayerTextDrawSetPreviewRot(playerid, Tacho[playerid][33], -90.000000, 0.000000, -109.000000, 2.000000);
PlayerTextDrawBackgroundColor(playerid,Tacho[playerid][33], 0);
Tacho[playerid][34] = CreatePlayerTextDraw(playerid, 599.999633, 400.985168, "");
PlayerTextDrawTextSize(playerid, Tacho[playerid][34], 23.000000, 23.000000);
PlayerTextDrawAlignment(playerid, Tacho[playerid][34], 1);
PlayerTextDrawColor(playerid, Tacho[playerid][34], 0x808080FF);
PlayerTextDrawFont(playerid, Tacho[playerid][34], 5);
PlayerTextDrawSetPreviewModel(playerid, Tacho[playerid][34], 3812);
PlayerTextDrawSetPreviewRot(playerid, Tacho[playerid][34], -90.000000, 0.000000, -133.000000, 2.000000);
PlayerTextDrawBackgroundColor(playerid,Tacho[playerid][34], 0);
Tacho[playerid][35] = CreatePlayerTextDraw(playerid, 530.999633, 393.103607, "");
PlayerTextDrawTextSize(playerid, Tacho[playerid][35], 23.000000, 23.000000);
PlayerTextDrawAlignment(playerid, Tacho[playerid][35], 1);
PlayerTextDrawColor(playerid, Tacho[playerid][35], 0x808080FF);
PlayerTextDrawSetShadow(playerid, Tacho[playerid][35], 0);
PlayerTextDrawFont(playerid, Tacho[playerid][35], 5);
PlayerTextDrawSetProportional(playerid, Tacho[playerid][35], 0);
PlayerTextDrawSetPreviewModel(playerid, Tacho[playerid][35], 3812);
PlayerTextDrawSetPreviewRot(playerid, Tacho[playerid][35], -90.000000, 0.000000, 126.000000, 3.000000);
PlayerTextDrawBackgroundColor(playerid,Tacho[playerid][35], 0);
Tacho[playerid][36] = CreatePlayerTextDraw(playerid, 525.666442, 371.947937, "");
PlayerTextDrawTextSize(playerid, Tacho[playerid][36], 23.000000, 23.000000);
PlayerTextDrawAlignment(playerid, Tacho[playerid][36], 1);
PlayerTextDrawColor(playerid, Tacho[playerid][36], 0x808080FF);
PlayerTextDrawSetShadow(playerid, Tacho[playerid][36], 0);
PlayerTextDrawFont(playerid, Tacho[playerid][36], 5);
PlayerTextDrawSetProportional(playerid, Tacho[playerid][36], 0);
PlayerTextDrawSetPreviewModel(playerid, Tacho[playerid][36], 3812);
PlayerTextDrawSetPreviewRot(playerid, Tacho[playerid][36], -90.000000, 0.000000, 98.000000, 3.000000);
PlayerTextDrawBackgroundColor(playerid,Tacho[playerid][36], 0);
Tacho[playerid][37] = CreatePlayerTextDraw(playerid, 527.332946, 349.962677, "");
PlayerTextDrawTextSize(playerid, Tacho[playerid][37], 23.000000, 23.000000);
PlayerTextDrawAlignment(playerid, Tacho[playerid][37], 1);
PlayerTextDrawColor(playerid, Tacho[playerid][37], 0x808080FF);
PlayerTextDrawSetShadow(playerid, Tacho[playerid][37], 0);
PlayerTextDrawFont(playerid, Tacho[playerid][37], 5);
PlayerTextDrawSetProportional(playerid, Tacho[playerid][37], 0);
PlayerTextDrawSetPreviewModel(playerid, Tacho[playerid][37], 3812);
PlayerTextDrawSetPreviewRot(playerid, Tacho[playerid][37], -90.000000, 0.000000, 79.000000, 3.000000);
PlayerTextDrawBackgroundColor(playerid,Tacho[playerid][37], 0);
Tacho[playerid][38] = CreatePlayerTextDraw(playerid, 536.332885, 330.881011, "");
PlayerTextDrawTextSize(playerid, Tacho[playerid][38], 23.000000, 23.000000);
PlayerTextDrawAlignment(playerid, Tacho[playerid][38], 1);
PlayerTextDrawColor(playerid, Tacho[playerid][38], 0x808080FF);
PlayerTextDrawSetShadow(playerid, Tacho[playerid][38], 0);
PlayerTextDrawFont(playerid, Tacho[playerid][38], 5);
PlayerTextDrawSetProportional(playerid, Tacho[playerid][38], 0);
PlayerTextDrawSetPreviewModel(playerid, Tacho[playerid][38], 3812);
PlayerTextDrawSetPreviewRot(playerid, Tacho[playerid][38], -90.000000, 0.000000, 44.000000, 3.000000);
PlayerTextDrawBackgroundColor(playerid,Tacho[playerid][38], 0);
Tacho[playerid][39] = CreatePlayerTextDraw(playerid, 550.999633, 318.021575, "");
PlayerTextDrawTextSize(playerid, Tacho[playerid][39], 23.000000, 23.000000);
PlayerTextDrawAlignment(playerid, Tacho[playerid][39], 1);
PlayerTextDrawColor(playerid, Tacho[playerid][39], 0x808080FF);
PlayerTextDrawSetShadow(playerid, Tacho[playerid][39], 0);
PlayerTextDrawFont(playerid, Tacho[playerid][39], 5);
PlayerTextDrawSetProportional(playerid, Tacho[playerid][39], 0);
PlayerTextDrawSetPreviewModel(playerid, Tacho[playerid][39], 3812);
PlayerTextDrawSetPreviewRot(playerid, Tacho[playerid][39], -90.000000, 0.000000, 20.000000, 3.000000);
PlayerTextDrawBackgroundColor(playerid,Tacho[playerid][39], 0);
Tacho[playerid][40] = CreatePlayerTextDraw(playerid, 568.999572, 313.458587, "");
PlayerTextDrawTextSize(playerid, Tacho[playerid][40], 23.000000, 23.000000);
PlayerTextDrawAlignment(playerid, Tacho[playerid][40], 1);
PlayerTextDrawColor(playerid, Tacho[playerid][40], 0x808080FF);
PlayerTextDrawSetShadow(playerid, Tacho[playerid][40], 0);
PlayerTextDrawFont(playerid, Tacho[playerid][40], 5);
PlayerTextDrawSetProportional(playerid, Tacho[playerid][40], 0);
PlayerTextDrawSetPreviewModel(playerid, Tacho[playerid][40], 3812);
PlayerTextDrawSetPreviewRot(playerid, Tacho[playerid][40], -90.000000, 0.000000, 0.000000, 3.000000);
PlayerTextDrawBackgroundColor(playerid,Tacho[playerid][40], 0);
Tacho[playerid][41] = CreatePlayerTextDraw(playerid, 586.666198, 318.021545, "");
PlayerTextDrawTextSize(playerid, Tacho[playerid][41], 23.000000, 23.000000);
PlayerTextDrawAlignment(playerid, Tacho[playerid][41], 1);
PlayerTextDrawColor(playerid, Tacho[playerid][41], 0x808080FF);
PlayerTextDrawSetShadow(playerid, Tacho[playerid][41], 0);
PlayerTextDrawFont(playerid, Tacho[playerid][41], 5);
PlayerTextDrawSetProportional(playerid, Tacho[playerid][41], 0);
PlayerTextDrawSetPreviewModel(playerid, Tacho[playerid][41], 3812);
PlayerTextDrawSetPreviewRot(playerid, Tacho[playerid][41], -90.000000, 0.000000, -21.000000, 3.000000);
PlayerTextDrawBackgroundColor(playerid,Tacho[playerid][41], 0);
Tacho[playerid][42] = CreatePlayerTextDraw(playerid, 601.332763, 331.295745, "");
PlayerTextDrawTextSize(playerid, Tacho[playerid][42], 23.000000, 23.000000);
PlayerTextDrawAlignment(playerid, Tacho[playerid][42], 1);
PlayerTextDrawColor(playerid, Tacho[playerid][42], 0x808080FF);
PlayerTextDrawSetShadow(playerid, Tacho[playerid][42], 0);
PlayerTextDrawFont(playerid, Tacho[playerid][42], 5);
PlayerTextDrawSetProportional(playerid, Tacho[playerid][42], 0);
PlayerTextDrawSetPreviewModel(playerid, Tacho[playerid][42], 3812);
PlayerTextDrawSetPreviewRot(playerid, Tacho[playerid][42], -90.000000, 0.000000, -43.000000, 3.000000);
PlayerTextDrawBackgroundColor(playerid,Tacho[playerid][42], 0);
Tacho[playerid][43] = CreatePlayerTextDraw(playerid, 610.332458, 349.962432, "");
PlayerTextDrawTextSize(playerid, Tacho[playerid][43], 23.000000, 23.000000);
PlayerTextDrawAlignment(playerid, Tacho[playerid][43], 1);
PlayerTextDrawColor(playerid, Tacho[playerid][43], 0x808080FF);
PlayerTextDrawSetShadow(playerid, Tacho[playerid][43], 0);
PlayerTextDrawFont(playerid, Tacho[playerid][43], 5);
PlayerTextDrawSetProportional(playerid, Tacho[playerid][43], 0);
PlayerTextDrawSetPreviewModel(playerid, Tacho[playerid][43], 3812);
PlayerTextDrawSetPreviewRot(playerid, Tacho[playerid][43], -90.000000, 0.000000, -65.000000, 3.000000);
PlayerTextDrawBackgroundColor(playerid,Tacho[playerid][43], 0);
Tacho[playerid][44] = CreatePlayerTextDraw(playerid, 612.332214, 371.947662, "");
PlayerTextDrawTextSize(playerid, Tacho[playerid][44], 23.000000, 23.000000);
PlayerTextDrawAlignment(playerid, Tacho[playerid][44], 1);
PlayerTextDrawColor(playerid, Tacho[playerid][44], 0x808080FF);
PlayerTextDrawSetShadow(playerid, Tacho[playerid][44], 0);
PlayerTextDrawFont(playerid, Tacho[playerid][44], 5);
PlayerTextDrawSetProportional(playerid, Tacho[playerid][44], 0);
PlayerTextDrawSetPreviewModel(playerid, Tacho[playerid][44], 3812);
PlayerTextDrawSetPreviewRot(playerid, Tacho[playerid][44], -90.000000, 0.000000, -97.000000, 3.000000);
PlayerTextDrawBackgroundColor(playerid,Tacho[playerid][44], 0);
Tacho[playerid][45] = CreatePlayerTextDraw(playerid, 606.665588, 393.103363, "");
PlayerTextDrawTextSize(playerid, Tacho[playerid][45], 23.000000, 23.000000);
PlayerTextDrawAlignment(playerid, Tacho[playerid][45], 1);
PlayerTextDrawColor(playerid, Tacho[playerid][45], 0x808080FF);
PlayerTextDrawSetShadow(playerid, Tacho[playerid][45], 0);
PlayerTextDrawFont(playerid, Tacho[playerid][45], 5);
PlayerTextDrawSetProportional(playerid, Tacho[playerid][45], 0);
PlayerTextDrawSetPreviewModel(playerid, Tacho[playerid][45], 3812);
PlayerTextDrawSetPreviewRot(playerid, Tacho[playerid][45], -90.000000, 0.000000, -125.000000, 3.000000);
PlayerTextDrawBackgroundColor(playerid,Tacho[playerid][45], 0);
Tacho[playerid][46] = CreatePlayerTextDraw(playerid, 468.331909, 348.303253, "");
PlayerTextDrawTextSize(playerid, Tacho[playerid][46], 23.000000, 23.000000);
PlayerTextDrawAlignment(playerid, Tacho[playerid][46], 1);
PlayerTextDrawColor(playerid, Tacho[playerid][46], 0x808080FF);
PlayerTextDrawSetShadow(playerid, Tacho[playerid][46], 0);
PlayerTextDrawFont(playerid, Tacho[playerid][46], 5);
PlayerTextDrawSetProportional(playerid, Tacho[playerid][46], 0);
PlayerTextDrawSetPreviewModel(playerid, Tacho[playerid][46], 3812);
PlayerTextDrawSetPreviewRot(playerid, Tacho[playerid][46], -90.000000, 0.000000, 45.000000, 2.500000);
PlayerTextDrawBackgroundColor(playerid,Tacho[playerid][46], 0);
Tacho[playerid][47] = CreatePlayerTextDraw(playerid, 471.433441, 398.966705, "LD_SPAC:white");
PlayerTextDrawTextSize(playerid, Tacho[playerid][47], 56.000000, 6.000000);
PlayerTextDrawAlignment(playerid, Tacho[playerid][47], 1);
PlayerTextDrawColor(playerid, Tacho[playerid][47], 255);
PlayerTextDrawSetShadow(playerid, Tacho[playerid][47], 0);
PlayerTextDrawFont(playerid, Tacho[playerid][47], 4);
PlayerTextDrawSetProportional(playerid, Tacho[playerid][47], 0);
Tacho[playerid][48] = CreatePlayerTextDraw(playerid, 499.600097, 398.237097, "Vehicle_Owner");
PlayerTextDrawLetterSize(playerid, Tacho[playerid][48], 0.124000, 0.674961);
PlayerTextDrawTextSize(playerid, Tacho[playerid][48], 23.000000, -20.000000);
PlayerTextDrawAlignment(playerid, Tacho[playerid][48], 2);
PlayerTextDrawColor(playerid, Tacho[playerid][48], 0x808080FF);
PlayerTextDrawSetShadow(playerid, Tacho[playerid][48], 0);
PlayerTextDrawFont(playerid, Tacho[playerid][48], 1);
PlayerTextDrawSetProportional(playerid, Tacho[playerid][48], 1);
Tacho[playerid][49] = CreatePlayerTextDraw(playerid, 514.434020, 353.037048, "LD_SPAC:white");
PlayerTextDrawTextSize(playerid, Tacho[playerid][49], 8.459987, 32.020164);
PlayerTextDrawAlignment(playerid, Tacho[playerid][49], 1);
PlayerTextDrawColor(playerid, Tacho[playerid][49], 255);
PlayerTextDrawSetShadow(playerid, Tacho[playerid][49], 0);
PlayerTextDrawBackgroundColor(playerid, Tacho[playerid][49], 255);
PlayerTextDrawFont(playerid, Tacho[playerid][49], 4);
PlayerTextDrawSetProportional(playerid, Tacho[playerid][49], 0);
Tacho[playerid][50] = CreatePlayerTextDraw(playerid, 585.333007, 361.577758, "LD_BEAT:chit");
PlayerTextDrawTextSize(playerid, Tacho[playerid][50], 22.789926, 25.919929);
PlayerTextDrawAlignment(playerid, Tacho[playerid][50], 1);
PlayerTextDrawColor(playerid, Tacho[playerid][50], 255);
PlayerTextDrawSetShadow(playerid, Tacho[playerid][50], 0);
PlayerTextDrawBackgroundColor(playerid, Tacho[playerid][50], 255);
PlayerTextDrawFont(playerid, Tacho[playerid][50], 4);
PlayerTextDrawSetProportional(playerid, Tacho[playerid][50], 0);
Tacho[playerid][51] = CreatePlayerTextDraw(playerid, 583.999755, 379.414916, "LD_BEAT:chit");
PlayerTextDrawTextSize(playerid, Tacho[playerid][51], 22.789926, 25.919929);
PlayerTextDrawAlignment(playerid, Tacho[playerid][51], 1);
PlayerTextDrawColor(playerid, Tacho[playerid][51], 255);
PlayerTextDrawSetShadow(playerid, Tacho[playerid][51], 0);
PlayerTextDrawBackgroundColor(playerid, Tacho[playerid][51], 255);
PlayerTextDrawFont(playerid, Tacho[playerid][51], 4);
PlayerTextDrawSetProportional(playerid, Tacho[playerid][51], 0);
Tacho[playerid][52] = CreatePlayerTextDraw(playerid, 554.000122, 379.300140, "LD_BEAT:chit");
PlayerTextDrawTextSize(playerid, Tacho[playerid][52], 22.789926, 25.919929);
PlayerTextDrawAlignment(playerid, Tacho[playerid][52], 1);
PlayerTextDrawColor(playerid, Tacho[playerid][52], 255);
PlayerTextDrawSetShadow(playerid, Tacho[playerid][52], 0);
PlayerTextDrawBackgroundColor(playerid, Tacho[playerid][52], 255);
PlayerTextDrawFont(playerid, Tacho[playerid][52], 4);
PlayerTextDrawSetProportional(playerid, Tacho[playerid][52], 0);
Tacho[playerid][53] = CreatePlayerTextDraw(playerid, 550.999816, 361.992675, "LD_BEAT:chit");
PlayerTextDrawTextSize(playerid, Tacho[playerid][53], 22.789926, 25.919929);
PlayerTextDrawAlignment(playerid, Tacho[playerid][53], 1);
PlayerTextDrawColor(playerid, Tacho[playerid][53], 255);
PlayerTextDrawSetShadow(playerid, Tacho[playerid][53], 0);
PlayerTextDrawBackgroundColor(playerid, Tacho[playerid][53], 255);
PlayerTextDrawFont(playerid, Tacho[playerid][53], 4);
PlayerTextDrawSetProportional(playerid, Tacho[playerid][53], 0);
Tacho[playerid][54] = CreatePlayerTextDraw(playerid, 494.000488, 407.622222, "LD_SPAC:white");
PlayerTextDrawTextSize(playerid, Tacho[playerid][54], 21.000000, 22.000000);
PlayerTextDrawAlignment(playerid, Tacho[playerid][54], 1);
PlayerTextDrawColor(playerid, Tacho[playerid][54], 255);
PlayerTextDrawSetShadow(playerid, Tacho[playerid][54], 0);
PlayerTextDrawBackgroundColor(playerid, Tacho[playerid][54], 255);
PlayerTextDrawFont(playerid, Tacho[playerid][54], 4);
PlayerTextDrawSetProportional(playerid, Tacho[playerid][54], 0);
Tacho[playerid][55] = CreatePlayerTextDraw(playerid, 504.500244, 409.022430, "P");
PlayerTextDrawLetterSize(playerid, Tacho[playerid][55], 0.378333, 1.911110);
PlayerTextDrawTextSize(playerid, Tacho[playerid][55], 0.000000, -64.000000);
PlayerTextDrawAlignment(playerid, Tacho[playerid][55], 2);
PlayerTextDrawColor(playerid, Tacho[playerid][55], -1);
PlayerTextDrawSetShadow(playerid, Tacho[playerid][55], 0);
PlayerTextDrawBackgroundColor(playerid, Tacho[playerid][55], 255);
PlayerTextDrawFont(playerid, Tacho[playerid][55], 1);
PlayerTextDrawSetProportional(playerid, Tacho[playerid][55], 1);
Batterie[playerid][0] = CreatePlayerTextDraw(playerid, 560.666503, 388.396484, "LD_SPAC:white");
PlayerTextDrawTextSize(playerid, Batterie[playerid][0], 9.549997, 7.699979);
PlayerTextDrawAlignment(playerid, Batterie[playerid][0], 1);
PlayerTextDrawColor(playerid, Batterie[playerid][0], -16776961);
PlayerTextDrawSetShadow(playerid, Batterie[playerid][0], 0);
PlayerTextDrawBackgroundColor(playerid, Batterie[playerid][0], 255);
PlayerTextDrawFont(playerid, Batterie[playerid][0], 4);
PlayerTextDrawSetProportional(playerid, Batterie[playerid][0], 0);
Batterie[playerid][1] = CreatePlayerTextDraw(playerid, 561.066406, 388.696502, "LD_SPAC:white");
PlayerTextDrawTextSize(playerid, Batterie[playerid][1], 8.709997, 7.069979);
PlayerTextDrawAlignment(playerid, Batterie[playerid][1], 1);
PlayerTextDrawColor(playerid, Batterie[playerid][1], 255);
PlayerTextDrawSetShadow(playerid, Batterie[playerid][1], 0);
PlayerTextDrawBackgroundColor(playerid, Batterie[playerid][1], 255);
PlayerTextDrawFont(playerid, Batterie[playerid][1], 4);
PlayerTextDrawSetProportional(playerid, Batterie[playerid][1], 0);
Batterie[playerid][2] = CreatePlayerTextDraw(playerid, 561.366333, 387.496429, "LD_SPAC:white");
PlayerTextDrawTextSize(playerid, Batterie[playerid][2], 1.989995, 1.189978);
PlayerTextDrawAlignment(playerid, Batterie[playerid][2], 1);
PlayerTextDrawColor(playerid, Batterie[playerid][2], -16776961);
PlayerTextDrawSetShadow(playerid, Batterie[playerid][2], 0);
PlayerTextDrawBackgroundColor(playerid, Batterie[playerid][2], 255);
PlayerTextDrawFont(playerid, Batterie[playerid][2], 4);
PlayerTextDrawSetProportional(playerid, Batterie[playerid][2], 0);
Batterie[playerid][3] = CreatePlayerTextDraw(playerid, 567.064941, 387.496429, "LD_SPAC:white");
PlayerTextDrawTextSize(playerid, Batterie[playerid][3], 1.989995, 1.189978);
PlayerTextDrawAlignment(playerid, Batterie[playerid][3], 1);
PlayerTextDrawColor(playerid, Batterie[playerid][3], -16776961);
PlayerTextDrawSetShadow(playerid, Batterie[playerid][3], 0);
PlayerTextDrawBackgroundColor(playerid, Batterie[playerid][3], 255);
PlayerTextDrawFont(playerid, Batterie[playerid][3], 4);
PlayerTextDrawSetProportional(playerid, Batterie[playerid][3], 0);
Batterie[playerid][4] = CreatePlayerTextDraw(playerid, 561.999816, 389.111175, "+");
PlayerTextDrawLetterSize(playerid, Batterie[playerid][4], 0.099666, 0.427555);
PlayerTextDrawTextSize(playerid, Batterie[playerid][4], -63.000000, 0.000000);
PlayerTextDrawAlignment(playerid, Batterie[playerid][4], 1);
PlayerTextDrawColor(playerid, Batterie[playerid][4], -16776961);
PlayerTextDrawSetShadow(playerid, Batterie[playerid][4], 0);
PlayerTextDrawBackgroundColor(playerid, Batterie[playerid][4], 255);
PlayerTextDrawFont(playerid, Batterie[playerid][4], 1);
PlayerTextDrawSetProportional(playerid, Batterie[playerid][4], 1);
Batterie[playerid][5] = CreatePlayerTextDraw(playerid, 566.798645, 388.611145, "-");
PlayerTextDrawLetterSize(playerid, Batterie[playerid][5], 0.146666, 0.427555);
PlayerTextDrawTextSize(playerid, Batterie[playerid][5], -63.000000, 0.000000);
PlayerTextDrawAlignment(playerid, Batterie[playerid][5], 1);
PlayerTextDrawColor(playerid, Batterie[playerid][5], -16776961);
PlayerTextDrawSetShadow(playerid, Batterie[playerid][5], 0);
PlayerTextDrawBackgroundColor(playerid, Batterie[playerid][5], 255);
PlayerTextDrawFont(playerid, Batterie[playerid][5], 1);
PlayerTextDrawSetProportional(playerid, Batterie[playerid][5], 1);
Motorleuchte[playerid][0] = CreatePlayerTextDraw(playerid, 558.732177, 372.277893, "LD_SPAC:white");
PlayerTextDrawTextSize(playerid, Motorleuchte[playerid][0], 6.919993, 5.389977);
PlayerTextDrawAlignment(playerid, Motorleuchte[playerid][0], 1);
PlayerTextDrawColor(playerid, Motorleuchte[playerid][0], -5963521);
PlayerTextDrawSetShadow(playerid, Motorleuchte[playerid][0], 0);
PlayerTextDrawBackgroundColor(playerid, Motorleuchte[playerid][0], 255);
PlayerTextDrawFont(playerid, Motorleuchte[playerid][0], 4);
PlayerTextDrawSetProportional(playerid, Motorleuchte[playerid][0], 0);
Motorleuchte[playerid][1] = CreatePlayerTextDraw(playerid, 559.132080, 372.577911, "LD_SPAC:white");
PlayerTextDrawTextSize(playerid, Motorleuchte[playerid][1], 6.149992, 4.949976);
PlayerTextDrawAlignment(playerid, Motorleuchte[playerid][1], 1);
PlayerTextDrawColor(playerid, Motorleuchte[playerid][1], 255);
PlayerTextDrawSetShadow(playerid, Motorleuchte[playerid][1], 0);
PlayerTextDrawBackgroundColor(playerid, Motorleuchte[playerid][1], 255);
PlayerTextDrawFont(playerid, Motorleuchte[playerid][1], 4);
PlayerTextDrawSetProportional(playerid, Motorleuchte[playerid][1], 0);
Motorleuchte[playerid][2] = CreatePlayerTextDraw(playerid, 560.831665, 371.477844, "LD_SPAC:white");
PlayerTextDrawTextSize(playerid, Motorleuchte[playerid][2], 1.899999, 1.000000);
PlayerTextDrawAlignment(playerid, Motorleuchte[playerid][2], 1);
PlayerTextDrawColor(playerid, Motorleuchte[playerid][2], -5963521);
PlayerTextDrawSetShadow(playerid, Motorleuchte[playerid][2], 0);
PlayerTextDrawBackgroundColor(playerid, Motorleuchte[playerid][2], 255);
PlayerTextDrawFont(playerid, Motorleuchte[playerid][2], 4);
PlayerTextDrawSetProportional(playerid, Motorleuchte[playerid][2], 0);
Motorleuchte[playerid][3] = CreatePlayerTextDraw(playerid, 560.031860, 370.077758, "LD_SPAC:white");
PlayerTextDrawTextSize(playerid, Motorleuchte[playerid][3], 3.989999, 1.440000);
PlayerTextDrawAlignment(playerid, Motorleuchte[playerid][3], 1);
PlayerTextDrawColor(playerid, Motorleuchte[playerid][3], -5963521);
PlayerTextDrawSetShadow(playerid, Motorleuchte[playerid][3], 0);
PlayerTextDrawBackgroundColor(playerid, Motorleuchte[playerid][3], 255);
PlayerTextDrawFont(playerid, Motorleuchte[playerid][3], 4);
PlayerTextDrawSetProportional(playerid, Motorleuchte[playerid][3], 0);
Motorleuchte[playerid][4] = CreatePlayerTextDraw(playerid, 557.832397, 373.977996, "LD_SPAC:white");
PlayerTextDrawTextSize(playerid, Motorleuchte[playerid][4], 1.240000, 1.440000);
PlayerTextDrawAlignment(playerid, Motorleuchte[playerid][4], 1);
PlayerTextDrawColor(playerid, Motorleuchte[playerid][4], -5963521);
PlayerTextDrawSetShadow(playerid, Motorleuchte[playerid][4], 0);
PlayerTextDrawBackgroundColor(playerid, Motorleuchte[playerid][4], 255);
PlayerTextDrawFont(playerid, Motorleuchte[playerid][4], 4);
PlayerTextDrawSetProportional(playerid, Motorleuchte[playerid][4], 0);
Motorleuchte[playerid][5] = CreatePlayerTextDraw(playerid, 556.966003, 371.492645, "LD_SPAC:white");
PlayerTextDrawTextSize(playerid, Motorleuchte[playerid][5], 0.910000, 3.639997);
PlayerTextDrawAlignment(playerid, Motorleuchte[playerid][5], 1);
PlayerTextDrawColor(playerid, Motorleuchte[playerid][5], -5963521);
PlayerTextDrawSetShadow(playerid, Motorleuchte[playerid][5], 0);
PlayerTextDrawBackgroundColor(playerid, Motorleuchte[playerid][5], 255);
PlayerTextDrawFont(playerid, Motorleuchte[playerid][5], 4);
PlayerTextDrawSetProportional(playerid, Motorleuchte[playerid][5], 0);
Motorleuchte[playerid][6] = CreatePlayerTextDraw(playerid, 565.763854, 373.292755, "LD_SPAC:white");
PlayerTextDrawTextSize(playerid, Motorleuchte[playerid][6], 0.910000, 3.089998);
PlayerTextDrawAlignment(playerid, Motorleuchte[playerid][6], 1);
PlayerTextDrawColor(playerid, Motorleuchte[playerid][6], -5963521);
PlayerTextDrawSetShadow(playerid, Motorleuchte[playerid][6], 0);
PlayerTextDrawBackgroundColor(playerid, Motorleuchte[playerid][6], 255);
PlayerTextDrawFont(playerid, Motorleuchte[playerid][6], 4);
PlayerTextDrawSetProportional(playerid, Motorleuchte[playerid][6], 0);
Motorleuchte[playerid][7] = CreatePlayerTextDraw(playerid, 566.663635, 372.192687, "LD_SPAC:white");
PlayerTextDrawTextSize(playerid, Motorleuchte[playerid][7], 1.129999, 5.510000);
PlayerTextDrawAlignment(playerid, Motorleuchte[playerid][7], 1);
PlayerTextDrawColor(playerid, Motorleuchte[playerid][7], -5963521);
PlayerTextDrawSetShadow(playerid, Motorleuchte[playerid][7], 0);
PlayerTextDrawBackgroundColor(playerid, Motorleuchte[playerid][7], 255);
PlayerTextDrawFont(playerid, Motorleuchte[playerid][7], 4);
PlayerTextDrawSetProportional(playerid, Motorleuchte[playerid][7], 0);
Motorleuchte[playerid][8] = CreatePlayerTextDraw(playerid, 557.265930, 374.292816, "LD_SPAC:white");
PlayerTextDrawTextSize(playerid, Motorleuchte[playerid][8], 0.910000, 3.639997);
PlayerTextDrawAlignment(playerid, Motorleuchte[playerid][8], 1);
PlayerTextDrawColor(playerid, Motorleuchte[playerid][8], -5963521);
PlayerTextDrawSetShadow(playerid, Motorleuchte[playerid][8], 0);
PlayerTextDrawBackgroundColor(playerid, Motorleuchte[playerid][8], 255);
PlayerTextDrawFont(playerid, Motorleuchte[playerid][8], 4);
PlayerTextDrawSetProportional(playerid, Motorleuchte[playerid][8], 0);
Locked[playerid][0] = CreatePlayerTextDraw(playerid, 594.900146, 396.581481, "LD_BEAT:chit");
PlayerTextDrawTextSize(playerid, Locked[playerid][0], 7.619999, -8.780014);
PlayerTextDrawAlignment(playerid, Locked[playerid][0], 1);
PlayerTextDrawColor(playerid, Locked[playerid][0], -5963521);
PlayerTextDrawSetShadow(playerid, Locked[playerid][0], 0);
PlayerTextDrawBackgroundColor(playerid, Locked[playerid][0], 255);
PlayerTextDrawFont(playerid, Locked[playerid][0], 4);
PlayerTextDrawSetProportional(playerid, Locked[playerid][0], 0);
Locked[playerid][1] = CreatePlayerTextDraw(playerid, 596.099853, 395.596221, "LD_BEAT:chit");
PlayerTextDrawTextSize(playerid, Locked[playerid][1], 5.140000, -6.300014);
PlayerTextDrawAlignment(playerid, Locked[playerid][1], 1);
PlayerTextDrawColor(playerid, Locked[playerid][1], 255);
PlayerTextDrawSetShadow(playerid, Locked[playerid][1], 0);
PlayerTextDrawBackgroundColor(playerid, Locked[playerid][1], 255);
PlayerTextDrawFont(playerid, Locked[playerid][1], 4);
PlayerTextDrawSetProportional(playerid, Locked[playerid][1], 0);
Locked[playerid][2] = CreatePlayerTextDraw(playerid, 590.566589, 391.659271, "LD_SPAC:white");
PlayerTextDrawTextSize(playerid, Locked[playerid][2], 6.380000, 1.000000);
PlayerTextDrawAlignment(playerid, Locked[playerid][2], 1);
PlayerTextDrawColor(playerid, Locked[playerid][2], -5963521);
PlayerTextDrawSetShadow(playerid, Locked[playerid][2], 0);
PlayerTextDrawBackgroundColor(playerid, Locked[playerid][2], 255);
PlayerTextDrawFont(playerid, Locked[playerid][2], 4);
PlayerTextDrawSetProportional(playerid, Locked[playerid][2], 0);
Locked[playerid][3] = CreatePlayerTextDraw(playerid, 590.566589, 392.659332, "LD_SPAC:white");
PlayerTextDrawTextSize(playerid, Locked[playerid][3], 2.660000, 0.999999);
PlayerTextDrawAlignment(playerid, Locked[playerid][3], 1);
PlayerTextDrawColor(playerid, Locked[playerid][3], -5963521);
PlayerTextDrawSetShadow(playerid, Locked[playerid][3], 0);
PlayerTextDrawBackgroundColor(playerid, Locked[playerid][3], 255);
PlayerTextDrawFont(playerid, Locked[playerid][3], 4);
PlayerTextDrawSetProportional(playerid, Locked[playerid][3], 0);
Licht[playerid][0] = CreatePlayerTextDraw(playerid, 596.733398, 366.925903, "D");
PlayerTextDrawLetterSize(playerid, Licht[playerid][0], -0.290333, 1.554370);
PlayerTextDrawAlignment(playerid, Licht[playerid][0], 1);
PlayerTextDrawColor(playerid, Licht[playerid][0], 8388863);
PlayerTextDrawSetShadow(playerid, Licht[playerid][0], 0);
PlayerTextDrawBackgroundColor(playerid, Licht[playerid][0], 255);
PlayerTextDrawFont(playerid, Licht[playerid][0], 1);
PlayerTextDrawSetProportional(playerid, Licht[playerid][0], 1);
Licht[playerid][1] = CreatePlayerTextDraw(playerid, 602.231567, 365.140594, "-");
PlayerTextDrawLetterSize(playerid, Licht[playerid][1], -0.444331, 1.144371);
PlayerTextDrawAlignment(playerid, Licht[playerid][1], 1);
PlayerTextDrawColor(playerid, Licht[playerid][1], 8388863);
PlayerTextDrawSetShadow(playerid, Licht[playerid][1], 0);
PlayerTextDrawBackgroundColor(playerid, Licht[playerid][1], 255);
PlayerTextDrawFont(playerid, Licht[playerid][1], 1);
PlayerTextDrawSetProportional(playerid, Licht[playerid][1], 1);
Licht[playerid][2] = CreatePlayerTextDraw(playerid, 602.231567, 370.340911, "-");
PlayerTextDrawLetterSize(playerid, Licht[playerid][2], -0.444331, 1.144371);
PlayerTextDrawAlignment(playerid, Licht[playerid][2], 1);
PlayerTextDrawColor(playerid, Licht[playerid][2], 8388863);
PlayerTextDrawSetShadow(playerid, Licht[playerid][2], 0);
PlayerTextDrawBackgroundColor(playerid, Licht[playerid][2], 255);
PlayerTextDrawFont(playerid, Licht[playerid][2], 1);
PlayerTextDrawSetProportional(playerid, Licht[playerid][2], 1);
Licht[playerid][3] = CreatePlayerTextDraw(playerid, 602.231567, 367.740753, "-");
PlayerTextDrawLetterSize(playerid, Licht[playerid][3], -0.444331, 1.144371);
PlayerTextDrawAlignment(playerid, Licht[playerid][3], 1);
PlayerTextDrawColor(playerid, Licht[playerid][3], 8388863);
PlayerTextDrawSetShadow(playerid, Licht[playerid][3], 0);
PlayerTextDrawBackgroundColor(playerid, Licht[playerid][3], 255);
PlayerTextDrawFont(playerid, Licht[playerid][3], 1);
PlayerTextDrawSetProportional(playerid, Licht[playerid][3], 1);
Batterie[playerid][0] = CreatePlayerTextDraw(playerid, 560.666503, 388.396484, "LD_SPAC:white");
PlayerTextDrawTextSize(playerid, Batterie[playerid][0], 9.549997, 7.699979);
PlayerTextDrawAlignment(playerid, Batterie[playerid][0], 1);
PlayerTextDrawColor(playerid, Batterie[playerid][0], -16776961);
PlayerTextDrawSetShadow(playerid, Batterie[playerid][0], 0);
PlayerTextDrawBackgroundColor(playerid, Batterie[playerid][0], 255);
PlayerTextDrawFont(playerid, Batterie[playerid][0], 4);
PlayerTextDrawSetProportional(playerid, Batterie[playerid][0], 0);
Batterie[playerid][1] = CreatePlayerTextDraw(playerid, 561.066406, 388.696502, "LD_SPAC:white");
PlayerTextDrawTextSize(playerid, Batterie[playerid][1], 8.709997, 7.069979);
PlayerTextDrawAlignment(playerid, Batterie[playerid][1], 1);
PlayerTextDrawColor(playerid, Batterie[playerid][1], 255);
PlayerTextDrawSetShadow(playerid, Batterie[playerid][1], 0);
PlayerTextDrawBackgroundColor(playerid, Batterie[playerid][1], 255);
PlayerTextDrawFont(playerid, Batterie[playerid][1], 4);
PlayerTextDrawSetProportional(playerid, Batterie[playerid][1], 0);
Batterie[playerid][2] = CreatePlayerTextDraw(playerid, 561.366333, 387.496429, "LD_SPAC:white");
PlayerTextDrawTextSize(playerid, Batterie[playerid][2], 1.989995, 1.189978);
PlayerTextDrawAlignment(playerid, Batterie[playerid][2], 1);
PlayerTextDrawColor(playerid, Batterie[playerid][2], -16776961);
PlayerTextDrawSetShadow(playerid, Batterie[playerid][2], 0);
PlayerTextDrawBackgroundColor(playerid, Batterie[playerid][2], 255);
PlayerTextDrawFont(playerid, Batterie[playerid][2], 4);
PlayerTextDrawSetProportional(playerid, Batterie[playerid][2], 0);
Batterie[playerid][3] = CreatePlayerTextDraw(playerid, 567.064941, 387.496429, "LD_SPAC:white");
PlayerTextDrawTextSize(playerid, Batterie[playerid][3], 1.989995, 1.189978);
PlayerTextDrawAlignment(playerid, Batterie[playerid][3], 1);
PlayerTextDrawColor(playerid, Batterie[playerid][3], -16776961);
PlayerTextDrawSetShadow(playerid, Batterie[playerid][3], 0);
PlayerTextDrawBackgroundColor(playerid, Batterie[playerid][3], 255);
PlayerTextDrawFont(playerid, Batterie[playerid][3], 4);
PlayerTextDrawSetProportional(playerid, Batterie[playerid][3], 0);
Batterie[playerid][4] = CreatePlayerTextDraw(playerid, 561.999816, 389.111175, "+");
PlayerTextDrawLetterSize(playerid, Batterie[playerid][4], 0.099666, 0.427555);
PlayerTextDrawTextSize(playerid, Batterie[playerid][4], -63.000000, 0.000000);
PlayerTextDrawAlignment(playerid, Batterie[playerid][4], 1);
PlayerTextDrawColor(playerid, Batterie[playerid][4], -16776961);
PlayerTextDrawSetShadow(playerid, Batterie[playerid][4], 0);
PlayerTextDrawBackgroundColor(playerid, Batterie[playerid][4], 255);
PlayerTextDrawFont(playerid, Batterie[playerid][4], 1);
PlayerTextDrawSetProportional(playerid, Batterie[playerid][4], 1);
Batterie[playerid][5] = CreatePlayerTextDraw(playerid, 566.798645, 388.611145, "-");
PlayerTextDrawLetterSize(playerid, Batterie[playerid][5], 0.146666, 0.427555);
PlayerTextDrawTextSize(playerid, Batterie[playerid][5], -63.000000, 0.000000);
PlayerTextDrawAlignment(playerid, Batterie[playerid][5], 1);
PlayerTextDrawColor(playerid, Batterie[playerid][5], -16776961);
PlayerTextDrawSetShadow(playerid, Batterie[playerid][5], 0);
PlayerTextDrawBackgroundColor(playerid, Batterie[playerid][5], 255);
PlayerTextDrawFont(playerid, Batterie[playerid][5], 1);
PlayerTextDrawSetProportional(playerid, Batterie[playerid][5], 1);
KMH[playerid] = CreatePlayerTextDraw(playerid, 579.666320, 353.022186, "000_km/h");
PlayerTextDrawLetterSize(playerid, KMH[playerid], 0.161329, 1.060739);
PlayerTextDrawTextSize(playerid, KMH[playerid], 0.000000, 30.000000);
PlayerTextDrawAlignment(playerid, KMH[playerid], 2);
PlayerTextDrawColor(playerid, KMH[playerid], 0x808080FF);
PlayerTextDrawUseBox(playerid, KMH[playerid], 1);
PlayerTextDrawBoxColor(playerid, KMH[playerid], 255);
PlayerTextDrawSetShadow(playerid, KMH[playerid], 0);
PlayerTextDrawBackgroundColor(playerid, KMH[playerid], 255);
PlayerTextDrawFont(playerid, KMH[playerid], 1);
PlayerTextDrawSetProportional(playerid, KMH[playerid], 1);
Kilometerstand[playerid] = CreatePlayerTextDraw(playerid, 580.332824, 415.244659, "000000_km");
PlayerTextDrawLetterSize(playerid, Kilometerstand[playerid], 0.164331, 1.135406);
PlayerTextDrawTextSize(playerid, Kilometerstand[playerid], 0.000000, 35.000000);
PlayerTextDrawAlignment(playerid, Kilometerstand[playerid], 2);
PlayerTextDrawColor(playerid, Kilometerstand[playerid], 0x808080FF);
PlayerTextDrawUseBox(playerid, Kilometerstand[playerid], 1);
PlayerTextDrawBoxColor(playerid, Kilometerstand[playerid], 255);
PlayerTextDrawSetShadow(playerid, Kilometerstand[playerid], 0);
PlayerTextDrawBackgroundColor(playerid, Kilometerstand[playerid], 255);
PlayerTextDrawFont(playerid, Kilometerstand[playerid], 1);
PlayerTextDrawSetProportional(playerid, Kilometerstand[playerid], 1);
Sprit[playerid] = CreatePlayerTextDraw(playerid, 492.665710, 366.711425, "100");
PlayerTextDrawLetterSize(playerid, Sprit[playerid], 0.172664, 1.168591);
PlayerTextDrawTextSize(playerid, Sprit[playerid], 0.000000, 12.000000);
PlayerTextDrawAlignment(playerid, Sprit[playerid], 2);
PlayerTextDrawColor(playerid, Sprit[playerid], 0x808080FF);
PlayerTextDrawUseBox(playerid, Sprit[playerid], 1);
PlayerTextDrawBoxColor(playerid, Sprit[playerid], 255);
PlayerTextDrawSetShadow(playerid, Sprit[playerid], 0);
PlayerTextDrawBackgroundColor(playerid, Sprit[playerid], 255);
PlayerTextDrawFont(playerid, Sprit[playerid], 1);
PlayerTextDrawSetProportional(playerid, Sprit[playerid], 1);
AutoHP[playerid][0] = CreatePlayerTextDraw(playerid, 513.000427, 387.037231, "200");
PlayerTextDrawLetterSize(playerid, AutoHP[playerid][0], 0.176332, 0.758406);
PlayerTextDrawTextSize(playerid, AutoHP[playerid][0], 525.000000, 0.000000);
PlayerTextDrawAlignment(playerid, AutoHP[playerid][0], 1);
PlayerTextDrawColor(playerid, AutoHP[playerid][0], 0x808080FF);
PlayerTextDrawUseBox(playerid, AutoHP[playerid][0], 1);
PlayerTextDrawBoxColor(playerid, AutoHP[playerid][0], 255);
PlayerTextDrawSetShadow(playerid, AutoHP[playerid][0], 0);
PlayerTextDrawBackgroundColor(playerid, AutoHP[playerid][0], 255);
PlayerTextDrawFont(playerid, AutoHP[playerid][0], 1);
PlayerTextDrawSetProportional(playerid, AutoHP[playerid][0], 1);
AutoHP[playerid][1] = CreatePlayerTextDraw(playerid, 515.666564, 377.340728, "LD_SPAC:white");
PlayerTextDrawTextSize(playerid, AutoHP[playerid][1], 6.000000, 6.000000);
PlayerTextDrawAlignment(playerid, AutoHP[playerid][1], 1);
PlayerTextDrawColor(playerid, AutoHP[playerid][1], -16776961);
PlayerTextDrawSetShadow(playerid, AutoHP[playerid][1], 0);
PlayerTextDrawFont(playerid, AutoHP[playerid][1], 4);
PlayerTextDrawSetProportional(playerid, AutoHP[playerid][1], 0);
AutoHP[playerid][2] = CreatePlayerTextDraw(playerid, 515.666564, 369.873931, "LD_SPAC:white");
PlayerTextDrawTextSize(playerid, AutoHP[playerid][2], 6.000000, 6.000000);
PlayerTextDrawAlignment(playerid, AutoHP[playerid][2], 1);
PlayerTextDrawColor(playerid, AutoHP[playerid][2], -5963521);
PlayerTextDrawSetShadow(playerid, AutoHP[playerid][2], 0);
PlayerTextDrawFont(playerid, AutoHP[playerid][2], 4);
PlayerTextDrawSetProportional(playerid, AutoHP[playerid][2], 0);
AutoHP[playerid][3] = CreatePlayerTextDraw(playerid, 515.666564, 361.977447, "LD_SPAC:white");
PlayerTextDrawTextSize(playerid, AutoHP[playerid][3], 6.000000, 6.000000);
PlayerTextDrawAlignment(playerid, AutoHP[playerid][3], 1);
PlayerTextDrawColor(playerid, AutoHP[playerid][3], 16711935);
PlayerTextDrawSetShadow(playerid, AutoHP[playerid][3], 0);
PlayerTextDrawFont(playerid, AutoHP[playerid][3], 4);
PlayerTextDrawSetProportional(playerid, AutoHP[playerid][3], 0);
AutoHP[playerid][4] = CreatePlayerTextDraw(playerid, 515.666564, 354.095825, "LD_SPAC:white");
PlayerTextDrawTextSize(playerid, AutoHP[playerid][4], 6.000000, 6.000000);
PlayerTextDrawAlignment(playerid, AutoHP[playerid][4], 1);
PlayerTextDrawColor(playerid, AutoHP[playerid][4], -1);
PlayerTextDrawSetShadow(playerid, AutoHP[playerid][4], 0);
PlayerTextDrawFont(playerid, AutoHP[playerid][4], 4);
PlayerTextDrawSetProportional(playerid, AutoHP[playerid][4], 0);
/*AutoHP[playerid] = CreatePlayerTextDraw(playerid, 512.999084, 407.778137, "100_%");
PlayerTextDrawLetterSize(playerid, AutoHP[playerid], 0.172664, 1.168591);
PlayerTextDrawTextSize(playerid, AutoHP[playerid], 0.000000, 19.000000);
PlayerTextDrawAlignment(playerid, AutoHP[playerid], 2);
PlayerTextDrawColor(playerid, AutoHP[playerid], -1);
PlayerTextDrawUseBox(playerid, AutoHP[playerid], 1);
PlayerTextDrawBoxColor(playerid, AutoHP[playerid], 255);
PlayerTextDrawSetShadow(playerid, AutoHP[playerid], 0);
PlayerTextDrawBackgroundColor(playerid, AutoHP[playerid], 255);
PlayerTextDrawFont(playerid, AutoHP[playerid], 1);
PlayerTextDrawSetProportional(playerid, AutoHP[playerid], 1);*/
Tachonadel[playerid]= CreatePlayerTextDraw(playerid, 516.333007, 327.148559, "");
PlayerTextDrawSetPreviewRot(playerid, Tachonadel[playerid], 0.000000, 132.500000, 0.000000, 2.00000);
PlayerTextDrawTextSize(playerid, Tachonadel[playerid], 120.000000, 150.000000);
PlayerTextDrawAlignment(playerid, Tachonadel[playerid], 1);
PlayerTextDrawColor(playerid, Tachonadel[playerid], -1);
PlayerTextDrawSetShadow(playerid, Tachonadel[playerid], 0);
PlayerTextDrawBackgroundColor(playerid, Tachonadel[playerid],0);
PlayerTextDrawFont(playerid, Tachonadel[playerid], 5);
PlayerTextDrawSetProportional(playerid, Tachonadel[playerid], 0);
PlayerTextDrawSetPreviewModel(playerid, Tachonadel[playerid], 19348);
Spritnadel[playerid]= CreatePlayerTextDraw(playerid, 449.666534, 351.622955, "");
PlayerTextDrawSetPreviewRot(playerid, Spritnadel[playerid], 0.000000, 90.000000, 0.000000, 2.00000);
PlayerTextDrawTextSize(playerid, Spritnadel[playerid], 102.000000, 112.000000);
PlayerTextDrawAlignment(playerid, Spritnadel[playerid], 1);
PlayerTextDrawColor(playerid, Spritnadel[playerid], -1);
PlayerTextDrawSetShadow(playerid, Spritnadel[playerid], 0);
PlayerTextDrawBackgroundColor(playerid, Spritnadel[playerid],0);
PlayerTextDrawFont(playerid, Spritnadel[playerid], 5);
PlayerTextDrawSetProportional(playerid, Spritnadel[playerid], 0);
PlayerTextDrawSetPreviewModel(playerid, Spritnadel[playerid], 19348);
Tacho_Mitte[playerid] = CreatePlayerTextDraw(playerid, 572.366394, 369.588958, "ld_pool:ball");
PlayerTextDrawTextSize(playerid, Tacho_Mitte[playerid], 15.000000, 17.000000);
PlayerTextDrawAlignment(playerid, Tacho_Mitte[playerid], 1);
PlayerTextDrawColor(playerid, Tacho_Mitte[playerid], 255);
PlayerTextDrawSetShadow(playerid, Tacho_Mitte[playerid], 0);
PlayerTextDrawBackgroundColor(playerid, Tacho_Mitte[playerid], 255);
PlayerTextDrawFont(playerid, Tacho_Mitte[playerid], 4);
PlayerTextDrawSetProportional(playerid, Tacho_Mitte[playerid], 0);
Sprit_Mitte[playerid] = CreatePlayerTextDraw(playerid, 498.033020, 382.863098, "ld_pool:ball");
PlayerTextDrawTextSize(playerid, Sprit_Mitte[playerid], 11.500000, 13.500000);
PlayerTextDrawAlignment(playerid, Sprit_Mitte[playerid], 1);
PlayerTextDrawColor(playerid, Sprit_Mitte[playerid], 255);
PlayerTextDrawSetShadow(playerid, Sprit_Mitte[playerid], 0);
PlayerTextDrawBackgroundColor(playerid, Sprit_Mitte[playerid], 255);
PlayerTextDrawFont(playerid, Sprit_Mitte[playerid], 4);
PlayerTextDrawSetProportional(playerid, Sprit_Mitte[playerid], 0);
Tacho[playerid][0] = CreatePlayerTextDraw(playerid, 553.666564, 400.310791, "0");
PlayerTextDrawLetterSize(playerid, Tacho[playerid][0], 0.156332, 1.317926);
PlayerTextDrawTextSize(playerid, Tacho[playerid][0], -146.000000, 0.000000);
PlayerTextDrawAlignment(playerid, Tacho[playerid][0], 1);
PlayerTextDrawColor(playerid, Tacho[playerid][0], 0x808080FF);
PlayerTextDrawSetShadow(playerid, Tacho[playerid][0], 0);
PlayerTextDrawBackgroundColor(playerid, Tacho[playerid][0], 255);
PlayerTextDrawFont(playerid, Tacho[playerid][0], 1);
PlayerTextDrawSetProportional(playerid, Tacho[playerid][0], 1);
Tacho[playerid][1] = CreatePlayerTextDraw(playerid, 545.666748, 383.718109, "20");
PlayerTextDrawLetterSize(playerid, Tacho[playerid][1], 0.156332, 1.317926);
PlayerTextDrawTextSize(playerid, Tacho[playerid][1], -146.000000, 0.000000);
PlayerTextDrawAlignment(playerid, Tacho[playerid][1], 1);
PlayerTextDrawColor(playerid, Tacho[playerid][1], 0x808080FF);
PlayerTextDrawSetShadow(playerid, Tacho[playerid][1], 0);
PlayerTextDrawBackgroundColor(playerid, Tacho[playerid][1], 255);
PlayerTextDrawFont(playerid, Tacho[playerid][1], 1);
PlayerTextDrawSetProportional(playerid, Tacho[playerid][1], 1);
Tacho[playerid][2] = CreatePlayerTextDraw(playerid, 544.333496, 366.710601, "40");
PlayerTextDrawLetterSize(playerid, Tacho[playerid][2], 0.156332, 1.317926);
PlayerTextDrawTextSize(playerid, Tacho[playerid][2], -146.000000, 0.000000);
PlayerTextDrawAlignment(playerid, Tacho[playerid][2], 1);
PlayerTextDrawColor(playerid, Tacho[playerid][2], 0x808080FF);
PlayerTextDrawSetShadow(playerid, Tacho[playerid][2], 0);
PlayerTextDrawBackgroundColor(playerid, Tacho[playerid][2], 255);
PlayerTextDrawFont(playerid, Tacho[playerid][2], 1);
PlayerTextDrawSetProportional(playerid, Tacho[playerid][2], 1);
Tacho[playerid][3] = CreatePlayerTextDraw(playerid, 548.333312, 350.117736, "60");
PlayerTextDrawLetterSize(playerid, Tacho[playerid][3], 0.156332, 1.317926);
PlayerTextDrawTextSize(playerid, Tacho[playerid][3], -146.000000, 0.000000);
PlayerTextDrawAlignment(playerid, Tacho[playerid][3], 1);
PlayerTextDrawColor(playerid, Tacho[playerid][3], 0x808080FF);
PlayerTextDrawSetShadow(playerid, Tacho[playerid][3], 0);
PlayerTextDrawBackgroundColor(playerid, Tacho[playerid][3], 255);
PlayerTextDrawFont(playerid, Tacho[playerid][3], 1);
PlayerTextDrawSetProportional(playerid, Tacho[playerid][3], 1);
Tacho[playerid][4] = CreatePlayerTextDraw(playerid, 556.666503, 339.332580, "80");
PlayerTextDrawLetterSize(playerid, Tacho[playerid][4], 0.156332, 1.317926);
PlayerTextDrawTextSize(playerid, Tacho[playerid][4], -146.000000, 0.000000);
PlayerTextDrawAlignment(playerid, Tacho[playerid][4], 1);
PlayerTextDrawColor(playerid, Tacho[playerid][4], 0x808080FF);
PlayerTextDrawSetShadow(playerid, Tacho[playerid][4], 0);
PlayerTextDrawBackgroundColor(playerid, Tacho[playerid][4], 255);
PlayerTextDrawFont(playerid, Tacho[playerid][4], 1);
PlayerTextDrawSetProportional(playerid, Tacho[playerid][4], 1);
Tacho[playerid][5] = CreatePlayerTextDraw(playerid, 567.999816, 333.525085, "100");
PlayerTextDrawLetterSize(playerid, Tacho[playerid][5], 0.156332, 1.317926);
PlayerTextDrawTextSize(playerid, Tacho[playerid][5], -146.000000, 0.000000);
PlayerTextDrawAlignment(playerid, Tacho[playerid][5], 1);
PlayerTextDrawColor(playerid, Tacho[playerid][5], 0x808080FF);
PlayerTextDrawSetShadow(playerid, Tacho[playerid][5], 0);
PlayerTextDrawBackgroundColor(playerid, Tacho[playerid][5], 255);
PlayerTextDrawFont(playerid, Tacho[playerid][5], 1);
PlayerTextDrawSetProportional(playerid, Tacho[playerid][5], 1);
Tacho[playerid][6] = CreatePlayerTextDraw(playerid, 582.999816, 332.695495, "120");
PlayerTextDrawLetterSize(playerid, Tacho[playerid][6], 0.156332, 1.317926);
PlayerTextDrawTextSize(playerid, Tacho[playerid][6], -146.000000, 0.000000);
PlayerTextDrawAlignment(playerid, Tacho[playerid][6], 1);
PlayerTextDrawColor(playerid, Tacho[playerid][6], 0x808080FF);
PlayerTextDrawSetShadow(playerid, Tacho[playerid][6], 0);
PlayerTextDrawBackgroundColor(playerid, Tacho[playerid][6], 255);
PlayerTextDrawFont(playerid, Tacho[playerid][6], 1);
PlayerTextDrawSetProportional(playerid, Tacho[playerid][6], 1);
Tacho[playerid][7] = CreatePlayerTextDraw(playerid, 594.665954, 339.332550, "140");
PlayerTextDrawLetterSize(playerid, Tacho[playerid][7], 0.156332, 1.317926);
PlayerTextDrawTextSize(playerid, Tacho[playerid][7], -146.000000, 0.000000);
PlayerTextDrawAlignment(playerid, Tacho[playerid][7], 1);
PlayerTextDrawColor(playerid, Tacho[playerid][7], 0x808080FF);
PlayerTextDrawSetShadow(playerid, Tacho[playerid][7], 0);
PlayerTextDrawBackgroundColor(playerid, Tacho[playerid][7], 255);
PlayerTextDrawFont(playerid, Tacho[playerid][7], 1);
PlayerTextDrawSetProportional(playerid, Tacho[playerid][7], 1);
Tacho[playerid][8] = CreatePlayerTextDraw(playerid, 602.999328, 350.532379, "160");
PlayerTextDrawLetterSize(playerid, Tacho[playerid][8], 0.156332, 1.317926);
PlayerTextDrawTextSize(playerid, Tacho[playerid][8], -146.000000, 0.000000);
PlayerTextDrawAlignment(playerid, Tacho[playerid][8], 1);
PlayerTextDrawColor(playerid, Tacho[playerid][8], 0x808080FF);
PlayerTextDrawSetShadow(playerid, Tacho[playerid][8], 0);
PlayerTextDrawBackgroundColor(playerid, Tacho[playerid][8], 255);