forked from ItsikNox/FiveM-Arkadia_
-
Notifications
You must be signed in to change notification settings - Fork 0
/
essentialmodeENGLISH.sql
2268 lines (2033 loc) · 150 KB
/
essentialmodeENGLISH.sql
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
-- phpMyAdmin SQL Dump
-- version 4.8.5
-- https://www.phpmyadmin.net/
--
-- Hôte : 127.0.0.1:3306
-- Généré le : Dim 25 août 2019 à 05:14
-- Version du serveur : 5.7.26
-- Version de PHP : 7.2.18
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET AUTOCOMMIT = 0;
START TRANSACTION;
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Base de données : `essentialmode`
--
-- --------------------------------------------------------
--
-- Structure de la table `addon_account`
--
DROP TABLE IF EXISTS `addon_account`;
CREATE TABLE IF NOT EXISTS `addon_account` (
`name` varchar(60) NOT NULL,
`label` varchar(255) NOT NULL,
`shared` int(11) NOT NULL,
PRIMARY KEY (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Déchargement des données de la table `addon_account`
--
INSERT INTO `addon_account` (`name`, `label`, `shared`) VALUES
('bank_savings', 'Blue Booklet', 0),
('caution', 'Caution', 0),
('property_black_money', 'Money Sale Property', 0),
('society_aircraftdealer', 'Airliner', 1),
('society_ambulance', 'Ambulance', 1),
('society_ammu', 'Ammunition', 1),
('society_avocat', 'Lawyer', 1),
('society_bahama', 'Bahama Mas', 1),
('society_baladins', 'baladins', 1),
('society_ballas', 'Ballas', 1),
('society_ballas_black', 'ballas black', 1),
('society_banker', 'Bank', 1),
('society_boatdealer', 'Marina', 1),
('society_bratva', 'Bratva', 1),
('society_bratva_black', 'bratva black', 1),
('society_cardealer', 'Car Dealer', 1),
('society_cartel', 'Cartel', 1),
('society_casino', 'Casino', 1),
('society_dock', 'Marina', 1),
('society_famillies', 'Famillies', 1),
('society_famillies_black', 'famillies black', 1),
('society_fib', 'Fib', 1),
('society_fueler', 'Refiner', 1),
('society_illegal', 'Illegal', 1),
('society_illegal_black', 'illegal black', 1),
('society_immo', 'Real Estate', 1),
('society_journaliste', 'journalist', 1),
('society_kano', 'Kano', 1),
('society_kano_black', 'kano black', 1),
('society_lazone', 'lazone', 1),
('society_lazone_black', 'lazone black', 1),
('society_mafia', 'Mafia', 1),
('society_mecano', 'Mécano', 1),
('society_mercenaire', 'mercenary', 1),
('society_mercenaire_black', 'mercenaire black', 1),
('society_ms13', 'ms13', 1),
('society_ms13_black', 'ms13 black', 1),
('society_pecheur', 'Fisherman', 1),
('society_podolskaia', 'podolskaia', 1),
('society_podolskaia_black', 'podolskaia black', 1),
('society_police', 'Police', 1),
('society_pompiste', 'Pumpist', 1),
('society_realestateagent', 'Real estate agent', 1),
('society_securoserv', 'SecuroServ', 1),
('society_state', 'State', 1),
('society_syndicat', 'syndicat', 1),
('society_syndicat_black', 'syndicat black', 1),
('society_tabac', 'Tobacco', 1),
('society_taxi', 'Taxi', 1),
('society_unicorn', 'Unicorn', 1),
('society_vagos', 'Vagos', 1),
('society_vagos_black', 'vagos black', 1),
('society_vigne', 'Winegrower', 1);
-- --------------------------------------------------------
--
-- Structure de la table `user_inventory`
--
DROP TABLE IF EXISTS `user_inventory`;
CREATE TABLE IF NOT EXISTS `user_inventory` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`identifier` varchar(255) NOT NULL,
`item` varchar(255) NOT NULL,
`count` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=186292 DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Structure de la table `addon_account_data`
--
DROP TABLE IF EXISTS `addon_account_data`;
CREATE TABLE IF NOT EXISTS `addon_account_data` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`account_name` varchar(255) DEFAULT NULL,
`money` double NOT NULL,
`owner` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1358 DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Structure de la table `addon_inventory`
--
DROP TABLE IF EXISTS `addon_inventory`;
CREATE TABLE IF NOT EXISTS `addon_inventory` (
`name` varchar(60) NOT NULL,
`label` varchar(255) NOT NULL,
`shared` int(11) NOT NULL,
PRIMARY KEY (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Déchargement des données de la table `addon_inventory`
--
INSERT INTO `addon_inventory` (`name`, `label`, `shared`) VALUES
('organisation_biker', 'Biker', 1),
('organisation_cartel', 'Cartel', 1),
('organisation_gang', 'Gang', 1),
('organisation_mafia', 'Mafia', 1),
('property', 'Propriété', 0),
('society_aircraftdealer', 'Airliner', 1),
('society_ambulance', 'Ambulance', 1),
('society_ammu', 'Ammu', 1),
('society_avocat', 'Avocat', 1),
('society_bahama', 'Bahama Mas', 1),
('society_bahama_fridge', 'bahama (frigo)', 1),
('society_ballas', 'Ballas', 1),
('society_boatdealer', 'Marina', 1),
('society_bratva', 'Bratva', 1),
('society_cardealer', 'Concesionnaire', 1),
('society_casino', 'Casino', 1),
('society_casino_fridge', 'Casino (Frigo)', 1),
('society_dock', 'Marina', 1),
('society_famillies', 'Famillies', 1),
('society_fib', 'Fib', 1),
('society_fueler', 'Raffineur', 1),
('society_fueler1', 'Gold Luxuary', 1),
('society_illegal', 'Illegal', 1),
('society_immo', 'Immo', 1),
('society_journaliste', 'journaliste', 1),
('society_kano', 'Kano', 1),
('society_lazone', 'lazone', 1),
('society_mecano', 'Mécano', 1),
('society_mercenaire', 'mercenaire', 1),
('society_moto', 'Moto', 1),
('society_moto_fridge', 'Moto (fridge)', 1),
('society_ms13', 'ms13', 1),
('society_orjob', 'Gold Luxury', 1),
('society_pecheur', 'Pecheur', 1),
('society_podolskaia', 'podolskaia', 1),
('society_police', 'Police', 1),
('society_police1', 'PoliceInv', 1),
('society_pompiste', 'Pompiste', 1),
('society_securoserv', 'SecuroServ', 1),
('society_state', 'State', 1),
('society_syndicat', 'syndicat', 1),
('society_tabac', 'Tabac', 1),
('society_taxi', 'Taxi', 1),
('society_unicorn', 'Unicorn', 1),
('society_unicorn_fridge', 'Unicorn (frigo)', 1),
('society_vagos', 'Vagos', 1),
('society_vigne', 'Vigneron', 1);
-- --------------------------------------------------------
--
-- Structure de la table `addon_inventory_items`
--
DROP TABLE IF EXISTS `addon_inventory_items`;
CREATE TABLE IF NOT EXISTS `addon_inventory_items` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`inventory_name` varchar(255) NOT NULL,
`name` varchar(255) NOT NULL,
`count` int(11) NOT NULL,
`owner` varchar(60) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=202 DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Structure de la table `aircraftdealer_aircrafts`
--
DROP TABLE IF EXISTS `aircraftdealer_aircrafts`;
CREATE TABLE IF NOT EXISTS `aircraftdealer_aircrafts` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`vehicle` varchar(255) NOT NULL,
`price` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Structure de la table `aircrafts`
--
DROP TABLE IF EXISTS `aircrafts`;
CREATE TABLE IF NOT EXISTS `aircrafts` (
`name` varchar(60) NOT NULL,
`model` varchar(60) NOT NULL,
`price` int(11) NOT NULL,
`category` varchar(60) DEFAULT NULL,
PRIMARY KEY (`model`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Déchargement des données de la table `aircrafts`
--
INSERT INTO `aircrafts` (`name`, `model`, `price`, `category`) VALUES
('Alpha Z1', 'alphaz1', 1121000, 'plane'),
('Besra', 'besra', 1000000, 'plane'),
('Cuban 800', 'cuban800', 240000, 'plane'),
('Dodo', 'dodo', 500000, 'plane'),
('Duster', 'duster', 175000, 'plane'),
('Howard NX25', 'howard', 975000, 'plane'),
('Luxor', 'luxor', 1500000, 'plane'),
('Luxor Deluxe ', 'luxor2', 1750000, 'plane'),
('Mallard', 'stunt', 250000, 'plane'),
('Mammatus', 'mammatus', 300000, 'plane'),
('Nimbus', 'nimbus', 900000, 'plane'),
('Rogue', 'rogue', 1000000, 'plane'),
('Sea Breeze', 'seabreeze', 850000, 'plane'),
('Shamal', 'shamal', 1150000, 'plane'),
('Ultra Light', 'microlight', 50000, 'plane'),
('Velum', 'velum2', 450000, 'plane'),
('Vestra', 'vestra', 950000, 'plane'),
('Buzzard', 'buzzard2', 500000, 'heli'),
('Frogger', 'frogger', 800000, 'heli'),
('Havok', 'havok', 250000, 'heli'),
('Maverick', 'maverick', 750000, 'heli'),
('Sea Sparrow', 'seasparrow', 815000, 'heli'),
('SuperVolito', 'supervolito', 1000000, 'heli'),
('SuperVolito Carbon', 'supervolito2', 1250000, 'heli'),
('Swift', 'swift', 1000000, 'heli'),
('Swift Deluxe', 'swift2', 1250000, 'heli'),
('Volatus', 'volatus', 1250000, 'heli');
-- --------------------------------------------------------
--
-- Structure de la table `aircraft_categories`
--
DROP TABLE IF EXISTS `aircraft_categories`;
CREATE TABLE IF NOT EXISTS `aircraft_categories` (
`name` varchar(60) NOT NULL,
`label` varchar(60) NOT NULL,
PRIMARY KEY (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Déchargement des données de la table `aircraft_categories`
--
INSERT INTO `aircraft_categories` (`name`, `label`) VALUES
('plane', 'Planes'),
('heli', 'Helicopters');
-- --------------------------------------------------------
--
-- Structure de la table `baninfo`
--
DROP TABLE IF EXISTS `baninfo`;
CREATE TABLE IF NOT EXISTS `baninfo` (
`id` int(11) AUTO_INCREMENT PRIMARY KEY,
`identifier` varchar(25) COLLATE utf8mb4_bin DEFAULT "no info",
`license` varchar(50) COLLATE utf8mb4_bin DEFAULT "no info",
`liveid` varchar(21) COLLATE utf8mb4_bin DEFAULT "no info",
`xblid` varchar(21) COLLATE utf8mb4_bin DEFAULT "no info",
`discord` varchar(30) COLLATE utf8mb4_bin DEFAULT "no info",
`playerip` varchar(25) COLLATE utf8mb4_bin DEFAULT "0.0.0.0",
`playername` varchar(32) COLLATE utf8mb4_bin DEFAULT "no info"
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;
-- --------------------------------------------------------
--
-- Structure de la table `banlist`
--
DROP TABLE IF EXISTS `banlist`;
CREATE TABLE IF NOT EXISTS `banlist` (
`identifier` varchar(25) COLLATE utf8mb4_bin NOT NULL,
`license` varchar(50) COLLATE utf8mb4_bin DEFAULT NULL,
`liveid` varchar(21) COLLATE utf8mb4_bin DEFAULT NULL,
`xblid` varchar(21) COLLATE utf8mb4_bin DEFAULT NULL,
`discord` varchar(30) COLLATE utf8mb4_bin DEFAULT NULL,
`playerip` varchar(25) COLLATE utf8mb4_bin DEFAULT NULL,
`targetplayername` varchar(32) COLLATE utf8mb4_bin NOT NULL,
`sourceplayername` varchar(32) COLLATE utf8mb4_bin NOT NULL,
`reason` varchar(255) COLLATE utf8mb4_bin NOT NULL,
`timeat` varchar(50) COLLATE utf8mb4_bin NOT NULL,
`expiration` varchar(50) COLLATE utf8mb4_bin NOT NULL,
`permanent` int(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`identifier`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;
--
-- Déchargement des données de la table `banlist`
--
INSERT INTO `banlist` (`identifier`, `license`, `liveid`, `xblid`, `discord`, `playerip`, `targetplayername`, `sourceplayername`, `reason`, `timeat`, `expiration`, `permanent`) VALUES
('steam:110000100323296', 'license:d22677419f809727794f58680a4cbc4f312f5d15', 'live:1688853572556516', 'xbl:2535455422493239', 'discord:227769977422217227', 'ip:51.218.145.132', 'Dam3', 'Amado Fuentes', 'moddeur', '1565964336', '1565964336', 1),
('steam:110000101008562', 'license:4ed8cc4c9877b5cfb1b4f6eef37e318a8b792fb7', 'live:844425395042511', 'xbl:2535461661145791', 'discord:484015958189539329', 'ip:86.199.242.6', 'Abdoule Lamoule', 'Amado Fuentes', 'moddeur casse toi petite salope', '1567370029', '1567370029', 1),
('steam:110000101608b6d', 'license:95ef8d178cb2f55544d1bdbf7cba523f57a411a1', 'live:844425140056797', 'no info', 'discord:223808892709109760', 'ip:109.134.5.218', 'Evan Williams', 'Jonhson William', 'hack', '1567299423', '1567904223', 0),
('steam:11000010181ef0f', 'license:94af24445d6224ed9889fc7705e0a5df3b871fa9', 'live:1055521282101281', 'no info', 'discord:385848108422135812', 'ip:93.26.193.112', 'Earl Hickey', 'Amado Fuentes', 'moddeur', '1567616373', '1567616373', 1),
('steam:110000102435f91', 'license:fd27d96d33fff8a4822c5f4e8fce67e689f467fd', 'no info', 'no info', 'discord:441586899514163210', 'ip:88.182.143.206', 'Mikhail Bojianowski', 'Enzo Alvs', 'Moddeur', '1568991263', '1600095263', 0),
('steam:11000010348a122', 'license:c97d4d4c3dd7873a7b5e5a41ad91ab085da1c629', 'no info', 'no info', 'discord:432958881468121099', 'ip:90.89.192.134', 'Loan Shelby', 'Enzo Alvs', 'Moddeur', '1568912018', '1568912018', 1),
('steam:110000103b337fd', 'license:7bd0457b765ae7a5a748a39378d9bcecd8f8c64f', 'live:1899945728490862', 'xbl:2533274857608059', 'discord:283328594569068545', 'ip:2.15.82.164', 'Sami Gercant', 'Enzo Alvs', 'Moddeur', '1567535550', '1598639550', 0),
('steam:110000105c280b3', 'license:5aa036fbbccfca646c4b6df106fbd1edd2c2d85f', NULL, NULL, NULL, NULL, 'James Carter', 'Amado Fuentes', 'moddeur', '1566343410', '1566343410', 1),
('steam:110000105c79b08', 'license:350221f28469136c2d421e8c1bf248ec2c2be4f6', 'live:985154241713575', 'xbl:2535464010629983', 'discord:453893431622631425', 'ip:90.22.5.103', 'Mathieu Gamelin', 'Bobby Shaaw', 'cheater', '1567607259', '1598711259', 0),
('steam:110000106c8aabb', 'license:8485555f62d311e5fcd42c35725b7ba142673d7a', 'live:1055521797368919', 'xbl:2535419423906355', 'discord:252101992900460544', 'ip:176.185.244.227', 'Michel Blanc', 'Amado Fuentes', 'Give arme', '1567027116', '1567027116', 1),
('steam:110000108075f39', 'license:0db803ffac547a1a8a4582ab80bd175f13fe1ea4', 'live:1829578912287937', 'no info', 'discord:188709331426869248', 'ip:212.195.105.80', 'Jhonny Binks', 'Bob Marlouf', 'Moddeur', '1568982128', '1568982128', 1),
('steam:11000010814f456', 'license:345efc7bf31dddcabf32135cfc32f533c351230a', 'no info', 'no info', 'discord:261536921174409216', 'ip:37.172.33.197', 'Jean-Bernard', 'Enzo Alvs', 'Moddeur', '1568991271', '1600095271', 0),
('steam:1100001093097d2', 'license:20afa6b4df3535d86a7868f718c673fabf228622', 'no info', 'no info', 'discord:132999001007063040', 'ip:2.6.134.27', 'Isaac Roth', 'MisterSmoke [LH]', 'freekill + cheat', '1566416873', '1597520873', 0),
('steam:110000109b77374', 'license:2d02d7129816c5b40ca8f1c13a2385e91a480798', 'no info', 'no info', 'discord:260468471857414145', 'ip:82.241.102.31', 'Abou Mbalabolo', 'Amado Fuentes', 'Give arme', '1567027115', '1567027115', 1),
('steam:11000010aee97e7', 'license:ed33400d8723a9ef64a9ef8f4d157e25aa583bfb', 'live:1899947122937641', 'xbl:2535436903463036', 'discord:356991224470568962', 'ip:81.49.25.84', 'Khali Escobar', 'Amado Fuentes', 'Moddeur : question? : https://discord.gg/axqfbG8', '1567216782', '1598320782', 0),
('steam:11000010b57c645', 'license:896379634e1410e2f6f74fd825fc034d8a620bf0', 'live:985156581932389', 'xbl:2533274936424496', 'discord:300652432432693268', 'ip:176.174.44.249', 'Hugo Lliorace', 'Enzo Alvs', 'Moddeur', '1567628190', '1567628190', 1),
('steam:11000010bca0fc2', 'license:bb7d914c214dfec07f7cfdc47b2668cbc21c357a', 'live:914801204867036', 'xbl:2535406864098219', 'discord:257968549065261056', 'ip:86.227.133.97', 'Brisco Ralam', 'Enzo Alvs', 'Moddeur Anonymous ?', '1567871756', '1567871756', 1),
('steam:11000010be3802b', 'license:174ca8517e7381494050bb5cb7f73dbe442a5b05', 'no info', 'no info', 'discord:183968006567755776', 'ip:93.22.205.28', 'Grégoire Mckynley', 'Amado Fuentes', 'Cheat', '1566007334', '1566007334', 1),
('steam:11000010c797e2c', 'license:2155dcfd5c2a8c05b888f9a169d913fa2ae1fa93', 'live:1829582643328872', 'xbl:2535456652992963', 'discord:441641368335548416', 'ip:82.64.120.6', 'Corentin Holite [Azmoco]', 'Bobby Shaaw', 'Moddeur', '1567803951', '1567803951', 1),
('steam:11000010cc31d6e', 'license:5848ea53788a65cb9910fd2590588d30bea8f7db', 'no info', 'no info', 'discord:304899342748090369', 'ip:93.28.12.26', 'Bilou Kurt', 'Salvatore Luccio', 'freekill moddeur', '1566393852', '1566393852', 1),
('steam:11000010df4524a', 'license:63c386187c5b4ccc5d4bac32caa4a6725c42075f', 'no info', 'no info', 'discord:286850101207367693', 'ip:81.248.0.185', 'Eiden Covaliski', 'YANIS LIOTTA', 'Modeur', '1565824117', '1565824117', 1),
('steam:11000010e281d6b', 'license:c281eeacaf5de46f304591799c51e6fae28dda99', 'no info', 'no info', 'discord:308583811468361729', 'ip:85.171.247.163', 'Mamadou Libali', 'Bobby Shaaw', 'moddeur', '1568056493', '1599160493', 0),
('steam:11000010e4c6a2d', 'license:1186b6ea3d85a0cc5caf56e74f0708113fe48477', 'live:1055518301424126', 'xbl:2535465689720214', 'discord:214865888510345217', 'ip:93.16.124.103', 'Ahhhhh', 'Enzo White', 'Moddeur', '1568236892', '1599340892', 0),
('steam:11000010ee91287', 'license:81d817f5311d9242bfb5fef7212f5b0d258295e3', 'live:985157026284549', 'xbl:2535411379519460', 'discord:340247124925087744', 'ip:86.249.28.196', 'Abdou lacisa', 'Bobby Shaaw', 'cheat', '1567359067', '1598463067', 0),
('steam:11000010f4ed8bc', 'license:26a217c87c838520eab25d2cf01e933f090cda5c', 'live:844428431206631', 'xbl:2535430088125097', 'no info', 'ip:83.159.82.241', 'Mathieu Pomme', 'Amado Fuentes', 'give arme', '1567628669', '1598732669', 0),
('steam:110000110cca6ec', 'license:303f9bb7f10ffb0a809c612e8ca55b876f2513de', 'live:1055521378947500', 'xbl:2535438285909455', 'discord:192302011805335552', 'ip:87.66.160.15', 'Jack Oligaro', 'Amado Fuentes', 'Moddeur', '1567195438', '1598299438', 0),
('steam:1100001119d6adf', 'license:8065e48d3014877b6a988b0c276b574468b00dd6', 'no info', 'no info', 'discord:458661855074713640', 'ip:83.202.159.172', 'Zack Sheraton', 'Enzo Alvs', 'Moddeur', '1568145287', '1599249287', 0),
('steam:110000111a5bf6e', 'license:08a84c6b0beee20f9b6776b234dbf5adb7997afd', 'live:985157375820678', 'xbl:2535441276965319', 'discord:311515471361081355', 'ip:78.126.245.234', '! 🆃🅸🅴🅶🅾', 'Jonhson William', 'hack spawn voiture', '1567299623', '1567904423', 0),
('steam:110000111de91af', 'license:0d4bf791f80251c3c4c89faa3b2910d823a01d92', 'no info', 'no info', 'discord:282252317271523330', 'ip:93.22.251.144', 'Jhonny Dubled', 'Jonhson William', 'Free kill hack', '1567299508', '1567904308', 0),
('steam:110000112a15f52', 'license:7430a76cae892d52554bfcca85590f9df4e5a1a7', 'no info', 'no info', 'discord:298243342087618560', 'ip:78.241.192.14', 'Jorge Gomez', 'William Calaway', 'Achète véhicule d\'occasion à 1$ (cheat)', '1568460779', '1569065579', 0),
('steam:110000112c74d5b', 'license:ce0637c84fa2b122c0239d20cb4bfc8a71882f17', 'live:844428540253349', 'xbl:2535411781163804', 'no info', 'ip:176.184.100.188', 'Antho Veratti', 'Enzo Alvs', 'Se téléporte partout sur la map (Moddeur)', '1567873116', '1567873116', 1),
('steam:110000112d8c41f', 'license:0f05730ad2bdd4085246bcf9aa90dff4646c5b63', 'live:985154121472331', 'no info', 'discord:229585707214045187', 'ip:176.142.116.79', 'Pedro Mongrool', 'Enzo White', 'Moddeur', '1568236887', '1599340887', 0),
('steam:1100001135a0c09', 'license:a6be5eb5843a114c1a66a8c5796b52ee94c920e7', 'no info', 'no info', 'discord:320483178735337474', 'ip:88.181.253.131', 'MIXANY | SUP', 'Enzo Alvs', 'Moddeure', '1568653499', '1599757499', 0),
('steam:11000011375be6d', 'license:c3df366182dac0eaf9df95428a49cad475152c64', 'no info', 'no info', 'discord:576044719885516819', 'ip:217.136.70.65', 'Plug Walk', 'Enzo Alvs', 'Moddeur', '1568660774', '1599764774', 0),
('steam:1100001137d99a4', 'license:d669d9321e52ef0cdf888e57b116aaa4bc589042', 'live:1759222092815047', 'xbl:2533275082991530', 'discord:209568627320422401', 'ip:90.30.69.117', 'Paul Williams', 'Amado Fuentes', 'moddeur', '1567113783', '1567113783', 1),
('steam:110000113aa86e9', 'license:af5ffb0d3177075d2ff3fcf9178c929e4c777f23', 'live:985153847330606', 'xbl:2535447345010575', 'no info', 'ip:78.127.219.98', 'Otmaan Ben', 'Enzo Alvs', 'moddeur', '1568660749', '1599764749', 0),
('steam:11000011408a887', 'license:a7bc3174d0f72feb66fb2722a79a22555e09f561', 'live:985153973609844', 'xbl:2535464753544698', 'discord:340920597754150912', 'ip:90.104.247.96', 'Koyaa', 'Bob Marlouf', 'moddeur', '1568983128', '1568983128', 1),
('steam:110000114155731', 'license:6e3e6d19a7e3b609c6453a38354388ec8da07602', 'live:914798432384057', 'xbl:2535425256404933', 'discord:286970257049124884', 'ip:88.180.120.190', 'Amadou Boka', 'Enzo Alvs', 'Moddeur', '1567542130', '1567542130', 1),
('steam:110000114c79fca', 'license:e0b79ff3e82f2c5a928a62d4f2c60aeaa3d61be9', 'live:985154218526884', 'no info', 'discord:467279830983901205', 'ip:90.91.82.80', 'Louis Frost', 'Bobby Shaaw', 'cheater', '1567609286', '1598713286', 0),
('steam:110000114f5633c', 'license:ac956ffc7ad8c81bcec9b2217ad2f7286733f1cb', 'no info', 'no info', 'discord:260086578934710272', 'ip:93.8.225.174', 'Dani Mikelson', 'Amado Fuentes', 'Cheat', '1566146628', '1571330628', 0),
('steam:1100001150545b4', 'license:897c35bd4cd6f75141ba7dca3bd8aec5032c9645', 'live:914798334211404', 'no info', 'discord:429210572282920961', 'ip:77.152.71.132', 'Paul Riina', 'Enzo Alvs', 'Moddeur', '1568990981', '1600094981', 0),
('steam:110000115706f04', 'license:70bf61b64be221b3ee406ec25e66fe06eea46efc', 'no info', 'no info', 'discord:463316055130112000', 'ip:176.169.140.33', 'tim poli', 'Bobby Shaaw', 'cheater', '1567609276', '1598713276', 0),
('steam:110000115d577fe', 'license:5b7b60c7f47b8ac87783f9283dfad5593da4f399', 'no info', 'no info', 'discord:511166939012399106', 'ip:92.141.126.224', 'Moulouh', 'Amado Fuentes', 'Moddeur', '1565919175', '1591839175', 0),
('steam:110000115e4ff2c', 'license:4cae7ec324c98932afaf3481c6e188d9e06ff490', 'no info', 'no info', 'discord:256825012336590848', 'ip:86.253.9.137', 'Guardians', 'Bob Marlouf', 'Moddeur', '1568982091', '1568982091', 1),
('steam:11000011615d25e', 'license:ee2ad6b7e016de38ae11704f4d1097b0f845caad', 'no info', 'no info', 'discord:524256471131881472', 'ip:212.239.196.175', 'David Urscov', 'Enzo Alvs', 'Moddeur ( Toute les armes du jeux )', '1567860113', '1567860113', 1),
('steam:11000011659b0ee', 'license:7ebf649f93b700c7537a30e0e679a16b2822fda5', 'live:1759222022720958', 'xbl:2533275012786622', 'discord:237199337661136896', 'ip:91.167.119.71', 'Brownie Darson', 'Enzo Alvs', 'Moddeur', '1567448738', '1598552738', 0),
('steam:1100001175f4b59', 'license:7ec0a17c3c27177c8c2f3fd3e9c6687196dfac54', 'no info', 'no info', 'discord:391614348642222082', 'ip:85.168.153.86', 'Akim Baux', 'Amado Fuentes', 'carkill moddeur', '1565979426', '1565979426', 1),
('steam:110000117729319', 'license:2389dfa75e3240518574a86a980f7a32919cfce7', 'live:1055518314009728', 'no info', 'discord:461917018463928325', 'ip:89.92.188.68', 'trystan pinto', 'Amado Fuentes', 'Modeur', '1566176299', '1597280299', 0),
('steam:1100001178df2f5', 'license:ed5b2b60499659b3e4a6711b3030d342f25ff65c', 'no info', 'no info', 'discord:293114652215214081', 'ip:176.180.178.174', 'Jessica Morelo', 'Enzo Alvs', 'Moddeur', '1568145279', '1599249279', 0),
('steam:110000117c9c4ad', 'license:689943462c93f34b83b9b64a7b8a9926f645f78c', 'no info', 'no info', 'discord:506925341185409024', 'ip:85.190.76.218', 'Mark Lewis', 'Amado Fuentes', 'moddeur', '1567628874', '1598732874', 0),
('steam:1100001182f302d', 'license:88c3500881a73a4161513ad27b45250f044fd2f0', 'live:985154328283607', 'xbl:2535429446162415', 'discord:333610815431376897', 'ip:165.169.35.44', 'Wallis Lajoye', 'Enzo Alvs', 'Moddeur', '1567875559', '1567875559', 1),
('steam:11000011838eaad', 'license:21e41da181ee924e7a8a6a8a5413d16c94f84a6f', 'no info', 'no info', 'discord:303869477957795840', 'ip:91.162.89.135', 'Raoul Puentico', 'Bobby Shaaw', 'Moddeur', '1567805955', '1570397955', 0),
('steam:110000118762837', 'license:05cea54698ac4f8a3ad2a8270423f125c0acea17', 'no info', 'no info', 'discord:549414494573428737', 'ip:109.136.228.34', 'Mathieu Deumille', 'Bobby Shaaw', 'troll moddeur', '1567819271', '1567819271', 1),
('steam:110000119dfdf17', 'license:af657fda150e2f2e3bcceeb2c93d81cd51b00a5e', 'live:1055518320678267', 'xbl:2535410310822642', 'discord:577775117191348236', 'ip:86.234.70.155', 'Wayde Willson', 'Bobby Shaaw', 'cheat', '1567520194', '1598624194', 0),
('steam:11000011d41c4b3', 'license:39e41a614e6d4aa0ac8ed06840926d68ced25999', 'live:985154145296943', 'xbl:2535417749228105', 'discord:209366605258293248', 'ip:78.202.26.62', 'Lucas Parrilla', 'Amado Fuentes', 'cheat', '1567300721', '1598404721', 0),
('steam:1100001201418c5', 'license:f3b0571f2c51e0fe23c074529db0168ebbe46698', 'live:1055518279734164', 'no info', 'discord:364055008859389964', 'ip:90.89.110.10', 'Heelsincki', 'Bobby Shaaw', 'Moddeur', '1567541537', '1567627937', 0),
('steam:1100001324c1813', 'license:7af5f1d0305b5213142d07593521ec980046b4b6', 'no info', 'no info', 'discord:353618755064168450', 'ip:91.160.16.114', 'Alison Lewis', 'William Calaway', 'Achète véhicule d\'occasion à 1$ (cheat)', '1568460737', '1569065537', 0),
('steam:11000013463a88f', 'license:f66ae76a56931862fc355335eb2d53da7f646a0c', 'no info', 'no info', 'discord:452370806773907467', 'ip:93.22.138.63', 'Youssouf Benzette', 'William Calaway', 'Moddeur', '1568572827', '1568572827', 1),
('steam:11000013465e474', 'license:ac3f9fef0ecccab2e8892bb253b5383c32e27e01', 'no info', 'no info', 'discord:383639305790423040', 'ip:88.162.217.113', 'mathieudiril30', 'Bobby Shaaw', 'Moddeur', '1567541519', '1567627919', 0),
('steam:110000134f80c7e', 'license:edcd10183fdc05bec0c7da7484bc393b39f0cb85', 'no info', 'no info', 'discord:470621892403920908', 'ip:176.164.84.130', 'Eddie Sanchez', 'Bobby Shaaw', 'moddeur', '1567953917', '1599057917', 0),
('steam:110000134f89024', 'license:44765cf19e65ae0c1e4b15fb4e40348b09863137', 'no info', 'no info', 'discord:396326398542741508', 'ip:93.10.143.79', 'Jack Sparrow', 'Jonhson William', 'hack', '1567616391', '1567616391', 1),
('steam:110000135ab8b69', 'license:bf9cb24d77b8bf197266407084eaf2a9d64fad6c', 'live:914802190110390', 'xbl:2535434728155325', 'discord:405365427481346061', 'ip:79.81.80.147', 'Pedro Ferrera', 'Amado Fuentes', 'give arme', '1567629259', '1598733259', 0),
('steam:110000135b68a85', 'license:fa3af3d8cb0959df63da6a8c8e3a7d323c3280f5', 'live:1055521885729333', 'no info', 'discord:486410356567179265', 'ip:90.119.128.178', 'Dwayne Johnson', 'Amado Fuentes', 'modeur', '1567195363', '1567195363', 1),
('steam:110000135f4a48a', 'license:a29a2a15af91d45c5ad784ae40b64c27af04183c', 'no info', 'no info', 'discord:362295153895145485', 'ip:37.165.186.196', 'Walid Kort', 'Bobby Shaaw', 'cheat', '1567359036', '1598463036', 0),
('steam:11000013613e221', 'license:531232c0683b8eb7e3827da82e62bfea685ed7d8', 'no info', 'no info', 'discord:580005929076916224', 'ip:81.49.209.169', 'Daryl', 'Bobby Shaaw', 'Moddeur', '1567777257', '1567777257', 1),
('steam:11000013626601c', 'license:4404205f2342468da27cc0efe1b6a6e45d0bc02f', 'no info', 'no info', 'discord:504773003972968449', 'ip:87.231.136.177', 'La saulai 69', 'Jonhson William', 'hack', '1567299386', '1567904186', 0),
('steam:110000136536bc8', 'license:16b7e478d13f234ff0c3e48965c027d5b36f3a8f', 'live:985154329667716', 'xbl:2535414360250383', 'no info', 'ip:86.192.197.195', 'Eddy Blasva', 'Enzo Alvs', 'Moddeur', '1568913176', '1600017176', 0),
('steam:11000013654caa4', 'license:55add7ece89476475c82b6a6308bc63716d81f6f', 'live:844425392204570', 'no info', 'discord:397560936786821120', 'ip:213.111.40.115', 'Mike Arist', 'William Calaway', 'moddeur', '1567605437', '1598709437', 0),
('steam:110000136667e4d', 'license:f7a47574574e5e645338c63a292f48446fdfe14b', 'live:844425317964689', 'xbl:2535458687455129', 'discord:434759154415042560', 'ip:85.190.76.233', 'Miguel Garciia', 'Enzo Alvs', 'Moddeur', '1568498323', '1599602323', 0),
('steam:110000136b1fc06', 'license:8046162c761eed4805aaf02af83425f38de2f0ce', 'live:1055521890820919', 'xbl:2535465180557677', 'discord:171276248197103617', 'ip:90.62.245.35', 'Florian Demille', 'Enzo Alvs', 'Moddeur', '1567819116', '1567819116', 1),
('steam:110000136fd83af', 'license:e9afa4d053f5e3347e491e4ec145a1f97797ba87', 'live:914798341781568', 'xbl:2535445982592094', 'discord:528202573057097729', 'ip:91.170.46.122', 'Arthur Beaurain', 'William Calaway', 'moddeur', '1568912032', '1568912032', 1),
('steam:110000139b156ed', 'license:4126af9086ee3059463db3dc4c62cde619f5b6f0', 'live:1055521932931122', 'xbl:2535453963549647', 'discord:488398402200010753', 'ip:81.164.93.111', 'Raphael Ralam', 'Enzo Alvs', 'Moddeur Anonymous ?', '1567871787', '1567871787', 1),
('steam:11000013bce82c2', 'license:96aba64f714945e62797742c5fb1cf431a308e13', 'live:914801469653698', 'xbl:2535465815045686', 'discord:331079185546215425', 'ip:176.180.85.53', 'Chris Force', 'Amado Fuentes', 'moddeur', '1567370258', '1598474258', 0),
('steam:11000013c26f07a', 'license:42825b99565413fe3831687b5e20659d424fcb94', 'no info', 'no info', 'discord:588441634006368257', 'ip:85.171.47.70', 'Matt Sanders', 'Bobby Shaaw', 'CHEATEr', '1567339538', '1598443538', 0),
('steam:11000013c3f7d2a', 'license:e00d6e6e4784721c9f370a68b341ee0f98abd0d4', 'no info', 'no info', 'discord:419910015412076544', 'ip:90.119.51.71', 'Said Boogy', 'Amado Fuentes', 'moddeur', '1567193128', '1567193128', 1),
('steam:11000013c46c5e3', 'license:851f46387e99d1f82a96618a2f28c09f51470bd0', 'no info', 'no info', 'discord:264058047280709633', 'ip:93.1.64.147', 'Jean José', 'Amado Fuentes', 'Cheat Bye bye tes potes vont etre remis a 0 a cause de toi ;)', '1565914225', '1565914225', 1),
('steam:11000013c4f94e9', 'license:c57d70584e286217c142f6ac6f2f3ba233821c1e', 'live:985154237832498', 'no info', 'discord:591729599918899220', 'ip:41.251.166.105', 'Pablo Garcia', 'Amado Fuentes', 'Moddeur', '1565969116', '1565969116', 1),
('steam:11000013cb22393', 'license:c1085c8c36f92ce00b6c62ecd76456c1ae43a797', 'live:1055518791075822', 'no info', 'discord:401865078972088335', 'ip:88.186.166.70', 'Romain Dupuid', 'Amado Fuentes', 'givearme', '1568316635', '1599420635', 0),
('steam:11000013d27faf6', 'license:125d5bea52ec80c30f4fe3321985086fa01f8349', 'no info', 'no info', 'discord:375738453985460225', 'ip:90.49.115.190', 'Dawson Joe', 'Bobby Shaaw', 'CHEAT', '1567206159', '1567810959', 0),
('steam:11000013d3b1e78', 'license:d5592c298ff0b153337fffe4a044a402a208fb37', 'no info', 'no info', 'discord:389077719276847124', 'ip:83.141.144.247', 'gaetan.gissinger', 'Amado Fuentes', 'moddeur', '1567369526', '1598473526', 0);
-- --------------------------------------------------------
--
-- Structure de la table `banlisthistory`
--
DROP TABLE IF EXISTS `banlisthistory`;
CREATE TABLE IF NOT EXISTS `banlisthistory` (
`id` int(11) AUTO_INCREMENT PRIMARY KEY,
`identifier` varchar(25) NOT NULL,
`license` varchar(50) COLLATE utf8mb4_bin DEFAULT NULL,
`liveid` varchar(21) COLLATE utf8mb4_bin DEFAULT NULL,
`xblid` varchar(21) COLLATE utf8mb4_bin DEFAULT NULL,
`discord` varchar(30) COLLATE utf8mb4_bin DEFAULT NULL,
`playerip` varchar(25) COLLATE utf8mb4_bin DEFAULT NULL,
`targetplayername` varchar(32) COLLATE utf8mb4_bin NOT NULL,
`sourceplayername` varchar(32) COLLATE utf8mb4_bin NOT NULL,
`reason` varchar(255) NOT NULL,
`timeat` int(11) NOT NULL,
`added` varchar(40) NOT NULL,
`expiration` int(11) NOT NULL,
`permanent` int(1) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;
-- --------------------------------------------------------
--
-- Structure de la table `billing`
--
DROP TABLE IF EXISTS `billing`;
CREATE TABLE IF NOT EXISTS `billing` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`identifier` varchar(255) NOT NULL,
`sender` varchar(255) NOT NULL,
`target_type` varchar(50) NOT NULL,
`target` varchar(255) NOT NULL,
`label` varchar(255) NOT NULL,
`amount` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4509 DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Structure de la table `boatdealer_boats`
--
DROP TABLE IF EXISTS `boatdealer_boats`;
CREATE TABLE IF NOT EXISTS `boatdealer_boats` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`vehicle` varchar(255) NOT NULL,
`price` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Structure de la table `boats`
--
DROP TABLE IF EXISTS `boats`;
CREATE TABLE IF NOT EXISTS `boats` (
`name` varchar(60) NOT NULL,
`model` varchar(60) NOT NULL,
`price` int(11) NOT NULL,
`category` varchar(60) DEFAULT NULL,
PRIMARY KEY (`model`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Déchargement des données de la table `boats`
--
INSERT INTO `boats` (`name`, `model`, `price`, `category`) VALUES
('Seashark', 'seashark', 245000, 'boat'),
('Seashark2', 'seashark2', 255000, 'boat'),
('Yacht Seashark', 'seashark3', 260000, 'boat'),
('Suntrap', 'suntrap', 2210500, 'boat'),
('Dinghy', 'dinghy', 3652500, 'boat'),
('Dinghy2 ', 'dinghy2', 3735500, 'boat'),
('Yacht Dinghy', 'dinghy4', 3841500, 'boat'),
('Tropic', 'tropic', 2260000, 'boat'),
('Yacht Tropic', 'tropic2', 2310000, 'boat'),
('Squalo', 'squalo', 2412000, 'boat'),
('Yacht Toro', 'toro2', 2718000, 'boat'),
('Toro', 'toro', 2815000, 'boat'),
('Jetmax', 'jetmax', 3900000, 'boat'),
('Voilier Marquis', 'marquis', 2375000, 'boat');
-- --------------------------------------------------------
--
-- Structure de la table `boat_categories`
--
DROP TABLE IF EXISTS `boat_categories`;
CREATE TABLE IF NOT EXISTS `boat_categories` (
`name` varchar(60) NOT NULL,
`label` varchar(60) NOT NULL,
PRIMARY KEY (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Déchargement des données de la table `boat_categories`
--
INSERT INTO `boat_categories` (`name`, `label`) VALUES
('boat', 'Boats');
-- --------------------------------------------------------
--
-- Structure de la table `cardealer_vehicles`
--
DROP TABLE IF EXISTS `cardealer_vehicles`;
CREATE TABLE IF NOT EXISTS `cardealer_vehicles` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`vehicle` varchar(255) NOT NULL,
`price` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=71 DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Structure de la table `characters`
--
DROP TABLE IF EXISTS `characters`;
CREATE TABLE IF NOT EXISTS `characters` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`identifier` varchar(255) NOT NULL,
`firstname` varchar(255) NOT NULL,
`lastname` varchar(255) NOT NULL,
`dateofbirth` varchar(255) NOT NULL,
`sex` varchar(1) NOT NULL DEFAULT 'M',
`height` varchar(128) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1043 DEFAULT CHARSET=latin1;
--
-- Structure de la table `datastore`
--
DROP TABLE IF EXISTS `datastore`;
CREATE TABLE IF NOT EXISTS `datastore` (
`name` varchar(60) NOT NULL,
`label` varchar(255) NOT NULL,
`shared` int(11) NOT NULL,
PRIMARY KEY (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Déchargement des données de la table `datastore`
--
INSERT INTO `datastore` (`name`, `label`, `shared`) VALUES
('property', 'Propriété', 0),
('society_ambulance', 'Ambulance', 1),
('society_ammu', 'Ammu', 1),
('society_avocat', 'Avocat', 1),
('society_baladins', 'baladins', 1),
('society_ballas', 'Ballas', 1),
('society_ballas_weapons', 'ballas weapon', 1),
('society_biker', 'Biker', 1),
('society_bratva', 'Bratva', 1),
('society_bratva_weapons', 'bratva weapon', 1),
('society_cartel', 'Cartel', 1),
('society_casino', 'Casino', 1),
('society_famillies', 'famillies', 1),
('society_famillies_weapons', 'famillies weapon', 1),
('society_fib', 'Fib', 1),
('society_fueler', 'Raffineur', 1),
('society_gang', 'Gang', 1),
('society_illegal', 'Illegal', 1),
('society_illegal_weapons', 'illegal weapon', 1),
('society_immo', 'Immo', 1),
('society_journaliste', 'journaliste', 1),
('society_kano', 'Kano', 1),
('society_kano_weapons', 'kano weapon', 1),
('society_lazone', 'LaZone', 1),
('society_lazone_weapons', 'lazone weapon', 1),
('society_mafia', 'Mafia', 1),
('society_mercenaire', 'mercenaire', 1),
('society_mercenaire_weapons', 'mercenaire Weapon', 1),
('society_ms13', 'ms13 Weapon', 1),
('society_ms13_weapons', 'ms13 weapon', 1),
('society_pecheur', 'Pecheur', 1),
('society_podolskaia', 'podolskaia', 1),
('society_podolskaia_weapons', 'podolskaia Weapon', 1),
('society_police', 'Police', 1),
('society_pompiste', 'Pompiste', 1),
('society_securoserv', 'SecuroServ', 1),
('society_state', 'State', 1),
('society_syndicat', 'syndicat', 1),
('society_syndicat_weapons', 'syndicat Weapon', 1),
('society_tabac', 'Tabac', 1),
('society_taxi', 'Taxi', 1),
('society_unicorn', 'Unicorn', 1),
('society_vagos', 'Vagos', 1),
('society_vagos_weapons', 'Vagos Weapon', 1),
('society_vigne', 'Vigneron', 1),
('user_ears', 'Ears', 0),
('user_glasses', 'Glasses', 0),
('user_helmet', 'Helmet', 0),
('user_mask', 'Mask', 0);
-- --------------------------------------------------------
--
-- Structure de la table `datastore_data`
--
DROP TABLE IF EXISTS `datastore_data`;
CREATE TABLE IF NOT EXISTS `datastore_data` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL,
`owner` varchar(255) DEFAULT NULL,
`data` longtext,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1786 DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Structure de la table `dock`
--
DROP TABLE IF EXISTS `dock`;
CREATE TABLE IF NOT EXISTS `dock` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(60) NOT NULL,
`model` varchar(60) NOT NULL,
`price` int(11) NOT NULL,
`category` varchar(60) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8mb4;
--
-- Déchargement des données de la table `dock`
--
INSERT INTO `dock` (`id`, `name`, `model`, `price`, `category`) VALUES
(1, 'Seashark', 'seashark', 245000, 'dock'),
(2, 'Seashark2', 'seashark2', 255000, 'dock'),
(3, 'Yacht Seashark', 'seashark3', 260000, 'dock'),
(4, 'Suntrap', 'suntrap', 2210500, 'dock'),
(5, 'Dinghy', 'dinghy', 3652500, 'dock'),
(6, 'Dinghy2 ', 'dinghy2', 3735500, 'dock'),
(7, 'Yacht Dinghy', 'dinghy4', 3841500, 'dock'),
(8, 'Tropic', 'tropic', 2260000, 'dock'),
(9, 'Yacht Tropic', 'tropic2', 2310000, 'dock'),
(10, 'Squalo', 'squalo', 2412000, 'dock'),
(11, 'Yacht Toro', 'toro2', 2718000, 'dock'),
(12, 'Toro', 'toro', 2815000, 'dock'),
(13, 'Jetmax', 'jetmax', 3900000, 'dock'),
(14, 'Voilier Marquis', 'marquis', 2375000, 'dock');
-- --------------------------------------------------------
--
-- Structure de la table `dock_categories`
--
DROP TABLE IF EXISTS `dock_categories`;
CREATE TABLE IF NOT EXISTS `dock_categories` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(60) NOT NULL,
`label` varchar(60) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4;
--
-- Déchargement des données de la table `dock_categories`
--
INSERT INTO `dock_categories` (`id`, `name`, `label`) VALUES
(1, 'dock', 'Bateaux');
-- --------------------------------------------------------
--
-- Structure de la table `dock_vehicles`
--
DROP TABLE IF EXISTS `dock_vehicles`;
CREATE TABLE IF NOT EXISTS `dock_vehicles` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`vehicle` varchar(255) NOT NULL,
`price` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-- --------------------------------------------------------
--
-- Structure de la table `fine_types`
--
DROP TABLE IF EXISTS `fine_types`;
CREATE TABLE IF NOT EXISTS `fine_types` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`label` varchar(255) DEFAULT NULL,
`amount` int(11) DEFAULT NULL,
`category` int(11) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=61 DEFAULT CHARSET=latin1;
--
-- Déchargement des données de la table `fine_types`
--
INSERT INTO `fine_types` (`id`, `label`, `amount`, `category`) VALUES
(1, 'Abusive use of the horn', 300, 0),
(2, 'Crossing a continuous line', 300, 0),
(3, 'Counter-flow traffic', 1500, 0),
(4, 'Unauthorized U-turn', 1000, 0),
(5, 'Off-road traffic', 1200, 0),
(6, 'Non-compliance with safety distances', 1100, 0),
(7, 'Dangerous stop / prohibited', 1000, 0),
(8, 'Disturbing / prohibited parking', 500, 0),
(9, 'Failure to respect the priority on the right', 1000, 0),
(10, 'Non-compliance with a priority vehicle', 1500, 0),
(11, 'Non-respect of a stop sign', 1200, 0),
(12, 'Non-respect of a red light', 1500, 0),
(13, 'Dangerous overtaking', 3000, 0),
(14, 'Vehicle not in condition', 5000, 0),
(15, 'Driving without a licence', 10000, 0),
(16, 'Hit and run', 20000, 0),
(17, 'Speeding - 5 kmh', 500, 0),
(18, 'Speeding + 5-15 kmh', 1000, 0),
(19, 'Speeding + 15-30 kmh', 2000, 0),
(20, 'Speeding + 30 kmh', 5000, 0),
(21, 'Traffic obstruction', 1000, 1),
(22, 'Degradation of the public roadway', 1000, 1),
(23, 'Disorderly conduct', 2000, 1),
(24, 'Obstacle to police operation', 12000, 1),
(25, 'Insult towards / between civilians', 4000, 1),
(26, 'Offence against a police officer', 18000, 1),
(27, 'Verbal threat or intimidation of civilians', 20000, 1),
(28, 'Verbal threat or intimidation of police officers', 34000, 1),
(29, 'Illegal demonstration', 15000, 1),
(30, 'Attempted corruption', 40000, 1),
(31, 'White weapon out in the city', 5000, 2),
(32, 'Lethal weapon going out into the city', 15000, 2),
(33, 'Weapons licence', 20000, 2),
(34, 'Carrying illegal weapons', 50000, 2),
(35, 'Carjacking', 10000, 2),
(36, 'Vehicle theft', 20000, 2),
(37, 'Sale of drugs', 30000, 2),
(38, 'Drug manufacturing', 60000, 2),
(39, 'Possession of drugs < 100', 30000, 2),
(40, 'Civilian hostage-taking', 50000, 2),
(41, 'Taking of hostage state agent', 100000, 2),
(42, 'Special robbery', 10000, 3),
(43, 'Store robbery', 50000, 3),
(44, 'Bank robbery', 85000, 3),
(45, 'Civilian shooting', 50000, 3),
(46, 'Shooting at state agent', 80000, 3),
(47, 'Attempted murder of civilians', 40000, 3),
(48, 'Attempted murder of a state agent', 150000, 3),
(49, 'Civilian murder', 200000, 3),
(50, 'Murder on state agent', 300000, 3),
(51, 'Involuntary murder', 100000, 3),
(53, 'Purchase of illegal weapons\r\n', 200000, 3),
(54, 'Carrying a weapon without a Weapon License', 80000, 2),
(55, 'Corporate fraud\r\n', 50000, 3),
(56, 'Excess of speed + 50kmh + licence withdrawal', 10000, 0),
(58, 'Threat of death to civilians', 50000, 2),
(59, 'Death threat to a state agent', 75000, 2),
(60, 'Possession of drugs > 100', 20000, 2);
-- --------------------------------------------------------
--
-- Structure de la table `items`
--
DROP TABLE IF EXISTS `items`;
CREATE TABLE IF NOT EXISTS `items` (
`name` varchar(50) NOT NULL,
`label` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL,
`limit` int(11) NOT NULL DEFAULT '-1',
`rare` int(11) NOT NULL DEFAULT '0',
`can_remove` int(11) NOT NULL DEFAULT '1',
PRIMARY KEY (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Déchargement des données de la table `items`
--
INSERT INTO `items` (`name`, `label`, `limit`, `rare`, `can_remove`) VALUES
('acier', 'Steel', -1, 0, 1),
('adrenaline', 'Adrenaline', 15, 0, 1),
('alcool', '🍺 Alcohol', 150, 0, 1),
('alcool_cargo', '🍺 Cargo of Alcohol', 150, 0, 1),
('alive_chicken', '🍗 Live chicken', 150, 0, 1),
('arAmmo', 'Ammunition Box Rifle Assault Rifle', 5, 0, 1),
('bandage', 'Bandage', 15, 0, 1),
('beef', '🥩 Piece of Beef', 15, 0, 1),
('beer', '🍺 Beer', -1, 0, 1),
('billet', '🛢️ Gas canister', 150, 0, 1),
('blowpipe', 'Torches', 10, 0, 1),
('blowtorch', 'blow torch', 1, 0, 1),
('bolcacahuetes', '🥜 Peanut bowl', 15, 0, 1),
('bolchips', '🥜 Bowl of chips', 15, 0, 1),
('bolnoixcajou', '🥜 Bowl of cashew nuts', 15, 0, 1),
('bolpistache', '🥜 Pistachio bowl', 15, 0, 1),
('bread', '🥖 Bread', 15, 0, 1),
('lighter', 'Lighter', 15, 0, 1),
('cigarett', 'Cigarett', 15, 0, 1),
('breadsaucisson', '🌭 Hot Dog', 15, 0, 1),
('c4_bank', 'C4 de 10 kilos', 1, 0, 1),
('cagoule', 'Hood', 5, 0, 1),
('carbon', 'Carbon', -1, 0, 1),
('carokit', '🔧 Body kit', 3, 0, 1),
('carotool', '🔧 Body tools', 4, 0, 1),
('chocolat', '🍫 Chocolate bar', 15, 0, 1),
('clip', 'Clip', 15, 0, 1),
('clothe', '👔 Clothe', 150, 0, 1),
('cocacola', 'Coca-Cola Can', 15, 0, 1),
('coffee', '☕ Coffee', 15, 0, 1),
('coke', '💊 Coke', 100, 0, 1),
('coke_pooch', '💊 Coke bag', 100, 0, 1),
('COMPONENT_AT_AR_AFGRIP', '[acc] Handle (Rifles)', 5, 0, 1),
('COMPONENT_AT_AR_CLIP_02', '[acc] Extended Mag (Rifles)', 5, 0, 1),
('COMPONENT_AT_AR_CLIP_03', '[acc] Extensive Mag (Rifles)', 5, 0, 1),
('COMPONENT_AT_AR_FLSH', '[acc] Flashlight (Rifles)', 5, 0, 1),
('COMPONENT_AT_AR_SUPP_02', '[acc] Silencer (Rifles)', 5, 0, 1),
('COMPONENT_AT_PI_CLIP_02', '[acc] Extended Mag (Pistol)', 5, 0, 1),
('COMPONENT_AT_PI_FLSH', '[acc] Flashlight (Pistol)', 5, 0, 1),
('COMPONENT_AT_PI_SUPP', '[acc] Silencer (Pistol)', 5, 0, 1),
('COMPONENT_AT_SCOPE_MACRO', '[acc] Bezel (Rifles)', 5, 0, 1),
('COMPONENT_KNUCKLE_VARMOD_BALLAS', '[skin] American fist - Ballas', 5, 0, 1),
('COMPONENT_KNUCKLE_VARMOD_DIAMOND', '[skin] American fist - Diamant', 5, 0, 1),
('COMPONENT_KNUCKLE_VARMOD_DOLLAR', '[skin] American fist - Dollar', 5, 0, 1),
('COMPONENT_KNUCKLE_VARMOD_HATE', '[skin] American fist - Haine', 5, 0, 1),
('COMPONENT_KNUCKLE_VARMOD_KING', '[skin] American fist - King', 5, 0, 1),
('COMPONENT_KNUCKLE_VARMOD_LOVE', '[skin] American fist - Amour', 5, 0, 1),
('COMPONENT_KNUCKLE_VARMOD_PIMP', '[skin] American fist - Pimp', 5, 0, 1),
('COMPONENT_KNUCKLE_VARMOD_PLAYER', '[skin] American fist - Joueur', 5, 0, 1),
('COMPONENT_KNUCKLE_VARMOD_VAGOS', '[skin] American fist - Vagos', 5, 0, 1),
('COMPONENT_REVOLVER_VARMOD_BOSS', '[skin] Revolver - Boss', 5, 0, 1),
('COMPONENT_REVOLVER_VARMOD_GOON', '[skin] Revolver - Voyou', 5, 0, 1),
('COMPONENT_SWITCHBLADE_VARMOD_VAR1', '[skin] Knife with catch stop - VIP', 5, 0, 1),
('COMPONENT_SWITCHBLADE_VARMOD_VAR2', '[skin] Knife with catch stop - Bois', 5, 0, 1),
('COMPONENT_VARMOD_LOWRIDER', '[skin] Skin - Lowrider', 5, 0, 1),
('COMPONENT_VARMOD_LUXE', '[skin] Skin - Luxe', 5, 0, 1),
('copper', 'Copper', 56, 0, 1),
('cupcake', '🧁 CupCake', 15, 0, 1),
('cutted_wood', '🌳 Cut wood', 150, 0, 1),
('diamond', '💎 Diamond', 5, 0, 1),
('doliprane', 'Doliprane', 15, 0, 1),
('douille', 'Socket box', -1, 0, 1),
('drill', 'Drilling machine (Bank)', 1, 0, 1),
('weld', 'Plasma Torch', 1, 0, 1),
('drpepper', 'Dr. Pepper', 5, 0, 1),
('energy', 'Energy Drink', 5, 0, 1),
('essence', '⛽ Gasoline', 150, 0, 1),
('essence1', '🥃 Whiskey', 150, 0, 1),
('fabric', '🧶 Fabrics', 150, 0, 1),
('fish', '🐟 Fish', 150, 0, 1),
('fish_traiter', 'Cut fish', 150, 0, 1),
('fixkit', '🔧 Repair Kit', 5, 0, 1),
('fixtool', 'repair tools', 6, 0, 1),
('flashlight', '🔦 Lamp', 5, 0, 1),
('gazbottle', 'gas bottle', 11, 0, 1),
('gitanes', '🚬 Gitanes', 150, 0, 1),
('gold', 'Gold', 21, 0, 1),
('golem', 'Golem', 5, 0, 1),
('grand_cru', '🍾 Grand Cru', 150, 0, 1),
('grapperaisin', '🍇 Grape bunch', 150, 0, 1),
('grip', 'Grip', 15, 0, 1),
('hamburger', '🍔 Hamburger', 15, 0, 1),
('hamburgerplate', '🍔 Hamburger with meatballs', 15, 0, 1),
('headbag', 'Hood', 5, 0, 1),
('ice', 'Ice Cube', 15, 0, 1),
('icetea', 'Ice Tea', 15, 0, 1),
('iron', 'Iron', 42, 0, 1),
('jager', 'Jägermeister', 5, 0, 1),
('jagerbomb', 'Jägerbomb', 5, 0, 1),
('jagercerbere', 'Jäger Cerbère', 3, 0, 1),
('jewels', '💎 Jewels', -1, 0, 1),
('jusfruit', '🍇 Fruit juices', 150, 0, 1),
('jus_raisin', '🍇 Grape Juice', 150, 0, 1),
('keycard', 'Keycard', -1, 0, 1),
('limonade', 'Limonade', 15, 0, 1),
('lockpick', 'Lockpick', 1, 0, 1),
('lsd', 'Lsd', -1, 0, 1),
('lsd_pooch', 'LSD pouch', -1, 0, 1),
('malbora', '🚬 Malboro', 150, 0, 1),
('martini', '🍸 White martini', 5, 0, 1),
('medikit', 'Medikit', 15, 0, 1),
('menthe', 'Mint leaf', 150, 0, 1),
('meth', 'Meth', 100, 0, 1),
('meth_pooch', 'Meth pouch', 100, 0, 1),
('metreshooter', 'Shooting meter', 15, 0, 1),
('mgAmmo', 'Ammunition Box Machine Gun', 5, 0, 1),
('mixapero', 'Aperitif Mix', 15, 0, 1),
('mojito', 'Mojito', 15, 0, 1),
('myrte', 'Myrtle', 150, 0, 1),
('myrtealcool', 'Myrtle alcohol', 150, 0, 1),
('myrte_cargo', 'Cargo of Myrtle', 150, 0, 1),
('opium', '💉 Ecstasy', 100, 0, 1),
('opium_pooch', '💉 Pouch of Ecstasy', 100, 0, 1),
('or1', 'Gold', -1, 0, 1),
('or2', 'Lingot', -1, 0, 1),
('or_raffin', 'Moulded Gold', -1, 0, 1),
('oxycutter', 'Torche Plasma', -1, 0, 1),
('pacificidcard', 'Pacific ID', -1, 0, 1),
('packaged_chicken', '🍗 Chicken in a tray', 150, 0, 1),
('packaged_plank', '🌳 Package of boards', 150, 0, 1),
('pAmmo', 'Ammunition Box Gun', 5, 0, 1),
('papier', '🛢️ Petroleum', 150, 0, 1),
('petrol', '🥃 Seeds', 150, 0, 1),
('petrol_raffin', '🥃 Fermented Whiskey', 150, 0, 1),
('poudre', 'Powder box', -1, 0, 1),
('powerade', 'Powerade', 15, 0, 1),
('ppa', 'Weapons Permit License', 1, 0, 1),
('protein_shake', 'Protein Shake', 15, 0, 1),
('radio', 'radio', 1, 0, 1),
('raisin', '🍇 Grapes', 150, 0, 1),
('rasperry', 'Rasperry', 1, 0, 1),
('redbull', 'RedBull', 150, 0, 1),
('redbull_cargo', 'RedBull Cargo', 150, 0, 1),
('rhum', '🥃 Rum', 5, 0, 1),
('rhumcoca', '🥃 Rum-coca', 5, 0, 1),
('rhumfruit', '🥃 Rum-fruit juice', 5, 0, 1),
('rolex', 'Rolex watch', -1, 0, 1),
('saucisson', 'Sausage', 15, 0, 1),
('sgAmmo', 'Ammunition Box Pump Rifle', 5, 0, 1),
('silencieux', 'Silencer', 15, 0, 1),
('sim', 'SIM card', 15, 0, 1),
('slaughtered_chicken', '🍗 Slaughtered chicken', 150, 0, 1),
('soda', 'Soda', 15, 0, 1),
('sportlunch', 'Sportlunch', 15, 0, 1),
('stone', 'Stone', 124, 0, 1),
('tel', 'Phone', 150, 0, 1),
('tabacblond', '🚬 Blond Tobacco', 150, 0, 1),
('tabacblondsec', '🚬 Dried Blond Tobacco', 150, 0, 1),
('tabacbrun', '🚬 Brown Tobacco', 150, 0, 1),
('tabacbrunsec', '🚬 Dried Brown Tobacco', 150, 0, 1),
('tenuebraquage', 'Hold Robbery', -1, 0, 1),
('tenuecasa', 'Casa de Papel outfit', -1, 0, 1),
('tenueprison', 'Prison Clothing', -1, 0, 1),
('teqpaf', 'Teq\'paf', 5, 0, 1),
('tequila', '🥃 Tequila', 5, 0, 1),
('TINT_01', '[tint] Green', 5, 0, 1),
('TINT_02', '[tint] Gold', 5, 0, 1),
('TINT_03', '[tint] Pink', 5, 0, 1),
('TINT_04', '[tint] Military', 5, 0, 1),
('TINT_05', '[tint] LSPD', 5, 0, 1),
('TINT_06', '[tint] Orange', 5, 0, 1),
('TINT_07', '[tint] Turntable', 5, 0, 1),
('viande', '🍖 Meat', 25, 0, 1),
('vine', '🍷 Wine', 150, 0, 1),
('vodka', '🥃 Vodka', 5, 0, 1),
('vodkaenergy', '🥃 Vodka-energy', 5, 0, 1),
('vodkafruit', '🥃 Vodka-fruit juice', 5, 0, 1),
('vodkrb', '🥃 Vodka RedBull', 5, 0, 1),
('washed_stone', 'Pierre Lavée', 124, 0, 1),
('water', '💧 Water Bottle', 15, 0, 1),
('weed', '🍁 Cannabis', 100, 0, 1),
('weed_pooch', '🍁 Pouch of Cannabis', 100, 0, 1),
('whisky', '🥃 Whisky', 15, 0, 1),
('whiskycoc', '🥃 Whisky CorsicaCola', 15, 0, 1),
('whiskycoca', '🥃 Whisky-coca', 15, 0, 1),
('wood', '🌳 Wood', 150, 0, 1),
('wool', 'Wool', 150, 0, 1),
('xanax', 'Xanax', -1, 0, 1),
('yusuf', 'Luxury skin', 15, 0, 1);
-- --------------------------------------------------------
--