-
Notifications
You must be signed in to change notification settings - Fork 16
/
vliveb.pwn
10614 lines (9605 loc) · 293 KB
/
vliveb.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
/*
mySantos.pl - pierwotny vLive.pl autorstwa blinta, skrypt przystosowany do wspó³pracy z IP.Board 3.4.5
Last update: 18 marzec 2014 r.
Warto poprawiæ b³êdy wyrzucane podczas korzystania ze schowka, dodatkowo mo¿e byæ jakiœ b³¹d
przy timerach u gracza, server_log siê cholernie zasypuje; mapa na chodzie! :)
*/
#include <a_samp>
#include <mysql>
#include <sscanf2>
#include <vlive_kolorki>
#include <zcmd>
#include <streamer>
#include <mSelection>
#include <audio>
#include <md5>
#include <onplayershootplayer>
#include <progress> //nowe hudy
#include <speedcap>
#include <fly>
#undef MAX_PLAYERS
#define MAX_PLAYERS 100
#define ENGINE_BASE_COST 0
#define ENGINE_MODIFY_COST 2400
#define ENGINE_SPORT_COST 8000
#define BENEFIT_AMOUNT 150
//
// -- Define -- //
// »
//
// - warningi przy wyci¹ganiu ze schowka...
// - czyszczenie Days z bazy last_pd na koniec miesiaca
// Error CODE : 7374 - wiêcej ni¿ jeden telefon w u¿yciu
// Error CODE : 4046 - wiêcej itemów w ekwipunku ni¿ dopuszczalne
//
#define DIAL_P 1 // cmd : /p
#define DIAL_L 3 // logowanie na serwer
#define DIAL_PUSE 4 // u¿ywanie itema z p
#define DIAL_PP 6 //podnoszenie itemów
#define DIAL_NOTEPAD 7 //tworzenie notatki
#define DIAL_G 8 //lista grup
#define DIAL_V 9 //lista pojazdow
#define DIAL_VSEL 10 //wybrany pojazd
#define DIAL_AVMENU 11 //admin gui vehicles
#define DIAL_ACP 12 //acp
#define DIAL_AVOLIST 13 //lista bezpanskich aut
#define DIAL_AVACTION 14 // akcja na wybrtanym
#define DIAL_UNSPAWN 15 //dial unspawnowania
#define DIAL_GUSE 16
#define DIAL_SG 18 //selectgroup
#define DIAL_RG 19 //rejestracja in game
#define DIAL_RGC 20 //tworzenie
#define DIAL_O 21 //dial oferowania
#define DIAL_PHONE 22 //telefon
#define DIAL_STATS 23
#define DIAL_CONTACTS 24 //kontakty
#define DIAL_APRZEDMIOT 25
#define DIAL_VAL1 26
#define DIAL_VAL2 27
#define DIAL_NAME 28
#define DIAL_OWNER 29
#define DIAL_PICKUP 30
#define DIAL_BANKOMAT 31
#define DIAL_BKWYPLAC 32
#define DIAL_BKWPLAC 33
#define DIAL_SCHOWEK 34
#define DIAL_911 35
#define DIAL_911SEL 36
#define DIAL_ZAMAWIANIE 37
#define DIAL_ZAMSEL 38
#define DIAL_MAGAZYN 39
#define DIAL_MAGWYJMIJ 40
#define DIAL_ILE 41
#define DIAL_KOKPIT 42
#define DIAL_G_TYPE 43
#define DIAL_PURCHASE_CLOATH 44
#define DIAL_HELP 45
#define DIAL_BANK 46
#define DIAL_BANK_PRZELEW_ILOSC 47
#define DIAL_BANK_WPLAC 48
#define DIAL_BANK_WYPLAC 49
#define DIAL_BANK_PRZELEW 50
#define DIAL_HELP_SEL 51
#define DIAL_DOOR_OPTIONS 52
#define DIAL_DOOR_SET_ENTER 53
#define DIAL_DOOR_SET_MUZYKA 54
#define DIAL_DOOR_SET_NAME 55
#define DIAL_OFFER 56
#define DIAL_BUS 57
#define DIAL_DOOR_SET_PRZEJAZD 58
#define DIAL_AS 59
#define DIAL_KUP 60
#define DIAL_OPIS 61
#define DIAL_OPIS_SELECT 62
#define DIAL_OPIS_LISTA 63
#define DIAL_OPIS_DELETE 64
#define DIAL_OPIS_CREATE 65
#define DIAL_OPIS_CREATE_2 66
#define DIAL_SET_SPAWN 67
#define DIAL_TUNING 68
#define DIAL_SHOW_GROUPS 69
#define DIAL_ATTACH_MENU 70
#define DIAL_PURCHASE_ATTACH 71
#define DIAL_PURCHASE_LSPD_SPECIALS 72
#define DIAL_GANJA_NIEDOJRZALA 73
#define DIAL_LIST_VEH_ITEMS 74
#define DIAL_VEH_ITEM_SELECTED 75
#define DIAL_SEL_STARTED 76
#define DIAL_MODDING_VEHICLE 77
#define DIAL_SHOW_HOUSE_MENU 78
#define DIAL_HOUSE_INVITES 79
#define DIAL_HOUSE_UNINVITE 80
#define DIAL_HOUSE_LISTING 81
#define DIAL_HOUSE_SELECT_SPAWN 82
#define DIAL_STYLE 83
#define DIAL_CICON 84
#define DIAL_SELECT_WEIGHT 85
#define DIAL_STYLE_STATS 86
#define DIAL_KUP_APTEKA 87
//wersje, kilka ustawieñ
#define VERSION "1.3.8" //wersja skryptu
#define SERVERNAME "mySantos" //nazwa serwera
#define MYBB_TABLE "mysa_members" //tabela uzytkownikow IP.Board
#define REGISTER_IN_GAME 0 // rejestracja InGame
#define KEY_AIM KEY_HANDBRAKE
// limity
#define MAX_PLAYER_ITEMS 50
#define MAX_DROPPED_ITEMS 1000
#define MAX_OBJECTS2 3000
#define MAX_PLAYER_GROUPS 6
#define MAX_ANIMATIONS 200
#define MAX_BANKOMATS 100
#define MAX_PETROLS 100
#define MAX_LOGIN_TRY 3
#define MAX_GROUPS 700
#define MAX_BLOCKADES 10
#define OFFER_TYPE_UNBLOCK 10
#define OFFER_TYPE_PRZEJAZD 11
#define OFFER_TYPE_MONTAZ 12
#define OFFER_TYPE_REPAIR_NON 13
#define OFFER_TYPE_KARNET 14
#define OFFER_TYPE_BITEM 15
#define CAR_DELAY -1
#define CZAS_BW 10
#define PETROL_COST_PER_LITER 2 //dwa dolce za litra benzyny
#define GROUP_TYPE_RUBBISH_UID 58
#define GROUP_TYPE_PIZZA_UID 109
//uprawnienia
#define PERMS_PROGRAMMER 5
#define PERMS_ADMIN 4
#define PERMS_GAMEMASTER 3
#define PERMS_SUPPORT 2
#define PERMS_HELPER 1
#define PEMRS_PLAYER 0
//obiekty przyczepialne
#define SLOT_CUFFS 1
#define SLOT_WEAPON 2
#define SLOT_PHONE 3
#define SLOT_PLAYERONE 4
#define SLOT_PLAYERTWO 5
#define SLOT_CACHE 6
#define SLOT_CHUJWDUPIE 7
#define SLOT_TEST 8
#define SLOT_GYM 9
//kary
#define BLOCK_OOC 1
#define BLOCK_VEHICLES 1
#define BLOCK_CHAR 1
#define BLOCK_BAN 1
// MySQL settings
#define M_HOST ""
#define M_LOGIN ""
#define M_PASS ""
#define M_DB ""
// -- DEFINE ITEMTYPES -- //
#define ITEM_NONE 0 //brak
#define ITEM_WEAPON 1 //broñ
#define ITEM_FOOD 2 //¿arcie
#define ITEM_AMMO 3 //amunicja
#define ITEM_NOTEPAD 4 //notatnik
#define ITEM_PC 5 //komputer (?)
#define ITEM_PHONE 6 //telefon (val1 = numer, val2 = w³/wy³)
#define ITEM_PAPERSHEET 7 //kartka z notatnika
#define ITEM_CLOCK 8 //zegarek
#define ITEM_CASH 9 //kasa
#define ITEM_WINO 10 //picie
#define ITEM_CLOTH 11 //ubranie
#define ITEM_KANISTER 12 //kanister
#define ITEM_MASK 13 //maska
#define ITEM_COMPONENT 14 //czêœci do tuningu auta (value1 = model komponentu)
#define ITEM_KAJDANKI 15 //no kajdanki
#define ITEM_JOINT 16 //joincik
#define ITEM_BLETKA 17 //bletki
#define ITEM_ATTACH 18 //przyczepialne
#define ITEM_DRUG 19 //narkotyki
#define ITEM_STRZYKAWA 20 //strzykawka dla narkusów
#define ITEM_PAPIEROS 21
#define ITEM_SPRUNK 22 //picie ogolnie
#define ITEM_KAMIZELKA 23 //kamizelka kuloodporna
#define ITEM_MEGAFON 24
#define ITEM_PARALIZATOR 25
#define ITEM_CORPSE 30
#define ITEM_TORBA 31
#define ITEM_LAKIER 32
#define ITEM_SEEDS 33
#define ITEM_SPECIALWEAP 34 //no te specjalne bronie
#define ITEM_NARZEDZIA 35
#define ITEM_KARNET 36
#define ITEM_EMPTY_STRZYKAWKA 37
#define ITEM_FLASHBANG 38
#define ITEM_WYTRYCH_DRZWI 39
#define ITEM_SWAT_CAMERA 40
#define ITEM_GLOVES 41
//narkotyki
#define ITEM_MARIHUANA 26
#define ITEM_AMFETAMINA 27
#define ITEM_KOKAINA 28
#define ITEM_LSD 29
// -- GUI COLORS -- //
#define COL_GRAY "{8C8C8C}"
#define COL_GREEN "{00EB00}"
#define COL_USE "{0000FC}" // niebieski
#define COL_WHITE "{FFFFFF}" //bialy
#define COL_GREEN2 "{00F000}"
#define COL_GRAY2 "{C7C7C7}" //szary
#define COL_RED "{FF0000}"
#define COL_SERV "{00B2E7}"
#define COL_SUPPORT "{ABBDEB}"
#define COL_GM "{00BF00}"
#define COL_DUTY "{2E5AA6}"
#define COL_EQ "{5E5EEB}"
#define COL_ORANGE "{FF9900}"
#define SEX_MALE 1
#define SEX_FEMALE 2
#define SPAWN_TYPE_CITY 0
#define SPAWN_TYPE_HOUSE 1
#define SPAWN_TYPE_METRO 3
#define SPAWN_TYPE_IDLEWOOD 4
//logowanie hajsu
#define MONEY_SEND 1
#define MONEY_TAKE 2
#define MONEY_PLAYER_FOR_PLAYER 1
#define MONEY_GROUP_FOR_PLAYER 2
#define MONEY_PLAYER_FOR_GROUP 3
#define SPAWN_IDLE_X 1920.0217
#define SPAWN_IDLE_Y -1763.5162
#define SPAWN_IDLE_Z 13.5391
#define SW_ROTX 94.9
#define SW_ROTY -92
#define SW_ROTZ 0
#define SW_POSX 0.061999
#define SW_BONE 6
new debugMode = 0;
new RunningTime = 0;
new testingMode = 0;
// -- Tablice na graczy/pojazdy/grupy/frakcje -- //
enum playerParams
{
pUID, //unikalny id z bazy
pSID, //samp id
pName[32], //imiê gracza
pGID, //uid globalnego konta
pOnline, //czy jest online
pLogged,
Float:pHealth, //ilosc hp
pMoney, //ilosc kasy
pSkin, //skin
bool:pAFK, //czy jest afk
Float:pX, //posx
Float:pY, //posy
Float:pZ, //posz
Float:pA, //player angle
pBlock,
pBw,
pAj,
blockVehicles,
blockOOC,
blockChar,
pFreeze,
pCuffed, //czy jest skuty
pCuffPlayer, //czy sku³ kogoœ
pPhoneInUse,
pBank, //ile kasy w banku
pWarns, //liczba warnów
pGamescore, //gsy
pWiek, //wiek postaci
pSex, //plec
pBankomat, // czy uzywal bankomat
pBankNR, //numer konta bankowego
pMasked, //czy zamaskowany
pTogW, //czy w³¹czone MSG
pSpectate, //czy specuje
pAdmin,
pHasDowod, //czy ma dowód osobisty
pHasPrawkoA, //motory
pHasPrawkoB, //auto
pHasPrawkoC, //ciezarowe
pHasPrawkoCE, //plus przyczepa i ciezarowe
pHasPrawkoD, //autobus
pCarryPackage, //czy paczke wiezie
pFirstLogin, //póki co nieu¿ywane
pWorld,
pInterior,
pSpawnType,
Float:pCondition, //kondycja gracza
Float:maxCondition,
pSeconds,
pVehMask,
pPremium, //czy ma on konto premium
pGMCars,
pGMDoors,
pGMGroups,
pGMItems,
Float:pPower,
fightingStyle,
pSpecPossible,
Float:pShootskill,
}
new pInfo[MAX_PLAYERS][playerParams];
enum binfo
{
bkUID,
Float:bkX,
Float:bkY,
Float:bkZ,
Float:bkVW,
}
new bankomat[MAX_BANKOMATS][binfo];
enum pinfo
{
pUID,
Float:peX,
Float:peY,
Float:peZ,
peVW,
}
new petrol[MAX_PETROLS][pinfo];
enum sAnimData
{
aUID,
aCommand[12],
aLib[16],
aName[24],
Float:aSpeed,
aOpt1,
aOpt2,
aOpt3,
aOpt4,
aOpt5,
aAction
}
new AnimInfo[MAX_ANIMATIONS][sAnimData];
enum pgpars
{
pGuid,
pCharuid,
pRank[32],
pPayday,
pSkin,
pPerms[32],
pDutytime,
pGname[32],
permDoors,
permLeader,
permVehicles,
permOoc,
permOffers,
permZamawianie,
}
new pGrupa[MAX_PLAYERS][MAX_PLAYER_GROUPS][pgpars];
enum gpars
{
Guid,
Gname[64],
Gtype,
Gmoney,
Gcolor,
Gtag[6],
}
new grupa[MAX_GROUPS][gpars];
enum itemParams
{
iUID,
iOwner,
iName[64],
iValue1,
iValue2,
iType,
Float:iX,
Float:iY,
Float:iZ,
iObject,
iWhereis,
iUsed,
iWorldid,
}
new itemInfo[MAX_PLAYERS][MAX_PLAYER_ITEMS][itemParams];
enum pcache
{
Float:pCX,
Float:pCY,
Float:pCZ,
bool:pPlayAnim,
playerUnmask[MAX_PLAYER_NAME],
Float:pSpecX,
Float:pSpecY,
Float:pSpecZ,
pSpecClose,
pSpecVW,
bool:pSelSkin,
pWeaponID, //id broni
pWeaponAmmo, //ammo tej borni
Float:pDeadX,
Float:pDeadY,
Float:pDeadZ,
pHasParalyzer,
pAudioHandle,
pEditLabel,
pHasInterview, //czy koleœ jest teraz w wywiadzie
pRepairCar,
pStringVal[128], //pomocnicza wartoϾ string
pHasLakier,
pVehCheckpoint,
pColourCar, //czy maluje auto
pEnterDoors,
bool:pAfk,
bool:pLakieruje,
lakierTicks,
lastLakierTick,
pIPChecked,
pZP, //zapiete pasy
pMetersRide,
bool:pTaxed,
Float:takX,
Float:takY,
Float:takZ,
pTaxedDriver,
pTaxedPrice,
pRubbishDrive,
bool:pRubbishCheckpoint,
pMaskedNumbers,
pGroupListPage,
pSelectedAttachment,
pEditAttachment,
pBuyAttach,
pSelAttach,
pSelPlant,
pHited,
pShootedWeapon,
pShootedUID,
pShootedType,
pCacheAccess,
pSelStarted,
pHasSpecialWeapon, //specjalna bron
pSpecialWeaponDamage,
pSelectedLokator,
pSelectedHouse,
pArea,
pTrain,
pTrainTime,
pGymFaza,
pGymType,
pGymVal1,
pGymVal2,
Float:pGymPowerPerTick,
pGymHantleType,
pKarnet,
pKarnetTime,
pKarnetBiznes,
pDoorsDuty,
pPizzaTicks,
pOnlineSec,
Float:pBonusPower,
pUseSWATCam,
pGPS,
pGPSCP,
pGloves,
pHidden,
pCornered,
pCornerID,
pCornerTime,
}
new PlayerCache[MAX_PLAYERS][pcache];
enum p_pars
{
attachmentItemUid,
}
new PlayerAttachment[2][p_pars];
enum sVehicleData
{
vModel,
vName[32],
vMaxSpeed,
vPrice,
vFuel,
}
new VehicleData[212][sVehicleData] = {
{
400, "Landstalker", 140, 12000, 90
}, {
401, "Bravura", 131, 6700, 60
}, {
402, "Buffalo", 166, 85000, 70
}, {
403, "Linerunner", 98, 45000, 190
}, {
404, "Pereniel", 118, 4100, 50
}, {
405, "Sentinel", 146, 26000, 70
}, {
406, "Dumper", 98, 50000, 290
}, {
407, "Firetruck", 132, 50000, 300
}, {
408, "Trashmaster", 89, 50000, 300
}, {
409, "Stretch", 140, 67000, 100
}, {
410, "Manana", 115, 3700, 40
}, {
411, "Infernus", 197, 400000, 90
}, {
412, "Voodoo", 150, 14000, 60
}, {
413, "Pony", 98, 9400, 120
}, {
414, "Mule", 94, 17000, 210
}, {
415, "Cheetah", 171, 350000, 70
}, {
416, "Ambulance", 137, 50000, 130
}, {
417, "Leviathan", 399, 1000000, 300
}, {
418, "Moonbeam", 103, 5400, 100
}, {
419, "Esperanto", 133, 4700, 60
}, {
420, "Taxi", 129, 21000, 100
}, {
421, "Washington", 137, 100000, 90
}, {
422, "Bobcat", 124, 6800, 85
}, {
423, "Mr Whoopee", 88, 45000, 100
}, {
424, "BF Injection", 120, 34000, 40
}, {
425, "Hunter", 399, 1000000, 300
}, {
426, "Premier", 154, 25000, 90
}, {
427, "Enforcer", 147, 1000000, 100
}, {
428, "Securicar", 139, 65000, 200
}, {
429, "Banshee", 179, 210000, 75
}, {
430, "Predator", 399, 1000000, 100
}, {
431, "Bus", 116, 60000, 200
}, {
432, "Rhino", 84, 2000000, 400
}, {
433, "Barracks", 98, 200000, 210
}, {
434, "Hotknife", 148, 100000, 90
}, {
435, "Trailer", 0, 0, 0
}, {
436, "Previon", 133, 3200, 50
}, {
437, "Coach", 140, 55000, 290
}, {
438, "Cabbie", 127, 19000, 90
}, {
439, "Stallion", 150, 12000, 60
}, {
440, "Rumpo", 121, 4900, 100
}, {
441, "RC Bandit", 67, 0, 0
}, {
442, "Romero", 124, 43000, 90
}, {
443, "Packer", 112, 67000, 190
}, {
444, "Monster Truck A", 98, 0, 290
}, {
445, "Admiral", 146, 14000, 70
}, {
446, "Squalo", 399, 190000, 200
}, {
447, "Seasparrow", 399, 430000, 200
}, {
448, "Pizzaboy", 162, 1200, 9
}, {
449, "Tram", 399, 0, 0
}, {
450, "Trailer", 399, 0, 0
}, {
451, "Turismo", 172, 1000000, 90
}, {
452, "Speeder", 399, 230000, 200
}, {
453, "Reefer", 399, 21000, 200
}, {
454, "Tropic", 399, 94000, 200
}, {
455, "Flatbed", 140, 60000, 200
}, {
456, "Yankee", 94, 23000, 190
}, {
457, "Caddy", 84, 9000, 20
}, {
458, "Solair", 140, 7300, 50
}, {
459, "Berkley's RC Van", 121, 0, 0
}, {
460, "Skimmer", 399, 34000, 200
}, {
461, "PCJ-600", 180, 16000, 30
}, {
462, "Faggio", 155, 900, 7
}, {
463, "Freeway", 180, 8400, 25
}, {
464, "RC Baron", 399, 0, 0
}, {
465, "RC Raider", 399, 0, 0
}, {
466, "Glendale", 131, 5100, 45
}, {
467, "Oceanic", 125, 8100, 60
}, {
468, "Sanchez", 164, 10000, 40
}, {
469, "Sparrow", 399, 275000, 200
}, {
470, "Patriot", 139, 1000000, 200
}, {
471, "Quad", 98, 6500, 30
}, {
472, "Coastguard", 399, 430000, 200
}, {
473, "Dinghy", 399, 3100, 20
}, {
474, "Hermes", 133, 9000, 60
}, {
475, "Sabre", 154, 14500, 70
}, {
476, "Rustler", 399, 90000, 200
}, {
477, "ZR-350", 166, 65000, 100
}, {
478, "Walton", 105, 4300, 90
}, {
479, "Regina", 124, 5100, 80
}, {
480, "Comet", 164, 210000, 95
}, {
481, "BMX", 86, 600, 0
}, {
482, "Burrito", 139, 8500, 120
}, {
483, "Camper", 109, 3200, 70
}, {
484, "Marquis", 399, 340000, 200
}, {
485, "Baggage", 88, 40000, 20
}, {
486, "Dozer", 56, 200000, 200
}, {
487, "Maverick", 399, 150000, 200
}, {
488, "News Chopper", 399, 70000, 100
}, {
489, "Rancher", 124, 14000, 80
}, {
490, "FBI Rancher", 139, 500000, 100
}, {
491, "Virgo", 132, 9600, 90
}, {
492, "Greenwood", 125, 4900, 40
}, {
493, "Jetmax", 399, 1000000, 200
}, {
494, "Hotring", 191, 0, 100
}, {
495, "Sandking", 157, 0, 120
}, {
496, "Blista Compact", 145, 7200, 60
}, {
497, "Police Maverick", 399, 0, 200
}, {
498, "Boxville", 96, 5400, 120
}, {
499, "Benson", 109, 16700, 100
}, {
500, "Mesa", 125, 16000, 80
}, {
501, "RC Goblin", 399, 0, 0
}, {
502, "Hotring Racer", 191, 0, 100
}, {
503, "Hotring Racer", 191, 0, 100
}, {
504, "Bloodring Banger", 154, 0, 100
}, {
505, "Rancher", 124, 12000, 120
}, {
506, "Super GT", 159, 250000, 80
}, {
507, "Elegant", 148, 21000, 70
}, {
508, "Journey", 96, 23000, 100
}, {
509, "Bike", 93, 250, 0
}, {
510, "Mountain Bike", 117, 350, 0
}, {
511, "Beagle", 399, 240000, 200
}, {
512, "Cropdust", 399, 78000, 200
}, {
513, "Stunt", 399, 340000, 200
}, {
514, "Tanker", 107, 120000, 200
}, {
515, "RoadTrain", 126, 240000, 250
}, {
516, "Nebula", 140, 13400, 70
}, {
517, "Majestic", 140, 8400, 70
}, {
518, "Buccaneer", 146, 8100, 55
}, {
519, "Shamal", 399, 320000, 200
}, {
520, "Hydra", 399, 1000000, 200
}, {
521, "FCR-900", 190, 24500, 60
}, {
522, "NRG-500", 200, 34500, 55
}, {
523, "HPV1000", 172, 0, 45
}, {
524, "Cement Truck", 116, 0, 120
}, {
525, "Tow Truck", 143, 18500, 145
}, {
526, "Fortune", 140, 6800, 50
}, {
527, "Cadrona", 133, 8600, 60
}, {
528, "FBI Truck", 157, 0, 120
}, {
529, "Willard", 133, 22500, 90
}, {
530, "Forklift", 54, 0, 20
}, {
531, "Tractor", 62, 12000, 140
}, {
532, "Combine", 98, 0, 290
}, {
533, "Feltzer", 148, 56000, 110
}, {
534, "Remington", 150, 16500, 60
}, {
535, "Slamvan", 140, 23000, 50
}, {
536, "Blade", 154, 14500, 60
}, {
537, "Freight", 399, 0, 120
}, {
538, "Streak", 399, 0, 120
}, {
539, "Vortex", 89, 0, 60
}, {
540, "Vincent", 136, 15600, 75
}, {
541, "Bullet", 180, 260000, 80
}, {
542, "Clover", 146, 3400, 40
}, {
543, "Sadler", 134, 6400, 45
}, {
544, "Firetruck", 132, 50000, 120
}, {
545, "Hustler", 131, 14300, 60
}, {
546, "Intruder", 133, 19500, 70
}, {
547, "Primo", 127, 5600, 85
}, {
548, "Cargobob", 399, 0, 200
}, {
549, "Tampa", 136, 4100, 50
}, {
550, "Sunrise", 128, 24300, 100
}, {
551, "Merit", 140, 31400, 85
}, {
552, "Utility", 108, 12300, 100
}, {
553, "Nevada", 399, 125000, 200
}, {
554, "Yosemite", 128, 12300, 120
}, {
555, "Windsor", 141, 95000, 75
}, {
556, "Monster Truck B", 98, 0, 100
}, {
557, "Monster Truck C", 98, 0, 100
}, {
558, "Uranus", 170, 29000, 80
}, {
559, "Jester", 158, 210000, 80
}, {
560, "Sultan", 150, 140000, 100
}, {
561, "Stratum", 137, 12300, 70
}, {
562, "Elegy", 158, 190000, 80
}, {
563, "Raindance", 399, 0, 200
}, {
564, "RC Tiger", 79, 0, 0
}, {
565, "Flash", 146, 24000, 80
}, {
566, "Tahoma", 142, 9100, 75
}, {
567, "Savanna", 154, 14500, 100
}, {
568, "Bandito", 130, 34500, 120
}, {
569, "Freight", 399, 0, 100
}, {
570, "Trailer", 399, 0, 100
}, {
571, "Kart", 83, 45000, 25
}, {
572, "Mower", 54, 2100, 10
}, {
573, "Duneride", 98, 45000, 210
}, {
574, "Sweeper", 53, 21000, 20
}, {
575, "Broadway", 140, 100000, 80
}, {
576, "Tornado", 140, 14500, 70
}, {
577, "AT-400", 399, 1000000, 200
}, {
578, "DFT-30", 116, 26500, 120
}, {
589, "Huntley", 140, 41000, 140
}, {
580, "Stafford", 136, 53000, 80
}, {
581, "BF-400", 170, 6500, 20
}, {
582, "Newsvan", 121, 54000, 190
}, {
583, "Tug", 76, 34000, 30
}, {
584, "Trailer", 399, 0, 0
}, {
585, "Emperor", 136, 18500, 85
}, {
586, "Wayfarer", 175, 13900, 40
}, {
587, "Euros", 147, 27000, 75
}, {
588, "Hotdog", 96, 11000, 100
}, {
589, "Club", 145, 10500, 55
}, {
590, "Trailer", 399, 0, 0
}, {
591, "Trailer", 399, 0, 0
}, {
592, "Andromada", 399, 0, 200
}, {
593, "Dodo", 399, 56000, 200
}, {
594, "RC Cam", 54, 0, 0
}, {
595, "Launch", 399, 0, 200
}, {
596, "Police Car", 156, 0, 100
}, {
597, "Police Car", 156, 0, 100
}, {
598, "Police Car", 156, 0, 100
}, {
599, "Police Ranger", 140, 0, 100
}, {
600, "Picador", 134, 9100, 60
}, {
601, "S.W.A.T. Van", 98, 0, 250
}, {
602, "Alpha", 150, 28000, 90
}, {
603, "Phoenix", 152, 24000, 70
}, {
604, "Glendale", 131, 0, 100
}, {
605, "Sadler", 134, 0, 100