forked from deviljin112/DailyRP_Source_Files_Pack
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDailyRP_SourceCode.sql
2350 lines (2177 loc) · 119 KB
/
DailyRP_SourceCode.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
-- --------------------------------------------------------
-- Host: 127.0.0.1
-- Server version: 10.1.34-MariaDB - mariadb.org binary distribution
-- Server OS: Win32
-- HeidiSQL Version: 9.5.0.5196
-- --------------------------------------------------------
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET NAMES utf8 */;
/*!50503 SET NAMES utf8mb4 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
-- Dumping database structure for server_3
CREATE DATABASE IF NOT EXISTS `server_3` /*!40100 DEFAULT CHARACTER SET latin1 */;
USE `server_3`;
-- Dumping structure for table server_3.addon_account
CREATE TABLE IF NOT EXISTS `addon_account` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8mb4_bin NOT NULL,
`label` varchar(255) COLLATE utf8mb4_bin NOT NULL,
`shared` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=33 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;
-- Dumping data for table server_3.addon_account: ~22 rows (approximately)
/*!40000 ALTER TABLE `addon_account` DISABLE KEYS */;
INSERT INTO `addon_account` (`id`, `name`, `label`, `shared`) VALUES
(1, 'society_ambulance', 'EMS', 1),
(3, 'society_banker', 'Bankier', 1),
(4, 'bank_savings', 'Oszczednosci', 0),
(7, 'caution', 'Uwaga', 0),
(8, 'society_avocat', 'Adwokat', 1),
(9, 'society_mecano', 'Mechanik', 1),
(10, 'society_motodealer', 'Sprzedawca Motocykli', 1),
(11, 'society_police', 'LSPD', 1),
(12, 'property_black_money', 'Posiadlosc za brudna kase', 0),
(13, 'society_realestateagent', 'Agent nieruchomosci', 1),
(14, 'society_taxi', 'Taksi', 1),
(17, 'society_unicorn', 'Unicorn', 1),
(18, 'society_aircraftdealer', 'Airliner', 1),
(19, 'society_boatdealer', 'Marina', 1),
(21, 'society_vigne', 'Winegrower', 1),
(22, 'society_carthief', 'Car Thief', 1),
(23, 'society_journaliste', 'journaliste', 1),
(24, 'society_biker', 'Biker', 1),
(25, 'society_biker', 'Biker', 1),
(26, 'society_cartel', 'cartel', 1),
(27, 'society_gang', 'gang', 1),
(28, 'society_mafia', 'Mafia', 1),
(29, 'society_state', 'State', 1),
(30, 'society_cardealer', 'Sprzedawca Aut', 1),
(31, 'society_cardealer2', 'Sprzedawca Aut 2', 1),
(32, 'society_parking', 'Parking Enforcement', 1);
/*!40000 ALTER TABLE `addon_account` ENABLE KEYS */;
-- Dumping structure for table server_3.addon_account_data
CREATE TABLE IF NOT EXISTS `addon_account_data` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`account_name` varchar(255) COLLATE utf8mb4_bin DEFAULT NULL,
`money` double NOT NULL,
`owner` varchar(255) COLLATE utf8mb4_bin DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1815 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;
-- Dumping data for table server_3.addon_account_data: ~818 rows (approximately)
/*!40000 ALTER TABLE `addon_account_data` DISABLE KEYS */;
INSERT INTO `addon_account_data` (`id`, `account_name`, `money`, `owner`) VALUES
(1, 'society_ambulance', 50000, NULL),
(2, 'society_banker', 50000, NULL),
(3, 'society_avocat', 50000, NULL),
(4, 'society_mecano', 99997539670, NULL),
(5, 'society_motodealer', 6010, NULL),
(6, 'society_police', 21450, NULL),
(7, 'society_realestateagent', 50000, NULL),
(8, 'society_taxi', 50677, NULL),
(283, 'society_unicorn', 50000, NULL),
(419, 'society_aircraftdealer', 50000, NULL),
(420, 'society_boatdealer', 50000, NULL),
(424, 'society_vigne', 350660, NULL),
(425, 'society_carthief', 50000, NULL),
(1782, 'society_journaliste', 0, NULL),
(1792, 'society_biker', 0, NULL),
(1793, 'society_cartel', 0, NULL),
(1794, 'society_gang', 0, NULL),
(1795, 'society_mafia', 0, NULL),
(1796, 'society_state', 0, NULL),
(1806, 'society_cardealer', 0, NULL),
(1810, 'society_cardealer2', 0, NULL),
(1811, 'society_parking', 0, NULL);
/*!40000 ALTER TABLE `addon_account_data` ENABLE KEYS */;
-- Dumping structure for table server_3.addon_inventory
CREATE TABLE IF NOT EXISTS `addon_inventory` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8mb4_bin NOT NULL,
`label` varchar(255) COLLATE utf8mb4_bin NOT NULL,
`shared` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=27 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;
-- Dumping data for table server_3.addon_inventory: ~17 rows (approximately)
/*!40000 ALTER TABLE `addon_inventory` DISABLE KEYS */;
INSERT INTO `addon_inventory` (`id`, `name`, `label`, `shared`) VALUES
(1, 'society_avocat', 'Adwokat', 1),
(2, 'society_mecano', 'Mechanik', 1),
(3, 'society_motodealer', 'Sprzedawca Motocykli', 1),
(4, 'society_police', 'LSPD', 1),
(5, 'property', 'Mieszkania', 0),
(6, 'society_taxi', 'Taxi', 1),
(11, 'society_unicorn', 'Unicorn', 1),
(12, 'society_unicorn_fridge', 'Unicorn (frigo)', 1),
(13, 'society_aircraftdealer', 'Airliner', 1),
(14, 'society_boatdealer', 'Marina', 1),
(16, 'society_vigne', 'Winegrower', 1),
(17, 'society_carthief', 'Car Thief', 1),
(18, 'society_journaliste', 'journaliste', 1),
(19, 'society_biker', 'Biker', 1),
(20, 'society_biker', 'Biker', 1),
(21, 'society_cartel', 'Cartel', 1),
(22, 'society_gang', 'Gang', 1),
(23, 'society_mafia', 'Mafia', 1),
(24, 'society_state', 'State', 1),
(25, 'society_cardealer', 'Concesionnaire', 1),
(26, 'society_cardealer2', 'Sprzedawca Aut 2', 1);
/*!40000 ALTER TABLE `addon_inventory` ENABLE KEYS */;
-- Dumping structure for table server_3.addon_inventory_items
CREATE TABLE IF NOT EXISTS `addon_inventory_items` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`inventory_name` varchar(255) COLLATE utf8mb4_bin NOT NULL,
`name` varchar(255) COLLATE utf8mb4_bin NOT NULL,
`count` int(11) NOT NULL,
`owner` varchar(60) COLLATE utf8mb4_bin DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=99 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;
-- Dumping data for table server_3.addon_inventory_items: ~72 rows (approximately)
/*!40000 ALTER TABLE `addon_inventory_items` DISABLE KEYS */;
INSERT INTO `addon_inventory_items` (`id`, `inventory_name`, `name`, `count`, `owner`) VALUES
(4, 'society_vigne', 'vine', 0, NULL),
(5, 'society_vigne', 'grand_cru', 0, NULL),
(6, 'society_police', 'vine', 0, NULL),
(7, 'society_vigne', 'jus_raisin', 0, NULL),
(8, 'society_mecano', 'fixkit', 0, NULL),
(9, 'society_vigne', 'raisin', 100, NULL),
(10, 'society_police', 'coke', 0, NULL),
(11, 'society_mecano', 'blowpipe', 0, NULL),
(12, 'society_vigne', 'lighter', 0, NULL),
(13, 'society_vigne', 'bread', 0, NULL),
(14, 'society_taxi', 'wood', 0, NULL),
(15, 'society_taxi', 'cutted_wood', 0, NULL),
(16, 'society_taxi', 'alive_chicken', 0, NULL),
(17, 'society_police', 'grand_cru', 38, NULL),
(18, 'society_mecano', 'fixtool', 0, NULL),
(23, 'society_mecano', 'carokit', 0, NULL),
(25, 'society_taxi', 'weed', 0, NULL),
(26, 'society_vigne', 'wrap', 0, NULL),
(27, 'society_vigne', 'water', 0, NULL),
(28, 'society_police', 'weed', 0, NULL),
(29, 'society_vigne', 'weed', 0, NULL),
(30, 'society_vigne', 'alive_chicken', 0, NULL),
(31, 'society_mecano', 'weed', 0, NULL),
(32, 'society_taxi', 'coke', 0, NULL),
(33, 'society_police', 'weed_pooch', 0, NULL),
(34, 'society_police', 'coke_pooch', 0, NULL),
(35, 'society_police', 'meth', 0, NULL),
(36, 'society_motodealer', 'cocacola', 0, NULL),
(58, 'society_unicorn', 'grand_cru', 0, NULL),
(59, 'society_unicorn', 'vodka', 0, NULL),
(60, 'society_unicorn', 'whisky', 0, NULL),
(61, 'society_unicorn_fridge', 'grand_cru', 0, NULL),
(62, 'society_unicorn_fridge', 'vodka', 0, NULL),
(63, 'society_unicorn_fridge', 'whisky', 0, NULL),
(64, 'society_unicorn_fridge', 'wine', 0, NULL),
(65, 'society_unicorn_fridge', 'beer', 0, NULL),
(66, 'society_unicorn_fridge', 'tequila', 0, NULL),
(67, 'society_unicorn_fridge', 'cigarett', 0, NULL),
(68, 'society_unicorn', 'blackberry', 0, NULL),
(69, 'society_vigne', 'sandwich', 0, NULL),
(70, 'society_unicorn_fridge', 'cupcake', 0, NULL),
(71, 'society_unicorn_fridge', 'cocacola', 0, NULL),
(72, 'society_unicorn_fridge', 'hamburger', 0, NULL),
(73, 'society_unicorn_fridge', 'sandwich', 0, NULL),
(74, 'society_unicorn_fridge', 'redbull', 0, NULL),
(75, 'society_unicorn_fridge', 'milk', 0, NULL),
(76, 'society_unicorn_fridge', 'icetea', 0, NULL),
(77, 'society_unicorn_fridge', 'schabowy', 0, NULL),
(78, 'society_unicorn_fridge', 'wrap', 0, NULL),
(79, 'society_unicorn_fridge', 'pizza', 0, NULL),
(80, 'society_unicorn_fridge', 'kebab', 0, NULL),
(81, 'society_unicorn_fridge', 'barszcz', 0, NULL),
(82, 'society_unicorn_fridge', 'lighter', 0, NULL),
(83, 'society_unicorn_fridge', 'spaghetti', 0, NULL),
(84, 'society_unicorn_fridge', 'cisowianka', 0, NULL),
(85, 'society_unicorn_fridge', 'water', 0, NULL),
(86, 'society_unicorn_fridge', 'ice', 0, NULL),
(87, 'society_unicorn_fridge', 'menthe', 0, NULL),
(89, 'society_police', 'blackberry', 3, NULL),
(90, 'society_police', 'key', 0, NULL),
(91, 'society_police', 'handcuffs', 0, NULL),
(92, 'society_unicorn_fridge', 'rhum', 0, NULL),
(93, 'society_unicorn', 'raisin', 0, NULL),
(94, 'society_unicorn', 'vine', 0, NULL),
(96, 'society_police', 'drill', 0, NULL),
(98, 'society_police', 'blowpipe', 1, NULL);
/*!40000 ALTER TABLE `addon_inventory_items` ENABLE KEYS */;
-- Dumping structure for table server_3.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=InnoDB DEFAULT CHARSET=utf8;
-- Dumping data for table server_3.aircraftdealer_aircrafts: ~0 rows (approximately)
/*!40000 ALTER TABLE `aircraftdealer_aircrafts` DISABLE KEYS */;
/*!40000 ALTER TABLE `aircraftdealer_aircrafts` ENABLE KEYS */;
-- Dumping structure for table server_3.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=InnoDB DEFAULT CHARSET=utf8;
-- Dumping data for table server_3.aircrafts: ~21 rows (approximately)
/*!40000 ALTER TABLE `aircrafts` DISABLE KEYS */;
INSERT INTO `aircrafts` (`name`, `model`, `price`, `category`) VALUES
('Alpha Z1', 'alphaz1', 1595000, 'plane'),
('Besra', 'besra', 1150000, 'plane'),
('Cuban 800', 'cuban800', 240000, 'plane'),
('Dodo', 'dodo', 500000, 'plane'),
('Duster', 'duster', 275000, 'plane'),
('Frogger', 'frogger', 1300000, 'heli'),
('Howard NX25', 'howard', 975000, 'plane'),
('Luxor', 'luxor', 1625000, 'plane'),
('Luxor Deluxe ', 'luxor2', 10000000, 'plane'),
('Mammatus', 'mammatus', 300000, 'plane'),
('Maverick', 'maverick', 780000, 'heli'),
('Nimbus', 'nimbus', 1900000, 'plane'),
('Shamal', 'shamal', 1150000, 'plane'),
('Mallard', 'stunt', 250000, 'plane'),
('SuperVolito', 'supervolito', 2113000, 'heli'),
('SuperVolito Carbon', 'supervolito2', 3330000, 'heli'),
('Swift', 'swift', 1500000, 'heli'),
('Swift Deluxe', 'swift2', 5150000, 'heli'),
('Velum', 'velum2', 1323350, 'plane'),
('Vestra', 'vestra', 950000, 'plane'),
('Volatus', 'volatus', 2295000, 'heli');
/*!40000 ALTER TABLE `aircrafts` ENABLE KEYS */;
-- Dumping structure for table server_3.aircraft_categories
CREATE TABLE IF NOT EXISTS `aircraft_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=3 DEFAULT CHARSET=utf8;
-- Dumping data for table server_3.aircraft_categories: ~2 rows (approximately)
/*!40000 ALTER TABLE `aircraft_categories` DISABLE KEYS */;
INSERT INTO `aircraft_categories` (`id`, `name`, `label`) VALUES
(1, 'plane', 'Samoloty'),
(2, 'heli', 'Helikoptery');
/*!40000 ALTER TABLE `aircraft_categories` ENABLE KEYS */;
-- Dumping structure for table server_3.aplikacje
CREATE TABLE IF NOT EXISTS `aplikacje` (
`id` int(11) NOT NULL,
`ooc_imie` varchar(32) COLLATE utf8_polish_ci NOT NULL,
`ooc_data` date NOT NULL,
`steam` text COLLATE utf8_polish_ci NOT NULL,
`discord` text COLLATE utf8_polish_ci NOT NULL,
`ic_imie` varchar(32) COLLATE utf8_polish_ci NOT NULL,
`id_wiek` int(11) NOT NULL,
`ic_history` text COLLATE utf8_polish_ci NOT NULL,
`ic_s1` text COLLATE utf8_polish_ci NOT NULL,
`ic_s2` text COLLATE utf8_polish_ci NOT NULL,
`ic_akcja` text COLLATE utf8_polish_ci NOT NULL,
`status` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_polish_ci;
-- Dumping data for table server_3.aplikacje: ~0 rows (approximately)
/*!40000 ALTER TABLE `aplikacje` DISABLE KEYS */;
/*!40000 ALTER TABLE `aplikacje` ENABLE KEYS */;
-- Dumping structure for table server_3.bans_logs
CREATE TABLE IF NOT EXISTS `bans_logs` (
`id` int(11) NOT NULL,
`steam` text NOT NULL,
`odbanowal` text NOT NULL,
`reason` text NOT NULL,
`kiedy` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- Dumping data for table server_3.bans_logs: ~0 rows (approximately)
/*!40000 ALTER TABLE `bans_logs` DISABLE KEYS */;
/*!40000 ALTER TABLE `bans_logs` ENABLE KEYS */;
-- Dumping structure for table server_3.billing
CREATE TABLE IF NOT EXISTS `billing` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`identifier` varchar(255) COLLATE utf8mb4_bin NOT NULL,
`sender` varchar(255) COLLATE utf8mb4_bin NOT NULL,
`target_type` varchar(50) COLLATE utf8mb4_bin NOT NULL,
`target` varchar(255) COLLATE utf8mb4_bin NOT NULL,
`label` varchar(255) COLLATE utf8mb4_bin NOT NULL,
`amount` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;
-- Dumping data for table server_3.billing: ~0 rows (approximately)
/*!40000 ALTER TABLE `billing` DISABLE KEYS */;
/*!40000 ALTER TABLE `billing` ENABLE KEYS */;
-- Dumping structure for table server_3.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=InnoDB DEFAULT CHARSET=utf8;
-- Dumping data for table server_3.boatdealer_boats: ~0 rows (approximately)
/*!40000 ALTER TABLE `boatdealer_boats` DISABLE KEYS */;
/*!40000 ALTER TABLE `boatdealer_boats` ENABLE KEYS */;
-- Dumping structure for table server_3.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=InnoDB DEFAULT CHARSET=utf8;
-- Dumping data for table server_3.boats: ~14 rows (approximately)
/*!40000 ALTER TABLE `boats` DISABLE KEYS */;
INSERT INTO `boats` (`name`, `model`, `price`, `category`) VALUES
('Dinghy', 'dinghy', 2500, 'boat'),
('Dinghy2 ', 'dinghy2', 2500, 'boat'),
('Yacht Dinghy', 'dinghy4', 1500, 'boat'),
('Jetmax', 'jetmax', 17500, 'boat'),
('Voilier Marquis', 'marquis', 45500, 'boat'),
('Seashark', 'seashark', 1500, 'boat'),
('Seashark2', 'seashark2', 1500, 'boat'),
('Yacht Seashark', 'seashark3', 1500, 'boat'),
('Squalo', 'squalo', 12000, 'boat'),
('Suntrap', 'suntrap', 1500, 'boat'),
('Toro', 'toro', 15000, 'boat'),
('Yacht Toro', 'toro2', 15000, 'boat'),
('Tropic', 'tropic', 10000, 'boat'),
('Yacht Tropic', 'tropic2', 10000, 'boat');
/*!40000 ALTER TABLE `boats` ENABLE KEYS */;
-- Dumping structure for table server_3.boat_categories
CREATE TABLE IF NOT EXISTS `boat_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=utf8;
-- Dumping data for table server_3.boat_categories: ~0 rows (approximately)
/*!40000 ALTER TABLE `boat_categories` DISABLE KEYS */;
INSERT INTO `boat_categories` (`id`, `name`, `label`) VALUES
(1, 'boat', 'Lodzie');
/*!40000 ALTER TABLE `boat_categories` ENABLE KEYS */;
-- Dumping structure for table server_3.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 DEFAULT CHARSET=latin1;
-- Dumping data for table server_3.cardealer_vehicles: ~0 rows (approximately)
/*!40000 ALTER TABLE `cardealer_vehicles` DISABLE KEYS */;
/*!40000 ALTER TABLE `cardealer_vehicles` ENABLE KEYS */;
-- Dumping structure for table server_3.cardealer_vehicles2
CREATE TABLE IF NOT EXISTS `cardealer_vehicles2` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`vehicle` varchar(255) NOT NULL,
`price` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- Dumping data for table server_3.cardealer_vehicles2: ~0 rows (approximately)
/*!40000 ALTER TABLE `cardealer_vehicles2` DISABLE KEYS */;
/*!40000 ALTER TABLE `cardealer_vehicles2` ENABLE KEYS */;
-- Dumping structure for table server_3.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 'f',
`height` varchar(128) NOT NULL,
`lastdigits` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8;
-- Dumping data for table server_3.characters: ~8 rows (approximately)
/*!40000 ALTER TABLE `characters` DISABLE KEYS */;
/*!40000 ALTER TABLE `characters` ENABLE KEYS */;
-- Dumping structure for table server_3.city_doors
CREATE TABLE IF NOT EXISTS `city_doors` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`locked` int(1) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8;
-- Dumping data for table server_3.city_doors: ~13 rows (approximately)
/*!40000 ALTER TABLE `city_doors` DISABLE KEYS */;
INSERT INTO `city_doors` (`id`, `locked`) VALUES
(1, 0),
(2, 0),
(3, 0),
(4, 0),
(5, 0),
(6, 0),
(7, 0),
(8, 0),
(9, 0),
(10, 0),
(11, 0),
(12, 0),
(13, 0);
/*!40000 ALTER TABLE `city_doors` ENABLE KEYS */;
-- Dumping structure for table server_3.darkshops
CREATE TABLE IF NOT EXISTS `darkshops` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL,
`item` varchar(255) NOT NULL,
`price` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=latin1;
-- Dumping data for table server_3.darkshops: ~14 rows (approximately)
/*!40000 ALTER TABLE `darkshops` DISABLE KEYS */;
INSERT INTO `darkshops` (`id`, `name`, `item`, `price`) VALUES
(1, 'Darks', 'Darknet', 100),
(2, 'Darks', 'drill', 100),
(3, 'Darks', 'blowpipe', 100),
(4, 'Darks', 'bulletproof', 100),
(5, 'Darks', 'clip', 100),
(6, 'Darks', 'grip', 100),
(7, 'Darks', 'silent', 100),
(8, 'Darks', 'flashlight', 100),
(9, 'Darks', 'scope', 100),
(10, 'Darks', 'advanced_scope', 100),
(11, 'Darks', 'extended_magazine', 100),
(12, 'Darks', 'very_extended_magazine', 100),
(13, 'Darks', 'yusuf', 100),
(14, 'Darks', 'lowrider', 100);
/*!40000 ALTER TABLE `darkshops` ENABLE KEYS */;
-- Dumping structure for table server_3.datastore
CREATE TABLE IF NOT EXISTS `datastore` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8mb4_bin NOT NULL,
`label` varchar(255) COLLATE utf8mb4_bin NOT NULL,
`shared` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;
-- Dumping data for table server_3.datastore: ~18 rows (approximately)
/*!40000 ALTER TABLE `datastore` DISABLE KEYS */;
INSERT INTO `datastore` (`id`, `name`, `label`, `shared`) VALUES
(1, 'society_avocat', 'Adwokat', 1),
(2, 'society_police', 'LSPD', 1),
(3, 'property', 'Nieruchomosci', 0),
(4, 'user_ears', 'Uszy', 0),
(5, 'user_glasses', 'Okulary', 0),
(6, 'user_helmet', 'Helm', 0),
(7, 'user_mask', 'Maska', 0),
(8, 'society_unicorn', 'Unicorn', 1),
(9, 'society_taxi', 'Taxi', 1),
(10, 'society_vigne', 'Winegrower', 1),
(11, 'society_carthief', 'Car Thief', 1),
(12, 'society_journaliste', 'journaliste', 1),
(13, 'society_biker', 'Biker', 1),
(14, 'society_biker', 'Biker', 1),
(15, 'society_cartel', 'Cartel', 1),
(16, 'society_gang', 'Gang', 1),
(17, 'society_mafia', 'Mafia', 1),
(18, 'society_state', 'State', 1);
/*!40000 ALTER TABLE `datastore` ENABLE KEYS */;
-- Dumping structure for table server_3.datastore_data
CREATE TABLE IF NOT EXISTS `datastore_data` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8mb4_bin NOT NULL,
`owner` varchar(255) COLLATE utf8mb4_bin DEFAULT NULL,
`data` longtext COLLATE utf8mb4_bin,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3282 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;
-- Dumping data for table server_3.datastore_data: ~1,560 rows (approximately)
/*!40000 ALTER TABLE `datastore_data` DISABLE KEYS */;
INSERT INTO `datastore_data` (`id`, `name`, `owner`, `data`) VALUES
(1, 'society_avocat', NULL, '{}'),
(2, 'society_police', NULL, '{}'),
(689, 'society_taxi', NULL, '{}'),
(690, 'society_vigne', NULL, '{}'),
(691, 'society_carthief', NULL, '{}'),
(692, 'society_unicorn', NULL, '{}'),
(3246, 'society_journaliste', NULL, '{}'),
(3257, 'society_biker', NULL, '{}'),
(3258, 'society_cartel', NULL, '{}'),
(3259, 'society_gang', NULL, '{}'),
(3260, 'society_mafia', NULL, '{}'),
(3261, 'society_state', NULL, '{}');
/*!40000 ALTER TABLE `datastore_data` ENABLE KEYS */;
-- Dumping structure for table server_3.ea_bans
CREATE TABLE IF NOT EXISTS `ea_bans` (
`banid` int(11) NOT NULL AUTO_INCREMENT,
`expire` double NOT NULL DEFAULT '10444633200',
`identifier` text NOT NULL,
`steam` text NOT NULL,
`reason` text NOT NULL,
PRIMARY KEY (`banid`),
UNIQUE KEY `banid` (`banid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- Dumping data for table server_3.ea_bans: ~0 rows (approximately)
/*!40000 ALTER TABLE `ea_bans` DISABLE KEYS */;
/*!40000 ALTER TABLE `ea_bans` ENABLE KEYS */;
-- Dumping structure for table server_3.fine_types
CREATE TABLE IF NOT EXISTS `fine_types` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`label` varchar(255) COLLATE utf8mb4_bin DEFAULT NULL,
`amount` int(11) DEFAULT NULL,
`category` int(11) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=69 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;
-- Dumping data for table server_3.fine_types: ~48 rows (approximately)
/*!40000 ALTER TABLE `fine_types` DISABLE KEYS */;
INSERT INTO `fine_types` (`id`, `label`, `amount`, `category`) VALUES
(1, 'do 10km/h', 50, 0),
(2, '11 - 20 km/h', 75, 0),
(3, '21 - 30 km/h', 150, 0),
(4, '31 - 40 km/h', 250, 0),
(5, '41 - 50 km/h', 350, 0),
(6, '51 + km/h', 450, 0),
(7, 'Utrudnianie ruchu innym kierowca', 125, 0),
(8, 'Zwiekszanie predkosci podczas wyprzedania', 350, 0),
(9, 'Nieustapienie pierwszenstwa (ruch)', 300, 1),
(10, 'Wjezdzanie na pas miedzy jezdniami', 100, 1),
(11, 'Utrudnianie ruchu poprzez brak sygnalizowania', 200, 1),
(12, 'Utrudnianie ruchu poprzez bledne sygnalizowanie', 200, 1),
(13, 'Nieustapienie pierwszenstwa (zmiana pasa)', 250, 1),
(14, 'Niebezpieczne hamowanie', 200, 1),
(15, 'Wyprzedzanie na przejazdach kolejowych itp', 300, 1),
(16, 'Wyprzedzanie bez zachowania bezpiecznego odstepu', 300, 1),
(17, 'Wyprzedzanie z niewlasciwej strony', 200, 1),
(18, 'Wyprzedzanie pojazdu uprzywilejowanego', 300, 1),
(19, 'Niekorzystanie z pasow bezpieczensta podczas jazdy', 100, 2),
(20, 'Nieuzywanie kasku ochronnego (motory, motorowery itp)', 100, 2),
(21, 'Korzystanie z telefonu podczas jazdy', 200, 2),
(22, 'Nieuzywanie elementow odblaskowych ', 150, 2),
(23, 'Brak oznaczen pojazdow do nauki jazdy', 300, 2),
(24, 'na przejsciach dla pieszych', 50, 3),
(25, 'w miejscach innych niz przejscia dla pieszych', 100, 3),
(26, 'przebieganie przez jezdnie', 50, 3),
(27, 'Chodzenie po torowisku', 50, 3),
(28, 'naruszanie przepisow ruchu pieszych lub rowerow', 50, 3),
(29, 'Przejachanie na czerwonym swietle', 300, 0),
(30, 'Nie wylaczenie silnika podczas postoju', 200, 2),
(31, 'Zle parkowanie', 300, 1),
(32, 'Grzywna 1', 100, 4),
(53, 'Grzywna 2', 200, 4),
(54, 'Grzywna 3', 300, 4),
(55, 'Grzywna 4', 400, 4),
(56, 'Grzywna 5', 500, 4),
(57, 'Grzywna 6', 600, 4),
(58, 'Grzywna 7', 700, 4),
(59, 'Grzywna 8', 800, 4),
(60, 'Grzywna 9', 900, 4),
(61, 'Grzywna 10', 1000, 4),
(62, 'Grzywna 11', 1100, 4),
(63, 'Grzywna 12', 1200, 4),
(64, 'Grzywna 13', 1300, 4),
(65, 'Grzywna 14', 1400, 4),
(66, 'Grzywna 15', 1500, 4),
(67, 'Grzywna 16', 2000, 4),
(68, 'Grzywna 17', 3000, 4);
/*!40000 ALTER TABLE `fine_types` ENABLE KEYS */;
-- Dumping structure for table server_3.fine_types_biker
CREATE TABLE IF NOT EXISTS `fine_types_biker` (
`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=8 DEFAULT CHARSET=latin1;
-- Dumping data for table server_3.fine_types_biker: ~7 rows (approximately)
/*!40000 ALTER TABLE `fine_types_biker` DISABLE KEYS */;
INSERT INTO `fine_types_biker` (`id`, `label`, `amount`, `category`) VALUES
(1, 'Raket', 3000, 0),
(2, 'Raket', 5000, 0),
(3, 'Raket', 10000, 1),
(4, 'Raket', 20000, 1),
(5, 'Raket', 50000, 2),
(6, 'Raket', 150000, 3),
(7, 'Raket', 350000, 3);
/*!40000 ALTER TABLE `fine_types_biker` ENABLE KEYS */;
-- Dumping structure for table server_3.fine_types_cartel
CREATE TABLE IF NOT EXISTS `fine_types_cartel` (
`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=8 DEFAULT CHARSET=latin1;
-- Dumping data for table server_3.fine_types_cartel: ~7 rows (approximately)
/*!40000 ALTER TABLE `fine_types_cartel` DISABLE KEYS */;
INSERT INTO `fine_types_cartel` (`id`, `label`, `amount`, `category`) VALUES
(1, 'Raket', 3000, 0),
(2, 'Raket', 5000, 0),
(3, 'Raket', 10000, 1),
(4, 'Raket', 20000, 1),
(5, 'Raket', 50000, 2),
(6, 'Raket', 150000, 3),
(7, 'Raket', 350000, 3);
/*!40000 ALTER TABLE `fine_types_cartel` ENABLE KEYS */;
-- Dumping structure for table server_3.fine_types_gang
CREATE TABLE IF NOT EXISTS `fine_types_gang` (
`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=8 DEFAULT CHARSET=latin1;
-- Dumping data for table server_3.fine_types_gang: ~7 rows (approximately)
/*!40000 ALTER TABLE `fine_types_gang` DISABLE KEYS */;
INSERT INTO `fine_types_gang` (`id`, `label`, `amount`, `category`) VALUES
(1, 'Raket', 3000, 0),
(2, 'Raket', 5000, 0),
(3, 'Raket', 10000, 1),
(4, 'Raket', 20000, 1),
(5, 'Raket', 50000, 2),
(6, 'Raket', 150000, 3),
(7, 'Raket', 350000, 3);
/*!40000 ALTER TABLE `fine_types_gang` ENABLE KEYS */;
-- Dumping structure for table server_3.fine_types_mafia
CREATE TABLE IF NOT EXISTS `fine_types_mafia` (
`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=8 DEFAULT CHARSET=latin1;
-- Dumping data for table server_3.fine_types_mafia: ~7 rows (approximately)
/*!40000 ALTER TABLE `fine_types_mafia` DISABLE KEYS */;
INSERT INTO `fine_types_mafia` (`id`, `label`, `amount`, `category`) VALUES
(1, 'Raket', 3000, 0),
(2, 'Raket', 5000, 0),
(3, 'Raket', 10000, 1),
(4, 'Raket', 20000, 1),
(5, 'Raket', 50000, 2),
(6, 'Raket', 150000, 3),
(7, 'Raket', 350000, 3);
/*!40000 ALTER TABLE `fine_types_mafia` ENABLE KEYS */;
-- Dumping structure for table server_3.hospital
CREATE TABLE IF NOT EXISTS `hospital` (
`identifier` varchar(100) NOT NULL,
`H_Time` int(10) NOT NULL,
`H_Bed` varchar(5) NOT NULL,
`Medic` varchar(100) NOT NULL,
`Medic_ID` varchar(100) NOT NULL,
`reason` varchar(100) NOT NULL,
PRIMARY KEY (`identifier`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- Dumping data for table server_3.hospital: ~1 rows (approximately)
/*!40000 ALTER TABLE `hospital` DISABLE KEYS */;
/*!40000 ALTER TABLE `hospital` ENABLE KEYS */;
-- Dumping structure for table server_3.impounded_vehicles
CREATE TABLE IF NOT EXISTS `impounded_vehicles` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`plate` varchar(12) DEFAULT NULL,
`vehicle` text,
`owner` varchar(250) DEFAULT NULL,
`impounded_at` int(11) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `owner` (`owner`),
KEY `plate` (`plate`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
-- Dumping data for table server_3.impounded_vehicles: ~0 rows (approximately)
/*!40000 ALTER TABLE `impounded_vehicles` DISABLE KEYS */;
/*!40000 ALTER TABLE `impounded_vehicles` ENABLE KEYS */;
-- Dumping structure for table server_3.items
CREATE TABLE IF NOT EXISTS `items` (
`ID` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(50) COLLATE utf8mb4_bin NOT NULL,
`label` varchar(255) 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 (`ID`)
) ENGINE=InnoDB AUTO_INCREMENT=154 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;
-- Dumping data for table server_3.items: ~116 rows (approximately)
/*!40000 ALTER TABLE `items` DISABLE KEYS */;
INSERT INTO `items` (`ID`, `name`, `label`, `limit`, `rare`, `can_remove`) VALUES
(1, 'alive_chicken', 'Kurczak', 100, 0, 1),
(2, 'bandage', 'Bandaz', 10, 0, 1),
(3, 'barszcz', 'Barszcz', 10, 0, 1),
(4, 'beer', 'Piwo', 10, 0, 1),
(5, 'blackberry', 'Telefon', 5, 0, 1),
(6, 'blindfold', 'Maska', 1, 0, 1),
(7, 'blowpipe', 'Palnik', 1, 0, 1),
(8, 'bolcacahuetes', 'Miska orzeszkow ziemnych', 5, 0, 1),
(9, 'bolchips', 'Miska z frytkami', 5, 0, 1),
(10, 'bolnoixcajou', 'Miska orzeszkow nerkowca', 5, 0, 1),
(11, 'bolpistache', 'Miska orzeszkow pistacjowych', 5, 0, 1),
(12, 'bread', 'Chleb', 10, 0, 1),
(13, 'bulletproof', 'Kamizelka Kuloodporna', 1, 0, 1),
(14, 'carokit', 'Zestaw do Auta', 10, 0, 1),
(15, 'carotool', 'Narzedzia do Auta', 10, 0, 1),
(16, 'chocolate', 'Czekolada', 10, 0, 1),
(17, 'cigarett', 'Papieros', 10, 0, 1),
(18, 'cisowianka', 'Cisowianka', 10, 0, 1),
(19, 'clothe', 'Ubrania', 100, 0, 1),
(20, 'cocacola', 'Coca-Cola', 10, 0, 1),
(21, 'coke', 'Kokaina', 500, 0, 1),
(22, 'coke_pooch', 'Gram Kokainy', 100, 0, 1),
(23, 'copper', 'Miedz', 100, 0, 1),
(24, 'craking', 'Zestaw Hackerski', 1, 0, 1),
(25, 'croquettes', 'Krokiety', 10, 0, 1),
(26, 'cupcake', 'Ciasteczko', 10, 0, 1),
(27, 'cutted_wood', 'Deski', 100, 0, 1),
(28, 'diamond', 'Diament', 100, 0, 1),
(29, 'donut', 'Paczek', 10, 0, 1),
(30, 'drill', 'Wiertarka Termiczna', 1, 0, 1),
(31, 'drpepper', 'Dr. Pepper', 10, 0, 1),
(32, 'energy', 'Energy Drink', 10, 0, 1),
(33, 'essence', 'Esencja', 100, 0, 1),
(34, 'fabric', 'Tkanina', 100, 0, 1),
(35, 'fish', 'Ryba', 100, 0, 1),
(36, 'fixkit', 'Czesci Naprawcze', 100, 0, 1),
(37, 'fixtool', 'Zestaw Napraczy', 10, 0, 1),
(38, 'gazbottle', 'Kanister', 1, 0, 1),
(39, 'gold', 'Zloto', 100, 0, 1),
(40, 'golem', 'Golem', 5, 0, 1),
(41, 'gps', 'GPS', 1, 0, 1),
(42, 'grand_cru', 'Butelka Wina', 100, 0, 1),
(43, 'grapperaisin', 'Kisc winogron', 5, 0, 1),
(44, 'hamburger', 'Hamburger', 10, 0, 1),
(46, 'ice', 'Lod', 5, 0, 1),
(47, 'icetea', 'Ice-Tea', 10, 0, 1),
(48, 'iron', 'Zelazo', 100, 0, 1),
(49, 'jager', 'Jägermeister', 5, 0, 1),
(50, 'jagerbomb', 'Jägerbomb', 5, 0, 1),
(51, 'jagercerbere', 'Jäger Cerbère', 5, 0, 1),
(52, 'journal', 'Dokumenty', 5, 0, 1),
(53, 'jumelles', 'Lornetka', 1, 0, 1),
(54, 'jus_raisin', 'Sok Winogronowy', 100, 0, 1),
(55, 'jusfruit', 'Sok owocowy', 5, 0, 1),
(56, 'kebab', 'Kebab', 10, 0, 1),
(57, 'key', 'Kluczyki do Kajdanek', 5, 0, 1),
(58, 'lighter', 'Zapalniczka', 1, 0, 1),
(59, 'limonade', 'Lemoniada', 5, 0, 1),
(60, 'martini', 'Martini blanc', 5, 0, 1),
(61, 'medikit', 'Apteczka', 10, 0, 1),
(62, 'menthe', 'Lisc miety', 10, 0, 1),
(63, 'meth', 'Metamfetamina', 500, 0, 1),
(64, 'meth_pooch', 'Gram Metamfetaminy', 100, 0, 1),
(65, 'metreshooter', 'Miernik strzelanki', 5, 0, 1),
(66, 'milk', 'Mleko', 10, 0, 1),
(67, 'mixapero', 'Aperitif mix', 5, 0, 1),
(68, 'mojito', 'Mojito', 5, 0, 1),
(69, 'opium', 'Opium', 50, 0, 1),
(70, 'opium_pooch', 'Gram Opium', 10, 0, 1),
(71, 'oxygen_mask', 'Maska do plywania', 2, 0, 1),
(72, 'packaged_chicken', 'Kubelek Skrzydelek', 100, 0, 1),
(73, 'packaged_plank', 'Zestaw Desek', 100, 0, 1),
(74, 'petrol', 'Paliwo', 100, 0, 1),
(75, 'petrol_raffin', 'Barylka Benzyny', 100, 0, 1),
(76, 'picnic', 'Zestaw piknikowy', 1, 0, 1),
(77, 'pizza', 'Pizza', 10, 0, 1),
(78, 'raisin', 'Winogrono', 100, 0, 1),
(79, 'redbull', 'RedBull', 10, 0, 1),
(80, 'redgull', 'Tiger Energy', 5, 0, 1),
(81, 'rhum', 'Rum', 5, 0, 1),
(82, 'rhumcoca', 'Rum-coca', 5, 0, 1),
(83, 'rhumfruit', 'Rum-Sok owocowy', 5, 0, 1),
(84, 'rose', 'Czerwona Roza', 2, 0, 1),
(85, 'sandwich', 'Kanapka', 10, 0, 1),
(86, 'saucisson', 'Kielbasa', 5, 0, 1),
(87, 'schabowy', 'Schabowy', 10, 0, 1),
(88, 'slaughtered_chicken', 'Zabity Kurczak', 100, 0, 1),
(89, 'soda', 'Soda', 5, 0, 1),
(90, 'spaghetti', 'Spadzetii', 10, 0, 1),
(91, 'stone', 'Kamien', 10, 0, 1),
(92, 'teqpaf', 'Teq\'paf', 5, 0, 1),
(93, 'tequila', 'Tequila', 10, 0, 1),
(94, 'umbrella', 'Parasolka', 2, 0, 1),
(95, 'vine', 'Wino', 100, 0, 1),
(96, 'vodka', 'Wodka', 10, 0, 1),
(97, 'vodkaenergy', 'Wodka-RedBull', 5, 0, 1),
(98, 'vodkafruit', 'Wodka-Sok owocowy', 5, 0, 1),
(99, 'washed_stone', 'Oszlifowany Kamien', 10, 0, 1),
(100, 'water', 'Woda', 10, 0, 1),
(101, 'weed', 'Ziolo', 500, 0, 1),
(102, 'weed_pooch', 'Gram Ziola', 100, 0, 1),
(103, 'whisky', 'Whisky', 10, 0, 1),
(104, 'whiskycoca', 'Whisky-coca', 5, 0, 1),
(105, 'whool', 'Welna', 100, 0, 1),
(106, 'wine', 'Wino', 100, 0, 1),
(107, 'wood', 'Drewno', 100, 0, 1),
(108, 'wrap', 'Wrap', 10, 0, 1),
(109, 'xanax', 'Xanax', 100, 0, 1),
(110, 'black_chip', 'DeepWeb', 1, 0, 1),
(111, 'poubelle', 'Smieci', 30, 0, 1),
(112, 'solo_key', 'Solo Key', 1, 0, 1),
(113, 'multi_key', 'Multi Key', 1, 0, 1),
(114, 'clip', 'Clip', 2, 0, 1),
(117, 'gym_membership', 'Gym Membership', -1, 0, 1),
(118, 'powerade', 'Powerade', -1, 0, 1),
(119, 'sportlunch', 'Sportlunch', -1, 0, 1),
(120, 'protein_shake', 'Protein Shake', -1, 0, 1),
(127, 'grip', 'Grip', -1, 0, 1),
(128, 'flashlight', 'Flashlight', -1, 0, 1),
(129, 'silent', 'Silencer', -1, 0, 1),
(130, 'scope', 'Scope', -1, 0, 1),
(131, 'advanced_scope', 'Advanced Scope', -1, 0, 1),
(132, 'extended_magazine', 'Extended Magazine', -1, 0, 1),
(133, 'very_extended_magazine', 'Very Extended Magazine', -1, 0, 1),
(134, 'yusuf', 'Luxury Skin', -1, 0, 1),
(135, 'lowrider', 'Lowrider Skin', -1, 0, 1),
(136, 'darknet', 'Dark Net', 1, 0, 1),
(137, 'goldmedal', 'Rallin kultamitali', -1, 0, 1),
(138, 'silvermedal', 'Rallin hopeamitali', -1, 0, 1),
(139, 'bronzemedal', 'Rallin pronssimitali', -1, 0, 1),
(140, 'wool', 'Welna', 100, 0, 1),
(141, 'meat', 'Mieso', 100, 0, 1),
(142, 'leather', 'Skora', 100, 0, 1),
(143, 'bait', 'Przyneta', 200, 0, 1),
(144, 'fish', 'Ryba', 200, 0, 1),
(145, 'fishingrod', 'Wedka', 1, 0, 1),
(146, 'rope', 'Lina', 1, 0, 1),
(147, 'handcuffs', 'Kajdanki', 1, 0, 1),
(148, 'phone', 'Telefon', 1, 0, 1),
(149, 'lockpick', 'Wytrych', 3, 0, 1),
(150, 'scratchoff', 'Zdrapka', -1, 0, 1),
(151, 'scratchoff_used', 'Zuzyta Zdrapka', -1, 0, 1),
(152, 'anti', 'Antybiotyk', -1, 0, 1),
(153, 'nitro', 'Nitro', -1, 0, 1);
/*!40000 ALTER TABLE `items` ENABLE KEYS */;
-- Dumping structure for table server_3.item_weight
CREATE TABLE IF NOT EXISTS `item_weight` (
`id` int(11) NOT NULL,
`item` varchar(255) NOT NULL,
`weight` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- Dumping data for table server_3.item_weight: ~55 rows (approximately)
/*!40000 ALTER TABLE `item_weight` DISABLE KEYS */;
INSERT INTO `item_weight` (`id`, `item`, `weight`) VALUES
(1, 'gazbottle', 2000),
(2, 'fixtool', 1500),
(3, 'carotool', 1000),
(4, 'blowpipe', 1200),
(5, 'fixkit', 1500),
(6, 'carokit', 1000),
(7, 'bread', 125),
(8, 'water', 500),
(9, 'alive_chicken', 1000),
(10, 'slaughtered_chicken', 800),
(11, 'packaged_chicken', 600),
(12, 'fish', 300),
(13, 'stone', 500),
(14, 'washed_stone', 450),
(15, 'copper', 400),
(16, 'iron', 450),
(17, 'gold', 350),
(18, 'diamond', 480),
(19, 'wood', 1000),
(20, 'cutted_wood', 750),
(21, 'packaged_plank', 550),
(22, 'petrol', 600),
(23, 'petrol_raffin', 500),
(24, 'essence', 250),
(25, 'whool', 300),
(26, 'clothe', 200),
(27, 'fabric', 220),
(28, 'weed', 800),
(29, 'weed_pooch', 650),
(30, 'coke', 600),
(31, 'coke_pooch', 500),
(32, 'meth', 600),
(33, 'meth_pooch', 500),
(34, 'opium', 600),
(35, 'opium_pooch', 500),
(36, 'permis', 500),
(37, 'bandage', 250),
(38, 'medikit', 500),
(39, 'lsd', 600),
(40, 'lsd_pooch', 500),
(41, 'codeine', 250),
(42, 'essence', 250),
(43, 'disolvant', 250),
(44, 'phosphorerouge', 250),
(45, 'heroine', 250),
(46, 'iode', 250),
(47, 'kroko_pooch', 500),
(48, 'silencieux', 1000),
(49, 'flashlight', 1000),
(50, 'grip', 1000),
(51, 'yusuf', 500),
(52, 'vine', 500),
(53, 'wine', 500),
(54, 'jus_raisin', 500),
(55, 'raisin', 500);
/*!40000 ALTER TABLE `item_weight` ENABLE KEYS */;
-- Dumping structure for table server_3.jail
CREATE TABLE IF NOT EXISTS `jail` (
`identifier` varchar(100) NOT NULL,
`isjailed` tinyint(1) DEFAULT NULL,
`J_Time` datetime NOT NULL,
`J_Cell` varchar(20) NOT NULL,
`Jailer` varchar(100) NOT NULL,
`Jailer_ID` varchar(100) NOT NULL,
PRIMARY KEY (`identifier`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- Dumping data for table server_3.jail: ~2 rows (approximately)
/*!40000 ALTER TABLE `jail` DISABLE KEYS */;
/*!40000 ALTER TABLE `jail` ENABLE KEYS */;
-- Dumping structure for table server_3.jobs
CREATE TABLE IF NOT EXISTS `jobs` (
`name` varchar(50) COLLATE utf8mb4_bin NOT NULL,
`label` varchar(255) COLLATE utf8mb4_bin DEFAULT NULL,
`whitelisted` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;
-- Dumping data for table server_3.jobs: ~34 rows (approximately)
/*!40000 ALTER TABLE `jobs` DISABLE KEYS */;
INSERT INTO `jobs` (`name`, `label`, `whitelisted`) VALUES
('aircraftdealer', 'Sprzedawca Lotniczy', 1),
('ambulance', 'EMS', 1),
('avocat', 'Adwokat', 1),
('banker', 'Bankier', 1),
('biker', 'Biker', 1),
('boatdealer', 'Sprzedawca Lodzi', 1),
('cardealer', 'Sprzedawca Aut', 1),
('cartel', 'Cartel', 1),
('eboueur', 'Smieciarz', 0),
('fisherman', 'OLD DONT USE', 1),
('fueler', 'Rafineria', 0),
('gang', 'Gang', 1),
('gopostal', 'OLD DONT USE', 1),
('journaliste', 'Reporter', 1),
('lumberjack', 'Drwal', 0),
('mafia', 'Mafia', 1),
('mecano', 'Mechanik', 1),
('miner', 'Gornik', 0),
('motodealer', 'Sprzedawca Motocykli', 1),
('offambulance', 'Medyk Poza Sluzba', 1),
('offpolice', 'Policjant Poza Sluzba', 1),
('parking', 'Parking Enforcement', 1),
('police', 'LSPD', 1),
('poste', 'Poczta', 0),
('rally', 'Rajd', 0),