-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbloodbullets.sql
More file actions
4541 lines (4005 loc) · 365 KB
/
Copy pathbloodbullets.sql
File metadata and controls
4541 lines (4005 loc) · 365 KB
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 5.2.3
-- https://www.phpmyadmin.net/
--
-- Host: db
-- Gegenereerd op: 19 jun 2026 om 16:37
-- Serverversie: 12.2.2-MariaDB-ubu2404
-- PHP-versie: 8.3.30
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
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 */;
--
-- Database: `example`
--
-- --------------------------------------------------------
--
-- Tabelstructuur voor tabel `airplane`
--
CREATE TABLE `airplane` (
`id` smallint(6) NOT NULL,
`name` varchar(25) DEFAULT NULL,
`picture` varchar(30) DEFAULT NULL COMMENT 'type=upload',
`price` int(11) NOT NULL DEFAULT 0,
`power` smallint(6) NOT NULL DEFAULT 10,
`position` smallint(6) DEFAULT NULL,
`active` tinyint(1) NOT NULL DEFAULT 1,
`deleted` tinyint(1) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPACT;
--
-- Gegevens worden geëxporteerd voor tabel `airplane`
--
INSERT INTO `airplane` (`id`, `name`, `picture`, `price`, `power`, `position`, `active`, `deleted`) VALUES
(0, 'Geen', NULL, 0, 0, 6, 1, 0),
(1, 'Fokker DR-1', 'bad8f55b.jpg', 200000, 11, 0, 1, 0),
(2, 'Havilland DH 82A', 'c05ad5fb.jpg', 500000, 27, 1, 1, 0),
(3, 'Fleet-7', '89a9ca23.jpg', 1100000, 38, 2, 1, 0),
(4, 'Douglas DC-3', 'e8978f01.jpg', 2000000, 52, 3, 1, 0),
(5, 'Cassna', '4cf01792.jpg', 3500000, 67, 4, 1, 0),
(6, 'Lear Yet', '7a057466.jpg', 4500000, 78, 5, 1, 0);
-- --------------------------------------------------------
--
-- Tabelstructuur voor tabel `analytics_event`
--
CREATE TABLE `analytics_event` (
`id` bigint(20) NOT NULL,
`sessionID` bigint(20) NOT NULL,
`userID` bigint(20) DEFAULT NULL,
`routeName` varchar(100) DEFAULT NULL,
`path` varchar(255) NOT NULL,
`isLoggedIn` tinyint(1) NOT NULL DEFAULT 0,
`eventType` varchar(50) NOT NULL,
`eventName` varchar(100) NOT NULL,
`metaJson` longtext DEFAULT NULL,
`createdAt` datetime NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Tabelstructuur voor tabel `analytics_page_view`
--
CREATE TABLE `analytics_page_view` (
`id` bigint(20) NOT NULL,
`sessionID` bigint(20) NOT NULL,
`userID` bigint(20) DEFAULT NULL,
`routeName` varchar(100) DEFAULT NULL,
`path` varchar(255) NOT NULL,
`isLoggedIn` tinyint(1) NOT NULL DEFAULT 0,
`timeOnPageMs` int(11) DEFAULT NULL,
`visitedAt` datetime NOT NULL,
`createdAt` datetime NOT NULL DEFAULT current_timestamp(),
`updatedAt` datetime DEFAULT current_timestamp() ON UPDATE current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Tabelstructuur voor tabel `analytics_session`
--
CREATE TABLE `analytics_session` (
`id` bigint(20) NOT NULL,
`anonId` varchar(64) NOT NULL,
`userID` bigint(20) DEFAULT NULL,
`isLoggedIn` tinyint(1) NOT NULL DEFAULT 0,
`encryptedIp` text NOT NULL,
`userAgent` varchar(255) DEFAULT NULL,
`referrer` varchar(255) DEFAULT NULL,
`landingPage` varchar(255) DEFAULT NULL,
`startedAt` datetime NOT NULL,
`lastSeenAt` datetime NOT NULL,
`createdAt` datetime NOT NULL DEFAULT current_timestamp(),
`updatedAt` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Tabelstructuur voor tabel `bank_log`
--
CREATE TABLE `bank_log` (
`id` bigint(20) NOT NULL,
`senderID` bigint(20) DEFAULT NULL,
`receiverID` bigint(20) DEFAULT NULL,
`amount` bigint(20) DEFAULT NULL,
`message` varchar(255) DEFAULT NULL,
`date` datetime NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPACT;
-- --------------------------------------------------------
--
-- Tabelstructuur voor tabel `bullet_factory`
--
CREATE TABLE `bullet_factory` (
`id` tinyint(1) NOT NULL COMMENT 'type=disabled',
`possessID` int(11) NOT NULL DEFAULT 0,
`bullets` int(11) NOT NULL DEFAULT 0,
`priceEachBullet` int(11) NOT NULL DEFAULT 2500,
`production` int(11) NOT NULL DEFAULT 10000
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPACT;
--
-- Gegevens worden geëxporteerd voor tabel `bullet_factory`
--
INSERT INTO `bullet_factory` (`id`, `possessID`, `bullets`, `priceEachBullet`, `production`) VALUES
(1, 1, 10000, 2500, 0),
(2, 2, 10000, 2500, 0),
(3, 3, 10000, 2500, 0),
(4, 4, 10000, 2500, 0),
(5, 5, 10000, 2500, 0),
(6, 6, 10000, 2500, 0);
-- --------------------------------------------------------
--
-- Tabelstructuur voor tabel `business`
--
CREATE TABLE `business` (
`id` mediumint(9) NOT NULL,
`name` varchar(50) NOT NULL DEFAULT '',
`opening_price` float(6,2) NOT NULL DEFAULT 0.00,
`last_price` float(6,2) NOT NULL DEFAULT 0.00,
`close_price` float(6,2) NOT NULL DEFAULT 0.00,
`high_price` float(6,2) NOT NULL DEFAULT 0.00,
`low_price` float(6,2) NOT NULL DEFAULT 0.00
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPACT;
--
-- Gegevens worden geëxporteerd voor tabel `business`
--
INSERT INTO `business` (`id`, `name`, `opening_price`, `last_price`, `close_price`, `high_price`, `low_price`) VALUES
(1, 'McDopals', 127.32, 127.32, 127.32, 127.32, 127.32),
(2, 'Palmart', 157.12, 157.12, 157.12, 157.12, 157.12),
(3, 'QRadio', 27.03, 27.03, 27.03, 27.03, 27.03),
(4, 'Fibernet', 57.56, 57.56, 57.56, 57.56, 57.56),
(5, 'KFB', 79.20, 79.20, 79.20, 79.20, 79.20),
(6, 'DanFashion', 36.00, 36.00, 36.00, 36.00, 36.00),
(7, 'LibertyBank', 299.21, 299.21, 299.21, 299.21, 299.21),
(8, 'DN-Insurance', 71.70, 71.70, 71.70, 71.70, 71.70),
(9, 'NationalBank', 301.23, 301.23, 301.23, 301.23, 301.23),
(10, 'Teleslut', 46.32, 46.32, 46.32, 46.32, 46.32),
(11, 'LifeTV', 22.00, 22.00, 22.00, 22.00, 22.00),
(12, 'MintMusic', 26.21, 26.21, 26.21, 26.21, 26.21),
(13, 'SATimes', 34.11, 34.11, 34.11, 34.11, 34.11),
(14, 'Lifetech', 121.96, 121.96, 121.96, 121.96, 121.96),
(15, 'Dolcom-Insurance', 78.21, 78.21, 78.21, 78.21, 78.21),
(16, 'DeltaMarket', 111.50, 111.50, 111.50, 111.50, 111.50),
(17, 'Edison', 32.00, 32.00, 32.00, 32.00, 32.00),
(18, 'SwekTV', 23.21, 23.21, 23.21, 23.21, 23.21),
(19, 'Omazon', 46.00, 46.00, 46.00, 46.00, 46.00),
(20, 'CBeans', 117.01, 117.01, 117.01, 117.01, 117.01),
(21, 'Netfix', 87.70, 87.70, 87.70, 87.70, 87.70),
(22, 'BurgerQueen', 157.08, 157.08, 157.08, 157.08, 157.08),
(23, 'Spacetravel', 350.10, 350.10, 350.10, 350.10, 350.10),
(24, 'NYCustoms', 52.06, 52.06, 52.06, 52.06, 52.06),
(25, 'HashHarvest', 99.33, 99.33, 99.33, 99.33, 99.33),
(26, 'GamePlanet', 52.10, 52.10, 52.10, 52.10, 52.10),
(27, 'LPS', 61.00, 61.00, 61.00, 61.00, 61.00),
(28, 'FlyMS', 115.09, 115.09, 115.09, 115.09, 115.09),
(29, 'Copy-Inc', 29.98, 29.98, 29.98, 29.98, 29.98),
(30, 'Ovondo', 25.02, 25.02, 25.02, 25.02, 25.02);
-- --------------------------------------------------------
--
-- Tabelstructuur voor tabel `business_history`
--
CREATE TABLE `business_history` (
`id` bigint(20) NOT NULL,
`businessID` smallint(6) NOT NULL DEFAULT 0,
`close_day` float(6,2) NOT NULL DEFAULT 0.00,
`highest_day` float(6,2) NOT NULL DEFAULT 0.00,
`lowest_day` float(6,2) NOT NULL DEFAULT 0.00,
`date` date NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPACT;
--
-- Gegevens worden geëxporteerd voor tabel `business_history`
--
INSERT INTO `business_history` (`id`, `businessID`, `close_day`, `highest_day`, `lowest_day`, `date`) VALUES
(10891, 1, 127.32, 127.32, 127.32, '2026-03-12'),
(10892, 2, 157.12, 157.12, 157.12, '2026-03-12'),
(10893, 3, 27.03, 27.03, 27.03, '2026-03-12'),
(10894, 4, 57.56, 57.56, 57.56, '2026-03-12'),
(10895, 5, 79.20, 79.20, 79.20, '2026-03-12'),
(10896, 6, 36.00, 36.00, 36.00, '2026-03-12'),
(10897, 7, 299.21, 299.21, 299.21, '2026-03-12'),
(10898, 8, 71.70, 71.70, 71.70, '2026-03-12'),
(10899, 9, 301.23, 301.23, 301.23, '2026-03-12'),
(10900, 10, 46.32, 46.32, 46.32, '2026-03-12'),
(10901, 11, 22.00, 22.00, 22.00, '2026-03-12'),
(10902, 12, 26.21, 26.21, 26.21, '2026-03-12'),
(10903, 13, 34.11, 34.11, 34.11, '2026-03-12'),
(10904, 14, 121.96, 121.96, 121.96, '2026-03-12'),
(10905, 15, 78.21, 78.21, 78.21, '2026-03-12'),
(10906, 16, 111.50, 111.50, 111.50, '2026-03-12'),
(10907, 17, 32.00, 32.00, 32.00, '2026-03-12'),
(10908, 18, 23.21, 23.21, 23.21, '2026-03-12'),
(10909, 19, 46.00, 46.00, 46.00, '2026-03-12'),
(10910, 20, 117.01, 117.01, 117.01, '2026-03-12'),
(10911, 21, 87.70, 87.70, 87.70, '2026-03-12'),
(10912, 22, 157.08, 157.08, 157.08, '2026-03-12'),
(10913, 23, 350.10, 350.10, 350.10, '2026-03-12'),
(10914, 24, 52.06, 52.06, 52.06, '2026-03-12'),
(10915, 25, 99.33, 99.33, 99.33, '2026-03-12'),
(10916, 26, 52.10, 52.10, 52.10, '2026-03-12'),
(10917, 27, 61.00, 61.00, 61.00, '2026-03-12'),
(10918, 28, 115.09, 115.09, 115.09, '2026-03-12'),
(10919, 29, 29.98, 29.98, 29.98, '2026-03-12'),
(10920, 30, 25.02, 25.02, 25.02, '2026-03-12'),
(10921, 1, 127.32, 127.32, 127.32, '2026-03-12'),
(10922, 2, 157.12, 157.12, 157.12, '2026-03-12'),
(10923, 3, 27.03, 27.03, 27.03, '2026-03-12'),
(10924, 4, 57.56, 57.56, 57.56, '2026-03-12'),
(10925, 5, 79.20, 79.20, 79.20, '2026-03-12'),
(10926, 6, 36.00, 36.00, 36.00, '2026-03-12'),
(10927, 7, 299.21, 299.21, 299.21, '2026-03-12'),
(10928, 8, 71.70, 71.70, 71.70, '2026-03-12'),
(10929, 9, 301.23, 301.23, 301.23, '2026-03-12'),
(10930, 10, 46.32, 46.32, 46.32, '2026-03-12'),
(10931, 11, 22.00, 22.00, 22.00, '2026-03-12'),
(10932, 12, 26.21, 26.21, 26.21, '2026-03-12'),
(10933, 13, 34.11, 34.11, 34.11, '2026-03-12'),
(10934, 14, 121.96, 121.96, 121.96, '2026-03-12'),
(10935, 15, 78.21, 78.21, 78.21, '2026-03-12'),
(10936, 16, 111.50, 111.50, 111.50, '2026-03-12'),
(10937, 17, 32.00, 32.00, 32.00, '2026-03-12'),
(10938, 18, 23.21, 23.21, 23.21, '2026-03-12'),
(10939, 19, 46.00, 46.00, 46.00, '2026-03-12'),
(10940, 20, 117.01, 117.01, 117.01, '2026-03-12'),
(10941, 21, 87.70, 87.70, 87.70, '2026-03-12'),
(10942, 22, 157.08, 157.08, 157.08, '2026-03-12'),
(10943, 23, 350.10, 350.10, 350.10, '2026-03-12'),
(10944, 24, 52.06, 52.06, 52.06, '2026-03-12'),
(10945, 25, 99.33, 99.33, 99.33, '2026-03-12'),
(10946, 26, 52.10, 52.10, 52.10, '2026-03-12'),
(10947, 27, 61.00, 61.00, 61.00, '2026-03-12'),
(10948, 28, 115.09, 115.09, 115.09, '2026-03-12'),
(10949, 29, 29.98, 29.98, 29.98, '2026-03-12'),
(10950, 30, 25.02, 25.02, 25.02, '2026-03-12'),
(10951, 1, 127.32, 127.32, 127.32, '2026-03-12'),
(10952, 2, 157.12, 157.12, 157.12, '2026-03-12'),
(10953, 3, 27.03, 27.03, 27.03, '2026-03-12'),
(10954, 4, 57.56, 57.56, 57.56, '2026-03-12'),
(10955, 5, 79.20, 79.20, 79.20, '2026-03-12'),
(10956, 6, 36.00, 36.00, 36.00, '2026-03-12'),
(10957, 7, 299.21, 299.21, 299.21, '2026-03-12'),
(10958, 8, 71.70, 71.70, 71.70, '2026-03-12'),
(10959, 9, 301.23, 301.23, 301.23, '2026-03-12'),
(10960, 10, 46.32, 46.32, 46.32, '2026-03-12'),
(10961, 11, 22.00, 22.00, 22.00, '2026-03-12'),
(10962, 12, 26.21, 26.21, 26.21, '2026-03-12'),
(10963, 13, 34.11, 34.11, 34.11, '2026-03-12'),
(10964, 14, 121.96, 121.96, 121.96, '2026-03-12'),
(10965, 15, 78.21, 78.21, 78.21, '2026-03-12'),
(10966, 16, 111.50, 111.50, 111.50, '2026-03-12'),
(10967, 17, 32.00, 32.00, 32.00, '2026-03-12'),
(10968, 18, 23.21, 23.21, 23.21, '2026-03-12'),
(10969, 19, 46.00, 46.00, 46.00, '2026-03-12'),
(10970, 20, 117.01, 117.01, 117.01, '2026-03-12'),
(10971, 21, 87.70, 87.70, 87.70, '2026-03-12'),
(10972, 22, 157.08, 157.08, 157.08, '2026-03-12'),
(10973, 23, 350.10, 350.10, 350.10, '2026-03-12'),
(10974, 24, 52.06, 52.06, 52.06, '2026-03-12'),
(10975, 25, 99.33, 99.33, 99.33, '2026-03-12'),
(10976, 26, 52.10, 52.10, 52.10, '2026-03-12'),
(10977, 27, 61.00, 61.00, 61.00, '2026-03-12'),
(10978, 28, 115.09, 115.09, 115.09, '2026-03-12'),
(10979, 29, 29.98, 29.98, 29.98, '2026-03-12'),
(10980, 30, 25.02, 25.02, 25.02, '2026-03-12'),
(10981, 1, 127.32, 127.32, 127.32, '2026-03-12'),
(10982, 2, 157.12, 157.12, 157.12, '2026-03-12'),
(10983, 3, 27.03, 27.03, 27.03, '2026-03-12'),
(10984, 4, 57.56, 57.56, 57.56, '2026-03-12'),
(10985, 5, 79.20, 79.20, 79.20, '2026-03-12'),
(10986, 6, 36.00, 36.00, 36.00, '2026-03-12'),
(10987, 7, 299.21, 299.21, 299.21, '2026-03-12'),
(10988, 8, 71.70, 71.70, 71.70, '2026-03-12'),
(10989, 9, 301.23, 301.23, 301.23, '2026-03-12'),
(10990, 10, 46.32, 46.32, 46.32, '2026-03-12'),
(10991, 11, 22.00, 22.00, 22.00, '2026-03-12'),
(10992, 12, 26.21, 26.21, 26.21, '2026-03-12'),
(10993, 13, 34.11, 34.11, 34.11, '2026-03-12'),
(10994, 14, 121.96, 121.96, 121.96, '2026-03-12'),
(10995, 15, 78.21, 78.21, 78.21, '2026-03-12'),
(10996, 16, 111.50, 111.50, 111.50, '2026-03-12'),
(10997, 17, 32.00, 32.00, 32.00, '2026-03-12'),
(10998, 18, 23.21, 23.21, 23.21, '2026-03-12'),
(10999, 19, 46.00, 46.00, 46.00, '2026-03-12'),
(11000, 20, 117.01, 117.01, 117.01, '2026-03-12'),
(11001, 21, 87.70, 87.70, 87.70, '2026-03-12'),
(11002, 22, 157.08, 157.08, 157.08, '2026-03-12'),
(11003, 23, 350.10, 350.10, 350.10, '2026-03-12'),
(11004, 24, 52.06, 52.06, 52.06, '2026-03-12'),
(11005, 25, 99.33, 99.33, 99.33, '2026-03-12'),
(11006, 26, 52.10, 52.10, 52.10, '2026-03-12'),
(11007, 27, 61.00, 61.00, 61.00, '2026-03-12'),
(11008, 28, 115.09, 115.09, 115.09, '2026-03-12'),
(11009, 29, 29.98, 29.98, 29.98, '2026-03-12'),
(11010, 30, 25.02, 25.02, 25.02, '2026-03-12');
-- --------------------------------------------------------
--
-- Tabelstructuur voor tabel `business_news`
--
CREATE TABLE `business_news` (
`id` bigint(20) NOT NULL,
`description_nl` varchar(255) NOT NULL DEFAULT '',
`description_en` varchar(255) NOT NULL DEFAULT '',
`businessID` mediumint(9) NOT NULL DEFAULT 0,
`type` tinyint(1) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPACT;
--
-- Gegevens worden geëxporteerd voor tabel `business_news`
--
INSERT INTO `business_news` (`id`, `description_nl`, `description_en`, `businessID`, `type`) VALUES
(1, 'Topman geeft toe dat personeelslid fraude heeft gepleegd', 'Topman admits that staff member has committed fraud', 6, 2),
(2, 'wacht niet en onderneemt meteen actie', 'doesn\'t wait to undertake actions', 19, 1),
(3, 'personeel komt in opstand', 'employees revolt against bad practices in their company', 2, 4),
(4, 'product prijzen stijgen voor een onbekende reden', 'product prices raised for no known reasons', 16, 4),
(5, 'de moord op de CEO zorgt voor een keerpunt in de zaken!', 'murder on a CEO creates turning point in business', 26, 2);
-- --------------------------------------------------------
--
-- Tabelstructuur voor tabel `business_stock`
--
CREATE TABLE `business_stock` (
`id` bigint(20) NOT NULL,
`userID` bigint(20) NOT NULL DEFAULT 0,
`businessID` smallint(6) NOT NULL DEFAULT 0,
`payed_ea` float(6,2) NOT NULL DEFAULT 0.00,
`amount` int(11) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPACT;
-- --------------------------------------------------------
--
-- Tabelstructuur voor tabel `change_email`
--
CREATE TABLE `change_email` (
`id` bigint(20) NOT NULL,
`userID` bigint(20) NOT NULL DEFAULT 0,
`key` mediumtext NOT NULL DEFAULT '',
`new_mail` varchar(255) NOT NULL DEFAULT '',
`date` datetime NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPACT;
-- --------------------------------------------------------
--
-- Tabelstructuur voor tabel `city`
--
CREATE TABLE `city` (
`id` tinyint(4) NOT NULL COMMENT 'type=disabled',
`stateID` int(11) DEFAULT NULL COMMENT 'couple=state&factor=id&show=name',
`name` varchar(25) DEFAULT NULL,
`position` int(11) DEFAULT NULL,
`active` tinyint(1) NOT NULL DEFAULT 1,
`deleted` tinyint(1) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPACT;
--
-- Gegevens worden geëxporteerd voor tabel `city`
--
INSERT INTO `city` (`id`, `stateID`, `name`, `position`, `active`, `deleted`) VALUES
(1, 1, 'Honolulu', 1, 1, 0),
(2, 1, 'Kahului', 2, 1, 0),
(3, 1, 'Kailua Kona', 3, 1, 0),
(4, 2, 'Los Angeles', 4, 1, 0),
(5, 2, 'San Diego', 5, 1, 0),
(6, 2, 'San Fransisco', 6, 1, 0),
(7, 3, 'Buffalo', 7, 1, 0),
(8, 3, 'NY City', 8, 1, 0),
(9, 3, 'Kingston', 9, 1, 0),
(10, 4, 'Denver', 10, 1, 0),
(11, 4, 'Colorado Springs', 11, 1, 0),
(12, 4, 'Grand Junction', 12, 1, 0),
(13, 5, 'Dallas', 13, 1, 0),
(14, 5, 'El Paso', 14, 1, 0),
(15, 5, 'San Antonio', 15, 1, 0),
(16, 6, 'Jacksonville', 16, 1, 0),
(17, 6, 'Miami', 17, 1, 0),
(18, 6, 'Panama City', 18, 1, 0);
-- --------------------------------------------------------
--
-- Tabelstructuur voor tabel `city_robbery`
--
CREATE TABLE `city_robbery` (
`id` int(11) NOT NULL,
`userID` int(11) NOT NULL,
`buildingKey` varchar(40) NOT NULL,
`cityID` int(11) NOT NULL DEFAULT 0,
`stateID` int(11) NOT NULL DEFAULT 0,
`payout` int(11) NOT NULL DEFAULT 0,
`rankpoints` int(11) NOT NULL DEFAULT 0,
`heat` int(11) NOT NULL DEFAULT 0,
`readyTime` int(11) NOT NULL DEFAULT 0,
`createdAt` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci;
-- --------------------------------------------------------
--
-- Tabelstructuur voor tabel `city_robbery_crew`
--
CREATE TABLE `city_robbery_crew` (
`userID` int(11) NOT NULL,
`crewMembers` int(11) NOT NULL DEFAULT 1,
`recruitedAt` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci;
-- --------------------------------------------------------
--
-- Tabelstructuur voor tabel `cms`
--
CREATE TABLE `cms` (
`id` bigint(20) NOT NULL COMMENT 'type=disabled',
`naam` varchar(255) DEFAULT NULL,
`content_nl` mediumtext DEFAULT NULL COMMENT 'type=cms',
`content_en` mediumtext DEFAULT NULL COMMENT 'type=cms',
`position` bigint(20) DEFAULT NULL,
`active` tinyint(1) NOT NULL DEFAULT 1,
`deleted` tinyint(1) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPACT;
--
-- Gegevens worden geëxporteerd voor tabel `cms`
--
INSERT INTO `cms` (`id`, `naam`, `content_nl`, `content_en`, `position`, `active`, `deleted`) VALUES
(1, 'Slider1', '<h2>Online Mafia RPG</h2>\n\n<p>In de wereld van bloodbullets kan jij samen met vrienden en familie de staten en steden van Amerika veroveren!</p>\n', '<h2>Online Mafia RPG</h2>\r\n\r\n<p>In the world of bloodbullets you can conquer the States and Cities of America together with friends and family</p>\r\n', 0, 1, 0),
(2, 'Slider2', '<h2>Carjacking</h2>\r\n\r\n<p>Steel de mooiste voertuigen en vul meerdere garages met deze pracht wagens!</p>\r\n', '<h2>Carjacking</h2>\r\n\r\n<p>Steal the most beautiful vehicles and fill multiple garages with these beauties!</p>\r\n', 1, 1, 0),
(3, 'Slider3', '<h2>Drugs smokkelen</h2>\r\n\r\n<p>Ontwikkel de beste smokkel-route en maak miljoenen naarmate je stijgt in allerhande levels!</p>\r\n', '<h2>Smuggle drugs</h2>\r\n\r\n<p>Develop the best smugglers route and make millions as you evolve in all kinds of levels!</p>\r\n', 2, 1, 0),
(4, 'Slider4', '<h2>Imperium opbouwen</h2>\r\n\r\n<p>Beheer tal van bezittingen of besteel anderen van hun bezit en noem jezelf de koning van bepaalde staten of steden!</p>\r\n', '<h2>Build an empire</h2>\r\n\r\n<p>Poses multiple buildings or rob others for their possessions and be able to call yourself the king of certain states or cities!</p>\r\n', 3, 1, 0),
(5, 'Statistieken', '<h2>Game Statistieken</h2>\r\n\r\n<p>#1 Speler: {bestPlayer}<br />\r\nNieuwste lid: {newestMember}<br />\r\n<br />\r\nBeste familie: {bestFam}<br />\r\nMeeste familie geld: {richestFam}<br />\r\n<br />\r\nKillerking: {killerking}<br />\r\nEervolste speler: {honored}<br />\r\n<br />\r\nEr zijn op dit moment {playersKilled}<strong> spelers dood</strong><br />\r\n<br />\r\nIn totaal werden er {unitsSmuggled} smokkeleenheden <strong>gesmokkeld</strong><br />\r\n<br />\r\nEr zijn in totaal {creditsWon}Â <strong>verdient</strong> onder alle leden<br />\r\n<br />\r\nDit is onze Vierde ronde sinds 12 Mei</p>\r\n', '<h2>Game Statistics</h2>\r\n\r\n<p>#1 Player: {bestPlayer}<br />\r\nNewest member: {newestMember}<br />\r\n<br />\r\nBest family: {bestFam}<br />\r\nMost family money: {richestFam}<br />\r\n<br />\r\nKillerking: {killerking}<br />\r\nMost honored: {honored}<br />\r\n<br />\r\nAt this moment {playersKilled}<strong> players </strong>are <strong>dead</strong><br />\r\n<br />\r\nA total amount of {unitsSmuggled} units were <strong>smuggled</strong> in and outside of the states<br />\r\n<br />\r\nOur players have <strong>earned</strong> a total amount of {creditsWon}<br />\r\n<br />\r\nthis is our Fourth round since May 12th</p>\r\n', 4, 1, 0),
(6, 'Algemene voorwaarden', '<h1>Algemene voorwaarden voor bloodbullets</h1>\r\n\r\n<h2>Invoering</h2>\r\n\r\n<p>Deze website-standaardvoorwaarden die op deze webpagina zijn geschreven, zullen uw gebruik van onze website, bloodbullets, toegankelijk op https://bloodbullets.nl beheren.</p>\r\n\r\n<p>Deze voorwaarden worden volledig toegepast en hebben invloed op uw gebruik van deze website. Door deze website te gebruiken, stemde u ermee in om alle hierin beschreven voorwaarden te accepteren. U mag deze website niet gebruiken als u het niet eens bent met een van deze algemene voorwaarden voor deze website. Deze algemene voorwaarden zijn gegenereerd met behulp van het <a href=\"https://www.termsandcondiitionssample.com\">sjabloon met algemene voorwaarden</a>.</p>\r\n\r\n<p>Kinderen of personen jonger dan 13 jaar mogen deze Website niet gebruiken.</p>\r\n\r\n<h2>Intellectuele eigendomsrechten</h2>\r\n\r\n<p>Behalve de inhoud die u bezit, bezitten bloodbullets en / of haar licentiegevers volgens deze Voorwaarden alle intellectuele eigendomsrechten en materialen op deze Website.</p>\r\n\r\n<p>U krijgt alleen een beperkte licentie om het materiaal op deze website te bekijken.</p>\r\n\r\n<h2>Beperkingen</h2>\r\n\r\n<p>U bent specifiek beperkt tot het volgende:</p>\r\n\r\n<ul>\r\n <li>publiceren van websitemateriaal in andere media;</li>\r\n <li>het verkopen, in sublicentie geven en / of anderszins commercialiseren van enig Website-materiaal;</li>\r\n <li>openbaar materiaal van de website uitvoeren en / of tonen;</li>\r\n <li>gebruik van deze website op een manier die schadelijk is of kan zijn voor deze website;</li>\r\n <li>gebruik van deze website op een manier die de gebruikerstoegang tot deze website beïnvloedt;</li>\r\n <li>het gebruik van deze website in strijd met de toepasselijke wet- en regelgeving of op enigerlei wijze kan schade toebrengen aan de website, of aan een persoon of zakelijke entiteit;</li>\r\n <li>deelnemen aan datamining, data-winning, data-extractie of enige andere soortgelijke activiteit met betrekking tot deze website;</li>\r\n <li>gebruik van deze website om reclame of marketing te maken.</li>\r\n</ul>\r\n\r\n<p>Bepaalde delen van deze Website hebben geen toegang door u en bloodbullets kan de toegang door u tot enig deel van deze Website op elk gewenst moment naar eigen goeddunken verder beperken. Elke gebruikers-ID en elk wachtwoord dat u voor deze website heeft, is vertrouwelijk en u moet ook vertrouwelijk blijven.</p>\r\n\r\n<h2>Uw inhoud</h2>\r\n\r\n<p>In deze algemene voorwaarden voor deze website betekent \"uw inhoud\" alle audio-, videotekst, afbeeldingen of ander materiaal dat u op deze website wilt weergeven. Door uw inhoud weer te geven, verleent u bloodbullets een niet-exclusieve, wereldwijde onherroepelijke, sublicentieerbare licentie voor het gebruiken, reproduceren, aanpassen, publiceren, vertalen en distribueren in alle media.</p>\r\n\r\n<p>Uw inhoud moet van u zijn en mag geen inbreuk maken op de rechten van derden. bloodbullets behoudt zich het recht voor om uw inhoud op elk moment zonder kennisgeving van deze website te verwijderen.</p>\r\n\r\n<h2>Uw privacy</h2>\r\n\r\n<p><a href=\"/privacy-policy\">Lees Privacybeleid</a> a.u.b.</p>\r\n\r\n<h2>Geen garanties</h2>\r\n\r\n<p>Deze website wordt geleverd \"zoals deze is\", met alle fouten, en bloodbullets geeft geen verklaringen of garanties van welke aard dan ook met betrekking tot deze website of de materialen op deze website. Niets op deze website mag worden geïnterpreteerd als een advies.</p>\r\n\r\n<h2>Beperking van aansprakelijkheid</h2>\r\n\r\n<p>In geen geval zal bloodbullets, noch een van haar functionarissen, directeuren en werknemers, aansprakelijk kunnen worden gesteld voor alles dat voortvloeit uit of op enige wijze verband houdt met uw gebruik van deze Website, ongeacht of deze aansprakelijkheid contractueel is. bloodbullets, inclusief zijn functionarissen, directeuren en werknemers, kan niet aansprakelijk worden gesteld voor enige indirecte, gevolg- of speciale aansprakelijkheid die voortvloeit uit of in enig opzicht verband houdt met uw gebruik van deze website.</p>\r\n\r\n<h2>Schadeloosstelling</h2>\r\n\r\n<p>Hierbij vrijwaart u bloodbullets volledig voor en tegen alle en / of alle aansprakelijkheden, kosten, eisen, oorzaken van actie, schade en kosten die op enigerlei wijze verband houden met uw schending van een van de bepalingen van deze Voorwaarden.</p>\r\n\r\n<h2>Scheidbaarheid</h2>\r\n\r\n<p>Als een bepaling van deze Voorwaarden ongeldig wordt bevonden onder de toepasselijke wetgeving, worden dergelijke bepalingen verwijderd zonder de overige bepalingen hierin te beïnvloeden.</p>\r\n\r\n<h2>Variatie van voorwaarden</h2>\r\n\r\n<p>bloodbullets is gerechtigd deze Voorwaarden te allen tijde naar eigen goeddunken te herzien, en door deze Website te gebruiken, wordt van u verwacht dat u deze Voorwaarden op gezette tijden doorneemt.</p>\r\n\r\n<h2>Toewijzing</h2>\r\n\r\n<p>Het is bloodbullets toegestaan zijn rechten en / of verplichtingen onder deze Voorwaarden zonder enige kennisgeving toe te wijzen, over te dragen en uit te besteden. Het is echter niet toegestaan om uw rechten en / of verplichtingen onder deze Voorwaarden toe te wijzen, over te dragen of uit te besteden.</p>\r\n\r\n<h2>Volledige overeenkomst</h2>\r\n\r\n<p>Deze Voorwaarden vormen de gehele overeenkomst tussen bloodbullets en u met betrekking tot uw gebruik van deze Website en vervangen alle eerdere overeenkomsten en afspraken.</p>\r\n\r\n<h2>Toepasselijk recht en jurisdictie</h2>\r\n\r\n<p>Deze Voorwaarden worden beheerst door en geïnterpreteerd in overeenstemming met de wetten van de Staat van België, en u onderwerpt zich aan de niet-exclusieve jurisdictie van de staats- en federale rechtbanken die zijn gevestigd in België voor de beslechting van eventuele geschillen.</p>\r\n', '<h1>Terms and Conditions for bloodbullets</h1>\r\n\r\n<h2>Introduction</h2>\r\n\r\n<p>These Website Standard Terms and Conditions written on this webpage shall manage your use of our website, bloodbullets accessible at https://bloodbullets.nl.</p>\r\n\r\n<p>These Terms will be applied fully and affect to your use of this Website. By using this Website, you agreed to accept all terms and conditions written in here. You must not use this Website if you disagree with any of these Website Standard Terms and Conditions. These Terms and Conditions have been generated with the help of the <a href=\"https://www.termsandcondiitionssample.com\">Terms And Conditions Template</a>.</p>\r\n\r\n<p>Chilldren or people below 13 years old are not allowed to use this Website.</p>\r\n\r\n<h2>Intellectual Property Rights</h2>\r\n\r\n<p>Other than the content you own, under these Terms, bloodbullets and/or its licensors own all the intellectual property rights and materials contained in this Website.</p>\r\n\r\n<p>You are granted limited license only for purposes of viewing the material contained on this Website.</p>\r\n\r\n<h2>Restrictions</h2>\r\n\r\n<p>You are specifically restricted from all of the following:</p>\r\n\r\n<ul>\r\n <li>publishing any Website material in any other media;</li>\r\n <li>selling, sublicensing and/or otherwise commercializing any Website material;</li>\r\n <li>publicly performing and/or showing any Website material;</li>\r\n <li>using this Website in any way that is or may be damaging to this Website;</li>\r\n <li>using this Website in any way that impacts user access to this Website;</li>\r\n <li>using this Website contrary to applicable laws and regulations, or in any way may cause harm to the Website, or to any person or business entity;</li>\r\n <li>engaging in any data mining, data harvesting, data extracting or any other similar activity in relation to this Website;</li>\r\n <li>using this Website to engage in any advertising or marketing.</li>\r\n</ul>\r\n\r\n<p>Certain areas of this Website are restricted from being access by you and bloodbullets may further restrict access by you to any areas of this Website, at any time, in absolute discretion. Any user ID and password you may have for this Website are confidential and you must maintain confidentiality as well.</p>\r\n\r\n<h2>Your Content</h2>\r\n\r\n<p>In these Website Standard Terms and Conditions, \"Your Content\" shall mean any audio, video text, images or other material you choose to display on this Website. By displaying Your Content, you grant bloodbullets a non-exclusive, worldwide irrevocable, sub licensable license to use, reproduce, adapt, publish, translate and distribute it in any and all media.</p>\r\n\r\n<p>Your Content must be your own and must not be invading any third-party\'s rights. bloodbullets reserves the right to remove any of Your Content from this Website at any time without notice.</p>\r\n\r\n<h2>Your Privacy</h2>\r\n\r\n<p>Please <a href=\"/privacy-policy\">read Privacy Policy</a>.</p>\r\n\r\n<h2>No warranties</h2>\r\n\r\n<p>This Website is provided \"as is,\" with all faults, and bloodbullets express no representations or warranties, of any kind related to this Website or the materials contained on this Website. Also, nothing contained on this Website shall be interpreted as advising you.</p>\r\n\r\n<h2>Limitation of liability</h2>\r\n\r\n<p>In no event shall bloodbullets, nor any of its officers, directors and employees, shall be held liable for anything arising out of or in any way connected with your use of this Website whether such liability is under contract. bloodbullets, including its officers, directors and employees shall not be held liable for any indirect, consequential or special liability arising out of or in any way related to your use of this Website.</p>\r\n\r\n<h2>Indemnification</h2>\r\n\r\n<p>You hereby indemnify to the fullest extent bloodbullets from and against any and/or all liabilities, costs, demands, causes of action, damages and expenses arising in any way related to your breach of any of the provisions of these Terms.</p>\r\n\r\n<h2>Severability</h2>\r\n\r\n<p>If any provision of these Terms is found to be invalid under any applicable law, such provisions shall be deleted without affecting the remaining provisions herein.</p>\r\n\r\n<h2>Variation of Terms</h2>\r\n\r\n<p>bloodbullets is permitted to revise these Terms at any time as it sees fit, and by using this Website you are expected to review these Terms on a regular basis.</p>\r\n\r\n<h2>Assignment</h2>\r\n\r\n<p>The bloodbullets is allowed to assign, transfer, and subcontract its rights and/or obligations under these Terms without any notification. However, you are not allowed to assign, transfer, or subcontract any of your rights and/or obligations under these Terms.</p>\r\n\r\n<h2>Entire Agreement</h2>\r\n\r\n<p>These Terms constitute the entire agreement between bloodbullets and you in relation to your use of this Website, and supersede all prior agreements and understandings.</p>\r\n\r\n<h2>Governing Law & Jurisdiction</h2>\r\n\r\n<p>These Terms will be governed by and interpreted in accordance with the laws of the State of Belgium, and you submit to the non-exclusive jurisdiction of the state and federal courts located in Belgium for the resolution of any disputes.</p>', 5, 1, 0),
(7, 'Privacy beleid', '<h1>Privacybeleid van bloodbullets</h1>\r\n\r\n<p>bloodbullets beheert de https://bloodbullets.nl website, die de SERVICE levert.</p>\r\n\r\n<p>bloodbullets biedt niet de mogelijkheid om via hun website cookies te verwijderen maar als eindgebruiker heeft u wel totale controle over onze en derde-partij cookies.</p>\r\n\r\n<p>Deze pagina wordt gebruikt om websitebezoekers te informeren over ons beleid met betrekking tot het verzamelen, gebruiken en vrijgeven van persoonlijke informatie als iemand besluit onze Service, de bloodbullets-website, te gebruiken.</p>\r\n\r\n<p>Als u ervoor kiest om onze Service te gebruiken, stemt u in met het verzamelen en gebruiken van informatie in verband met dit beleid. De persoonlijke informatie die we verzamelen, wordt gebruikt voor het leveren en verbeteren van de service. We zullen uw informatie met niemand gebruiken of delen, behalve zoals beschreven in dit privacybeleid.</p>\r\n\r\n<p>De termen die in dit privacybeleid worden gebruikt, hebben dezelfde betekenis als in onze <a href=\"/terms-and-conditions\">algemene voorwaarden</a>, die toegankelijk zijn op https://bloodbullets.nl, tenzij anders bepaald in dit privacybeleid. Ons privacybeleid is gemaakt met behulp van het <a href=\"https://www.privacypolicytemplate.net\">privacybeleidssjabloon</a>.</p>\r\n\r\n<h2>Verzameling en gebruik van informatie</h2>\r\n\r\n<p>Voor een betere ervaring tijdens het gebruik van onze Service, kunnen we u vragen om ons bepaalde persoonlijk identificeerbare informatie te verstrekken, inclusief maar niet beperkt tot uw naam, telefoonnummer en postadres. De informatie die we verzamelen, wordt gebruikt om contact met u op te nemen of om u te identificeren.</p>\r\n\r\n<h2>Loggegevens</h2>\r\n\r\n<p>We willen u laten weten dat wanneer u onze Service bezoekt, we informatie verzamelen die uw browser naar ons verzendt en die Loggegevens wordt genoemd. Deze loggegevens kunnen informatie bevatten zoals het internetprotocoladres (\"IP\") van uw computer, browserversie, pagina\'s van onze service die u bezoekt, de tijd en datum van uw bezoek, de tijd doorgebracht op die pagina\'s en andere statistieken.</p>\r\n\r\n<h2>Cookies</h2>\r\n\r\n<p>Cookies zijn bestanden met een kleine hoeveelheid gegevens die gewoonlijk als een anonieme unieke identificatie wordt gebruikt. Deze worden naar uw browser verzonden vanaf de website die u bezoekt en worden opgeslagen op de harde schijf van uw computer.</p>\r\n\r\n<p>Onze website gebruikt deze \"cookies\" om informatie te verzamelen en onze service te verbeteren. U kunt deze cookies accepteren of weigeren en weten wanneer een cookie naar uw computer wordt verzonden. Als u ervoor kiest om onze cookies te weigeren, kunt u mogelijk sommige delen van onze Service niet gebruiken.<br />\r\n<br />\r\nDe essentiele cookies voor bloodbullets zijn de volgende cookies per naam:</p>\r\n\r\n<ul>\r\n <li>bloodbullets_Session: Deze cookie wordt als anonieme unieke identificatie gebruikt en word ook tijdelijk opgeslagen op onze servers om geldige beveiligingssleutels uit te lenen.</li>\r\n <li>lang: Deze cookie bevat je laatste actieve taal instelling zijnde \'nl\' voor Nederlands of \'en\' voor Engels. Niet noodzakelijk maar het cachen van deze cookie kan de website snelheid verbeteren.</li>\r\n</ul>\r\n\r\n<h2>Dienstverleners</h2>\r\n\r\n<p>We kunnen externe bedrijven en personen in dienst nemen om de volgende redenen:</p>\r\n\r\n<ul>\r\n <li>Om onze service te vergemakkelijken;</li>\r\n <li>Om de Service namens ons te verlenen;</li>\r\n <li>Servicegerelateerde services uitvoeren; of</li>\r\n <li>Om ons te helpen analyseren hoe onze Service wordt gebruikt.</li>\r\n</ul>\r\n\r\n<p>We willen onze servicegebruikers informeren dat deze derden toegang hebben tot uw persoonlijke gegevens. De reden is om de taken die hen zijn toegewezen namens ons uit te voeren. Ze zijn echter verplicht om de informatie niet bekend te maken of voor andere doeleinden te gebruiken.</p>\r\n\r\n<h2>Veiligheid</h2>\r\n\r\n<p>Wij waarderen uw vertrouwen in het verstrekken van uw persoonlijke informatie aan ons, dus streven wij ernaar om commercieel aanvaardbare middelen te gebruiken om deze te beschermen. Maar vergeet niet dat geen enkele verzendmethode via internet of elektronische opslag 100% veilig en betrouwbaar is en we kunnen de absolute veiligheid ervan niet garanderen.</p>\r\n\r\n<h2>Links naar andere sites</h2>\r\n\r\n<p>Onze service kan links naar andere sites bevatten. Als u op een link van derden klikt, wordt u naar die site geleid. Merk op dat deze externe sites niet door ons worden beheerd. Daarom raden wij u ten zeerste aan om het privacybeleid van deze websites te bekijken. We hebben geen controle over en aanvaarden geen verantwoordelijkheid voor de inhoud, het privacybeleid of de praktijken van sites of services van derden.</p>\r\n\r\n<h2>Privacy van kinderen</h2>\r\n\r\n<p>Onze Services zijn niet bedoeld voor personen jonger dan 13 jaar. We verzamelen niet bewust persoonlijk identificeerbare informatie van kinderen jonger dan 13 jaar. In het geval dat we ontdekken dat een kind jonger dan 13 jaar ons persoonlijke informatie heeft verstrekt, verwijderen we dit onmiddellijk van onze servers. Als u een ouder of voogd bent en weet dat uw kind ons persoonlijke informatie heeft verstrekt, neem dan contact met ons op zodat we de nodige acties kunnen ondernemen.</p>\r\n\r\n<h2>Wijzigingen in dit privacybeleid</h2>\r\n\r\n<p>We kunnen ons privacybeleid van tijd tot tijd bijwerken. We raden u daarom aan deze pagina regelmatig te controleren op wijzigingen. We zullen u op de hoogte brengen van eventuele wijzigingen door het nieuwe privacybeleid op deze pagina te plaatsen. Deze wijzigingen worden onmiddellijk van kracht nadat ze op deze pagina zijn geplaatst.</p>\r\n\r\n<h2>Cookies verwijderen</h2>\r\n\r\n<p>Hieronder vind je een lijst met de nodige informatie per verschillende browser om cookies te verwijderen, houd er wel reking mee dat websites zonder cookies mogelijk niet meer optimaal functioneren.</p>\r\n\r\n<ul>\r\n <li><a href=\"https://support.google.com/chrome/answer/95647?hl=nl\" target=\"_blank\">Google Chrome</a></li>\r\n <li><a href=\"https://support.mozilla.org/nl/kb/cookies-informatie-websites-computer-opgeslagen?redirectlocale=nl&redirectslug=cookies-informatie-websites-op-uw-computer-opslaan\" target=\"_blank\">Mozilla Firefox</a></li>\r\n <li><a href=\"https://support.microsoft.com/nl-nl/microsoft-edge/cookies-verwijderen-in-microsoft-edge-63947406-40ac-c3b8-57b9-2a946a29ae09\" target=\"_blank\">Microsoft Edge</a></li>\r\n <li><a href=\"https://support.apple.com/nl-nl/HT201265\" target=\"_blank\">Safari</a></li>\r\n <li><a href=\"http://help.opera.com/Linux/10.10/nl/cookies.html\" target=\"_blank\">Opera</a></li>\r\n</ul>\r\n\r\n<p>Om cookies uit onze app te verwijderen, kunt u de hele app verwijderen of u kunt de instellingen van de app beheren om alle opslag en cache te verwijderen. Open je de app daarna opnieuw dan zullen opnieuw in eerste instantie noodzakelijke cookies opgeslagen worden.</p>\r\n\r\n<h2>Neem contact op</h2>\r\n\r\n<p>Als u vragen of suggesties heeft over ons privacybeleid, aarzel dan niet om contact met ons op te nemen via email naar: <a href=\"\">info@bloodbullets.nl</a></p>\r\n', '<h1>Privacy Policy of bloodbullets</h1>\r\n\r\n<p>bloodbullets operates the https://bloodbullets.nl website, which provides the SERVICE.</p>\r\n\r\n<p>bloodbullets does not offer the option to delete cookies through their website, but as an end user you have total control over our and third-party cookies.</p>\r\n\r\n<p>This page is used to inform website visitors regarding our policies with the collection, use, and disclosure of Personal Information if anyone decided to use our Service, the bloodbullets website.</p>\r\n\r\n<p>If you choose to use our Service, then you agree to the collection and use of information in relation with this policy. The Personal Information that we collect are used for providing and improving the Service. We will not use or share your information with anyone except as described in this Privacy Policy.</p>\r\n\r\n<p>The terms used in this Privacy Policy have the same meanings as in our <a href=\"/terms-and-conditions\">Terms and Conditions</a>, which is accessible at https://bloodbullets.nl, unless otherwise defined in this Privacy Policy. Our Privacy Policy was created with the help of the <a href=\"https://www.privacypolicytemplate.net\">Privacy Policy Template</a>.</p>\r\n\r\n<h2>Information Collection and Use</h2>\r\n\r\n<p>For a better experience while using our Service, we may require you to provide us with certain personally identifiable information, including but not limited to your name, phone number, and postal address. The information that we collect will be used to contact or identify you.</p>\r\n\r\n<h2>Log Data</h2>\r\n\r\n<p>We want to inform you that whenever you visit our Service, we collect information that your browser sends to us that is called Log Data. This Log Data may include information such as your computer’s Internet Protocol (\"IP\") address, browser version, pages of our Service that you visit, the time and date of your visit, the time spent on those pages, and other statistics.</p>\r\n\r\n<h2>Cookies</h2>\r\n\r\n<p>Cookies are files with small amount of data that is commonly used as an anonymous unique identifier. These are sent to your browser from the website that you visit and are stored on your computer’s hard drive.</p>\r\n\r\n<p>Our website uses these \"cookies\" to collect information and to improve our Service. You have the option to either accept or refuse these cookies, and know when a cookie is being sent to your computer. If you choose to refuse our cookies, you may not be able to use some portions of our Service.<br />\r\n<br />\r\nThe essential cookies for bloodbullets are the following cookies by name:</p>\r\n\r\n<ul>\r\n <li>bloodbullets_Session: This cookie is used as an anonymous unique identifier and is also temporarily stored on our servers to lend valid security tokens.</li>\r\n <li>lang: This cookie contains your last active language setting, which is \'nl\' for Dutch or \'en\' for English. Not necessary, but caching this cookie can improve website speed.</li>\r\n</ul>\r\n\r\n<h2>Service Providers</h2>\r\n\r\n<p>We may employ third-party companies and individuals due to the following reasons:</p>\r\n\r\n<ul>\r\n <li>To facilitate our Service;</li>\r\n <li>To provide the Service on our behalf;</li>\r\n <li>To perform Service-related services; or</li>\r\n <li>To assist us in analyzing how our Service is used.</li>\r\n</ul>\r\n\r\n<p>We want to inform our Service users that these third parties have access to your Personal Information. The reason is to perform the tasks assigned to them on our behalf. However, they are obligated not to disclose or use the information for any other purpose.</p>\r\n\r\n<h2>Security</h2>\r\n\r\n<p>We value your trust in providing us your Personal Information, thus we are striving to use commercially acceptable means of protecting it. But remember that no method of transmission over the internet, or method of electronic storage is 100% secure and reliable, and we cannot guarantee its absolute security.</p>\r\n\r\n<h2>Links to Other Sites</h2>\r\n\r\n<p>Our Service may contain links to other sites. If you click on a third-party link, you will be directed to that site. Note that these external sites are not operated by us. Therefore, we strongly advise you to review the Privacy Policy of these websites. We have no control over, and assume no responsibility for the content, privacy policies, or practices of any third-party sites or services.</p>\r\n\r\n<h2>Children’s Privacy</h2>\r\n\r\n<p>Our Services do not address anyone under the age of 13. We do not knowingly collect personal identifiable information from children under 13. In the case we discover that a child under 13 has provided us with personal information, we immediately delete this from our servers. If you are a parent or guardian and you are aware that your child has provided us with personal information, please contact us so that we will be able to do necessary actions.</p>\r\n\r\n<h2>Changes to This Privacy Policy</h2>\r\n\r\n<p>We may update our Privacy Policy from time to time. Thus, we advise you to review this page periodically for any changes. We will notify you of any changes by posting the new Privacy Policy on this page. These changes are effective immediately, after they are posted on this page.</p>\r\n\r\n<h2>Remove Cookies</h2>\r\n\r\n<p>Below you will find a list with the necessary information for each browser to delete cookies, but keep in mind that websites without cookies may no longer function optimally.</p>\r\n\r\n<ul>\r\n <li><a href=\"https://support.google.com/chrome/answer/95647?hl=en\" target=\"_blank\">Google Chrome</a></li>\r\n <li><a href=\"https://support.mozilla.org/en-US/kb/cookies-information-websites-store-on-your-computer?redirectlocale=en-US&redirectslug=Cookies\" target=\"_blank\">Mozilla Firefox</a></li>\r\n <li><a href=\"https://support.microsoft.com/en-us/microsoft-edge/delete-cookies-in-microsoft-edge-63947406-40ac-c3b8-57b9-2a946a29ae09\" target=\"_blank\">Microsoft Edge</a></li>\r\n <li><a href=\"https://support.apple.com/en-us/HT201265\" target=\"_blank\">Safari</a></li>\r\n <li><a href=\"http://help.opera.com/Linux/10.10/en/cookies.html\" target=\"_blank\">Opera</a></li>\r\n</ul>\r\n\r\n<p>To remove cookies from our App you can either delete the whole app or you can manage the app its settings to remove all storage and cache. If you open the app again afterwards, necessary cookies will initially be stored again.</p>\r\n\r\n<h2>Contact Us</h2>\r\n\r\n<p>If you have any questions or suggestions about our Privacy Policy, do not hesitate to contact us by email at: <a href=\"mailto:info@bloodbullets.nl\">info@bloodbullets.nl</a></p>\r\n', 6, 1, 0),
(8, 'Spelregels', '<p><strong>Site regels</strong><br />\r\n- De makers van het spel garanderen niet dat er geen fouten in het spel zitten.<br />\r\n- Het is verplicht een gevonden bug zo snel mogelijk te melden.<br />\r\n- Het is verplicht in het Nederlands te communiceren op de Nederlandstalige versie van het spel.<br />\r\n- Het is verboden bugs te misbruiken.<br />\r\n- Het is verboden om met meer dan 1 account (dubbelaccounts) te spelen met als enige uitzondering van het publieke ms-demo account.<br />\r\n- Het is verboden een grove, beledigende, pornografische of discriminerende nickname/username te kiezen.<br />\r\n- Het is verboden reclame te maken voor zaken buiten de game.<br />\r\n- Het is verboden real-life zaken te verkopen op/via deze site.<br />\r\n- Het is verboden real-life zaken te ruilen voor in-game zaken en omgekeerd.<br />\r\n- Het is verboden accounts te verkopen/weggeven.<br />\r\n- Het is verboden te spammen.<br />\r\n- Het is verboden grove, beledigende, pornografische of discriminerende zaken te posten.<br />\r\n- Het is verboden te schelden.<br />\r\n- Het is verboden te flamen (ruzie uitlokken).<br />\r\n- Het is verboden mensen real-life te bedreigen.<br />\r\n- Het is verboden om privé informatie van anderen te verspreiden.<br />\r\n- Het is verboden enquetes te voeren op deze site. Tenzij je toestemming hebt van een teamlid.<br />\r\n<br />\r\n<strong>Algemene regels</strong><br />\r\n- Toon respect voor de teamleden, respecteer dus hun beslissingen.<br />\r\n- Toon ook respect voor andere leden.<br />\r\n- Geen gezeur om teamlid te worden.<br />\r\n- Er wordt geen uitleg gegeven over waarschuwingen en bans. Ze worden ook niet teruggedraaid.<br />\r\n- Donaties / Credits blijven één ronde geldig. De duur van 1 ronde staat niet vast.<br />\r\n- Je hebt geen enkele rechten op je account.<br />\r\n- Admins mogen je account aanpassen of verwijderen zonder reden.<br />\r\n<br />\r\n<strong>Forum regels</strong><br />\r\n- Blijf bij het onderwerp van het topic, ga dus niet off-topic.<br />\r\n- Geef je topic een duidelijke titel.<br />\r\n- Zet je topic in het juiste subforum.<br />\r\n- Vooraleer je een vraag stelt, kijk dan eerst of die vraag niet reeds behandelt is in een andere topic. Hier kun je de zoekfunctie voor gebruiken.<br />\r\n- Het is verplicht Nederlands te praten op de Nederlandstalige versie van het forum.<br />\r\n- Het is verboden om nutteloze reacties te posten.<br />\r\n- Het is verboden nutteloze topics aan te maken.<br />\r\n- Het is verboden meerdere keren hetzelfde topic aan te maken.<br />\r\n- Het is verboden meerdere keren dezelfde reactie te posten.<br />\r\n- Het is verboden een gesloten topic opnieuw aan te maken.<br />\r\n- Het is verboden te schelden.<br />\r\n- Het is verboden te flamen (ruzie uitlokken).<br />\r\n- Het is verboden moedwillig je aantal posts te verhogen.<br />\r\n- Het is verboden andere spelers te beledigen.<br />\r\n- Het is verboden andere spelers te bedreigen. Dit geld voor zowel in-game als real-life bedreigingen.<br />\r\n- Het is verboden andere spelers te beschuldigen.<br />\r\n- Het is verboden reclame te maken.<br />\r\n- Het is verboden requests (bijvoorbeeld een familierequest) te posten.<br />\r\n- Het is verboden beledigend/pornografisch materiaal te posten.<br />\r\n- Het is verboden te spammen.<br />\r\n- Het is verboden privé informatie (telefoonnummers, e-mailadressen, ...) van anderen te posten.<br />\r\n- Het is verboden enquetes te plaatsen, tenzij je toestemming hebt van een mod of een admin.<br />\r\n- Het is verboden reacties te posten in BrEeZaH of uitsluitend in HOOFDLETTERS.<br />\r\n- Het is verboden het OT topic aan te maken. Deze mag alleen door een mod of een admin aangemaakt worden.<br />\r\n- Het is verboden om zaken te verkopen op het forum. Dit geldt voor zowel real-life als in-game zaken.<br />\r\n<br />\r\n<br />\r\n<strong>Website voorwaarden</strong><br />\r\n<br />\r\nDe website eigenaren zijn niet aansprakelijk voor eventuele schade of verlies opgelopen tijdens het spelen van dit spel. Ook zijn de eigenaren niet aansprakelijk voor de content (plaatjes, teksten, fimpjes etc.) die de gebruikers op de site plaatsen. De voorwaarden kunnen worden aangepast zonder de leden hiervan op de hoogte te stellen. Personen jonger dan 16 jaar dienen toestemming te vragen aan hun ouders om de donatieshop te gebruiken. Eventuele kosten die zijn opgelopen door het doneren zijn niet terug te verhalen op de eigenaren. Het donateurschap is alleen geldig op het account waarop het besteld is en het is niet mogelijk om dit over te plaatsen naar een ander account. Mocht de website offline gaan of mocht er verlies van gegevens plaatsvinden dan is het geld voor het donateurschap niet terug te halen. Het donateurschap kan op elk moment worden ingetrokken om wat voor reden dan ook. Het verzamelen van illegale credits is het proces van het aanmaken van (nep)accounts en het gebruiken van de donatiebeloningen om (max.) credits te ontvangen terwijl alle donatiewaarde wordt gecorrigeerd. In het geval dat we een dergelijk misdrijf ontdekken, word(t/en) de overtreder(s) verbannen. Om een betaal-om-te-winnen gameplay te beperken zijn credits bij donatie beloningen gelimiteerd tot 5,000 elke 31 dagen. Bij overtreding van een van deze punten zal een moderator of een admin bepalen of je gewaarschuwd of meteen verbannen wordt. Inactieve accounts die langer dan 2 jaar niet online zijn gekomen zullen permanent verwijderd worden zonder enige mogelijkheid tot terugdraaien.</p>\r\n\r\n<p>Zie ook: <a href=\"/terms-and-conditions\"><strong>Algemene voorwaarden</strong></a> & <a href=\"/privacy-policy\"><strong>Privacybeleid</strong></a>.</p>\r\n', '<p><strong>Site rules</strong><br />\r\n- The creators of the game cannot guarantee the absense of bugs.<br />\r\n- It is mandatory to report a found bug as soon as possible.<br />\r\n- It is mandatory to communicate in the English language on the English version of the game.<br />\r\n- It is forbidden to abuse bugs.<br />\r\n- It is forbidden to play with more than 1 account (double accounts) with the only exception of the public ms-demo account.<br />\r\n- It is forbidden to set a gross, offensive, pornographic or discriminating nickname/username.<br />\r\n- It is forbidden to advertise for non-game related affairs.<br />\r\n- It is forbidden to sell real-life items on/through this site.<br />\r\n- It is forbidden to exchange real-life goods for in-game goods and vice-versa.<br />\r\n- It is forbidden to sell/givaway accounts.<br />\r\n- It is forbidden to spam.<br />\r\n- It is forbidden to post gross, offensive, pornographic or discriminating content.<br />\r\n- It is forbidden to swear.<br />\r\n- It is forbidden to flame (provoke a quarrel).<br />\r\n- It is forbidden to threaten people in real-life.<br />\r\n- It is forbidden to spead private information regarding others.<br />\r\n- It is forbidden to start surveys on this site. Unless you have a team member\'s approval.<br />\r\n<br />\r\n<strong>General rules</strong><br />\r\n- Show respect for team members, so respect their decisions.<br />\r\n- Also show respect for other members.<br />\r\n- No begging to become a team member.<br />\r\n- No explenations wil be given regarding bans and warns. They wil not be reversable.<br />\r\n- Donations / Credits stay valid for an entire round. There\'s no fixed time as to how long a round lasts.<br />\r\n- You don\'t own any rights for your account.<br />\r\n- Admins can edit or delete your account without a reason.<br />\r\n<br />\r\n<strong>Forum rules</strong><br />\r\n- Stay within the topic\'s subject, don\'t go off-topic.<br />\r\n- Give your topic a clear title.<br />\r\n- Place your topic in the correct subforum.<br />\r\n- Before you ask a question, look if your question hasn\'t been answered yet in another topic. You can use the search function for this.<br />\r\n- It is mandatory to speak English on the English version of the forum.<br />\r\n- It is forbidden to post useless reactions.<br />\r\n- It is forbidden to create useless topics.<br />\r\n- It is forbidden to create a single topic more than once.<br />\r\n- It is forbidden to post the same reaction more than once.<br />\r\n- It is forbidden to recreate a closed topic.<br />\r\n- It is forbidden to scold.<br />\r\n- It is forbidden to flame (provoke a quarrel).<br />\r\n- It is forbidden to raise your posts count willfully.<br />\r\n- It is forbidden to offend other players.<br />\r\n- It is forbidden to threaten other players. This applies for both in-game and real-life threats.<br />\r\n- It is forbidden to accuse other players.<br />\r\n- It is forbidden to advertise.<br />\r\n- It is forbidden to post requests (for example a family request).<br />\r\n- It is forbidden to post offensive/pornographic material.<br />\r\n- It is forbidden to spam.<br />\r\n- It is forbidden to post private information (phone numbers, email addresses, ...) from others.<br />\r\n- It is forbidden to place surveys, unless you have a team member\'s approval.<br />\r\n- It is forbidden to post reactions in BrEeZaH or exclusively CAPITAL LETTERS.<br />\r\n- It is forbidden to create the OT. This topic may only be created by a moderator.<br />\r\n- It is forbidden to sell goods on the forum. This applies for both in-game and real-life goods.<br />\r\n<br />\r\n<br />\r\n<strong>Website conditions</strong><br />\r\n<br />\r\nThe website owners are not liable for any damage or loss incurred while playing this game. The owners are also not responsible for the content (pictures, texts, films, etc.) that the users place on the site. The conditions can be adjusted without informing the members. Persons under the age of 16 must request permission from their parents to use the donation shop. Any costs incurred by donating can not be recovered from the owners. The donorship is only valid on the account on which it was ordered and it is not possible to transfer this to another account. Should the website go offline or if there is loss of data than the money for the donorship can not be refunded. The donorship can be withdrawn at any time for whatever reason. Collecting illicit credits is the process of creating (fake) accounts and using the donation rewards to receive (max.) credits while correcting all donation value. In the case we discover such offence the offender(s) will be banned. To limit a pay-to-win gameplay, credits on donation rewards are limited to 5,000 each 31 days. In case of violation of one of these points, a moderator or an admin will determine whether you are warned or immediately banned. Inactive accounts that have not been online for more than 2 years will be removed permanently without any rollback possibilities.</p>\r\n\r\n<p>See also: <a href=\"/terms-and-conditions\"><strong>Terms and conditions</strong></a> & <a href=\"/privacy-policy\"><strong>Privacy policy</strong></a>.</p>\r\n', 7, 1, 0),
(9, 'Link Partners', '<h1>Onze externe linkpartners</h1>\r\n\r\n<p>Hieronder vind je een lijst met websites die bloodbullets steunen en andersom. Dankzij deze websites kan bloodbullets groeien! Webmaster en interesse in een link-back samenwerking? Neem contact op met <a href=\"mailto:info@bloodbullets.nl\">info@bloodbullets.nl</a>.</p>\r\n\r\n<ul>\r\n <li><a href=\"https://www.spelensite.be/\" rel=\"noreferrer\" target=\"_blanc\">Spelensite</a></li>\r\n <li><a href=\"https://www.maffia-toplijst.com/\" rel=\"noreferrer\" target=\"_blanc\">Mafia Toplijst</a></li>\r\n <li><a href=\"https://newrpg.com/\" rel=\"noreferrer\" target=\"_blanc\">NewRPG</a></li>\r\n</ul>\r\n', '<h1>Our external link partners</h1>\r\n\r\n<p>Below is a list of websites that support bloodbullets and vice versa. Thanks to these websites, bloodbullets can grow! Webmaster and interested in a link-back collaboration? Get in touch with <a href=\"mailto:info@bloodbullets.nl\">info@bloodbullets.nl</a>.</p>\r\n\r\n<ul>\r\n <li><a href=\"https://www.spelensite.be/\" rel=\"noreferrer\" target=\"_blanc\">Spelensite</a></li>\r\n <li><a href=\"https://www.maffia-toplijst.com/\" rel=\"noreferrer\" target=\"_blanc\">Mafia Toplijst</a></li>\r\n <li><a href=\"https://newrpg.com/\" rel=\"noreferrer\" target=\"_blanc\">NewRPG</a></li>\r\n</ul>\r\n', 8, 1, 0),
(10, 'Download de app', '<h1>Download de app</h1>\r\n\r\n<p>Zet je avontuur nog sneller voort in de toekomst! We bieden momenteel enkel ondersteuning voor onze Google Play Store app gebruikers.</p>\r\n\r\n<h3>Android</h3>\r\n\r\n<p><a href=\"https://play.google.com/store/apps/details?id=com.bloodbullets.webviewapp&pcampaignid=pcampaignidMKT-Other-global-all-co-prtnr-py-PartBadge-Mar2515-1\" rel=\"noreferrer\" target=\"_blanc\">https://play.google.com/store/apps/details?id=com.bloodbullets.webviewapp</a> (Google Play Store)<br />\r\n<br />\r\nAndere platformen dan Android kunnen onze web app installeren via een browser naar keuze. Zorg er voor dat je over de meest recente browser updates beschikt. Multiplatform en apple toestellen leggen uit hoe je een website als app kan installeren.</p>\r\n\r\n<h3>Multiplatform</h3>\r\n\r\n<p><a href=\"https://allthings.how/how-to-install-any-website-as-app-using-edge-chrome-browser/\" rel=\"noreferrer\" target=\"_blanc\">https://allthings.how/how-to-install-any-website-as-app-using-edge-chrome-browser/</a> (Chrome of Edge)</p>\r\n\r\n<h3>Apple toestellen</h3>\r\n\r\n<p><a href=\"https://www.maketecheasier.com/save-web-page-as-home-screen-app-ios/\" rel=\"noreferrer\" target=\"_blanc\">https://www.maketecheasier.com/save-web-page-as-home-screen-app-ios/</a> (Safari)</p>\r\n\r\n<h2>Android debug-app</h2>\r\n\r\n<p>Als je onze debug-app wilt uitproberen, zorg er dan voor dat je de Android-instelling \'Apps van derden toestaan\' inschakelt en je zou in staat moeten zijn om te downloaden, installeren en te spelen!</p>\r\n\r\n<p>Onze meest recente debug-app als (niet-vertrouwde) .apk kan je <a href=\"https://download.bloodbullets.nl/web/downloads/msapp.apk\" rel=\"noreferrer\">hier downloaden</a> (enkel Android) <small>v1.0.6</small></p>\r\n\r\n<p>Scan: <a href=\"https://www.virustotal.com/gui/file/610fe175322ebe0f939bd833432f4689b4a76b2bcf47e684f2c2ceb18a2d279a/detection\" rel=\"noreferrer\" target=\"_blanc\">VirusTotal.com</a></p>\r\n\r\n<h2>bloodbullets op GitHub</h2>\r\n\r\n<p>Je eigen Crimeclub starten, knutselen in onze source code of uitpluizen hoe bloodbullets werkt? De volgende GitHub repo bevat alles wat je nodig hebt om van start te kunnen gaan. Volg aandachtig de meegeleverde installatie instructies om je eigen bloodbullets copy on- of offline werkende te krijgen.</p>\r\n\r\n<p><a href=\"https://www.github.com/bloodbullets/bloodbullets\" rel=\"noreferrer\" target=\"_blanc\">https://www.github.com/bloodbullets/bloodbullets</a></p>\r\n', '<h1>Download the app</h1>\r\n\r\n<p>Continue your adventure even faster into the future! We currently only offer support for our Google Play Store app users.</p>\r\n\r\n<h3>Android</h3>\r\n\r\n<p><a href=\"https://play.google.com/store/apps/details?id=com.bloodbullets.webviewapp&pcampaignid=pcampaignidMKT-Other-global-all-co-prtnr-py-PartBadge-Mar2515-1\" rel=\"noreferrer\" target=\"_blanc\">https://play.google.com/store/apps/details?id=com.bloodbullets.webviewapp</a> (Google Play Store)<br />\r\n<br />\r\nPlatforms other than Android can install our web app through a browser of choice. Make sure you have the most recent browser updates. Multiplatform and apple devices explain how you can install a website as an app.</p>\r\n\r\n<h3>Multiplatform</h3>\r\n\r\n<p><a href=\"https://allthings.how/how-to-install-any-website-as-app-using-edge-chrome-browser/\" rel=\"noreferrer\" target=\"_blanc\">https://allthings.how/how-to-install-any-website-as-app-using-edge-chrome-browser/</a> (Chrome or Edge)</p>\r\n\r\n<h3>Apple devices</h3>\r\n\r\n<p><a href=\"https://www.maketecheasier.com/save-web-page-as-home-screen-app-ios/\" rel=\"noreferrer\" target=\"_blanc\">https://www.maketecheasier.com/save-web-page-as-home-screen-app-ios/</a> (Safari)</p>\r\n\r\n<h2>Android debug app</h2>\r\n\r\n<p>If you want to try out our debug app, make sure to enable the Android setting \'Allow third-party apps\' and you should be able to download, install and play!</p>\r\n\r\n<p>Our most recent debug app as (untrusted) .apk can be <a href=\"https://download.bloodbullets.nl/web/downloads/msapp.apk\" rel=\"noreferrer\">downloaded here</a> (Android only) <small>v1.0.6</small></p>\r\n\r\n<p>Scan: <a href=\"https://www.virustotal.com/gui/file/610fe175322ebe0f939bd833432f4689b4a76b2bcf47e684f2c2ceb18a2d279a/detection\" rel=\"noreferrer\" target=\"_blanc\">VirusTotal.com</a></p>\r\n\r\n<h2>bloodbullets on GitHub</h2>\r\n\r\n<p>Starting your own Crimeclub, tinkering in our source code or figuring out how bloodbullets works? The following GitHub repo contains everything you need to get started. Carefully follow the included installation instructions to get your own bloodbullets copy working online or offline.</p>\r\n\r\n<p><a href=\"https://www.github.com/bloodbullets/bloodbullets\" rel=\"noreferrer\" target=\"_blanc\">https://www.github.com/bloodbullets/bloodbullets</a></p>\r\n', 9, 1, 0),
(11, 'Doneren', '<p>Door op onderstaande knop op \"doorgaan\" te drukken ga je akkoord met onze <a href=\"/terms-and-conditions\"><span style=\"color:#3498db\"><strong>algemene voorwaarden</strong></span></a>, onze <a href=\"/game/information/rules\"><span style=\"color:#3498db\"><strong>regels</strong></span></a> en onderstaande voorwaarden:</p>\r\n\r\n<ul>\r\n <li>De eigenaar van het betalingsmiddel moet toestemming hebben gegeven voor het doneren.</li>\r\n <li>Personen onder de 18 jaar moeten toestemming hebben van hun ouders of voogd om te doneren.</li>\r\n <li>bloodbullets.nl staat niet garant voor het mislukken van donaties.</li>\r\n <li>bloodbullets.nl geeft geen geld maar enkel credits terug bij een mislukte bewezen donatie.</li>\r\n <li>bloodbullets.nl bewaard enkel: transactiecode, bedrag, gebruikersnaam en transactiedatum wat anonimiteit op onze server kan bieden.</li>\r\n <li>Exact 31 dagen na je laatste donatie reset je credits beloning limiet.</li>\r\n <li>Meerdere opeenvolgende donaties reset ook je laatste donatie datum.</li>\r\n <li>Credits worden beloond vanaf €1,00 tot €50,00 in donatiewaarde. (100 - 5,000 credits)</li>\r\n <li>De donatie credits bonus zijn 1 ronde geldig.</li>\r\n</ul>\r\n\r\n<h4>Verdien credits</h4>\r\n\r\n<p>Zonder doneren kan je op volgende manieren aan credits komen: spontane misdaden plegen, voertuigen stelen, hoeren pimpen en eenheden smokkelen. Ook kan je mits wat geluk credits verdienen met luckyboxen die voornamelijk gratis verkrijgbaar zijn elke dag bij daily challenges. Ook met Missies > Publieke missie kan af en toe luckyboxen of credits gewonnen worden.</p>\r\n', '<p>By clicking the \"continue\" button below you agree to our <a href=\"/terms-and-conditions\"><span style=\"color:#3498db\"><strong>terms and conditions</strong></span></a>, our <a href=\"/game/information/rules\"><span style=\"color:#3498db\"><strong>rules</strong></span></a> and the conditions below:</p>\r\n\r\n<ul>\r\n <li>The owner of the payment method must have given permission for the donation.</li>\r\n <li>Persons under the age of 18 must have parental or guardian consent to donate.</li>\r\n <li>bloodbullets.nl is not liable for the failure of donations.</li>\r\n <li>bloodbullets.nl does not return money but only credits in case of a failed proven donation.</li>\r\n <li>bloodbullets.nl only stores: transaction code, amount, username and transaction date, which can provide anonymity on our server.</li>\r\n <li>Exactly 31 days after your last donation your credits reward limit will reset.</li>\r\n <li>Multiple consecutive donations will also reset your last donation date.</li>\r\n <li>Credits are rewarded from €1.00 to €50.00 in donation value. (100 - 5,000 credits)</li>\r\n <li>The donation credits bonus are valid for 1 round.</li>\r\n</ul>\r\n\r\n<h4>Don\'t own Euro?</h4>\r\n\r\n<p>The amount of credits you will receive depends on your currency its value converted to euro (€), minus any PayPal conversion fees. Make sure at least 1 euro excluding a conversion fee is donated to receive your credits immediately. Conversion fee <em>is not</em> the transaction / processing fee and usually a small pennies amount.</p>\r\n\r\n<h4>Earn credits</h4>\r\n\r\n<p>Without donating you can get credits doing the following: commit spontaneous crimes, stealing vehicles, pimping hoes and smuggling units. With a bit of luck you can also earn credits with lucky boxes that are mainly available for free every day at daily challenges. Also with Missions > Public mission you can occasionally win lucky boxes or credits.</p>\r\n', 10, 1, 0);
-- --------------------------------------------------------
--
-- Tabelstructuur voor tabel `crime`
--
CREATE TABLE `crime` (
`id` int(11) NOT NULL COMMENT 'type=disabled',
`name_nl` varchar(40) NOT NULL,
`description_nl` varchar(255) NOT NULL,
`name_en` varchar(40) NOT NULL,
`description_en` varchar(255) NOT NULL,
`picture` varchar(25) NOT NULL COMMENT 'type=upload',
`level` smallint(6) NOT NULL DEFAULT 1,
`minProfit` int(11) NOT NULL DEFAULT 0,
`maxProfit` int(11) NOT NULL DEFAULT 0,
`difficulty` smallint(6) NOT NULL DEFAULT 5,
`maxRankPoints` tinyint(1) NOT NULL DEFAULT 1,
`donatorID` tinyint(1) DEFAULT 0 COMMENT 'couple=donator&factor=id&show=donator_nl',
`position` int(11) DEFAULT NULL,
`active` tinyint(1) NOT NULL DEFAULT 1,
`deleted` tinyint(1) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPACT;
--
-- Gegevens worden geëxporteerd voor tabel `crime`
--
INSERT INTO `crime` (`id`, `name_nl`, `description_nl`, `name_en`, `description_en`, `picture`, `level`, `minProfit`, `maxProfit`, `difficulty`, `maxRankPoints`, `donatorID`, `position`, `active`, `deleted`) VALUES
(1, 'Besteel een kind', 'Pak het vers zakgeld van een kleine jongen.', 'Rob a child', 'Take fresh pocket money from a little kid.', '798191fd.jpg', 1, 1, 3, 1, 1, 0, 0, 1, 0),
(2, 'Overval een nachtwinkel', 'Overval de nachtwinkel bediende juist voor sluiting tijd. ', 'Rob a nightshop', 'Rob a nighshop owner just before he closes his shop.', '171ecb55.jpg', 3, 2, 7, 2, 1, 0, 1, 1, 0),
(3, 'Train snelle handen', 'Train je snelheid om geld uit de kassa te stelen tijdens het shoppen.', 'Train quick hands', 'Practice quick hands to take some quick cash while shopping.', '718eed59.png', 4, 5, 20, 4, 1, 0, 2, 1, 0),
(4, 'Breek in een huisje ', 'Breek in in een huisje in het bos.', 'Break into a tiny house', 'Break into a tiny house in the woods.', 'fc705fdf.jpg', 7, 7, 30, 6, 1, 0, 3, 1, 0),
(5, 'Besteel een verzekeraar', 'Steel geld uit de kluis van het kantoor.', 'Rob a insurance broker', 'Steal money from the vault inside the office.', 'e7a487f8.jpg', 9, 10, 50, 7, 1, 0, 4, 1, 0),
(6, 'Hack een bank automaat', 'Kraak de encrypty van een geld automaat.', 'Hack an ATM', 'Crack the encryption of an ATM.', '7cdf4f70.jpg', 12, 15, 75, 7, 1, 0, 5, 1, 0),
(7, 'Beroof een magazijn', 'Breek in bij het magazijn van een internetbedrijf.', 'Rob a storage facility', 'Break into the storage facility of an internet company.', '3b01f9e2.png', 15, 20, 125, 8, 1, 0, 6, 1, 0),
(8, 'Beroof een juwelier ', 'Koop een horloge bij de plaatselijke juwelier en beroof dan de kassa.', 'Rob a jewelry store', 'Buy a watch at the local jewelry store and rob the cash desk afterwards.', 'bb2177a4.jpg', 18, 25, 130, 13, 2, 0, 7, 1, 0),
(9, 'breek in bij een villa ', 'Sluip in villa een terwijl niemand thuis is.', 'Break into a villa', 'Sneak inside a villa while nobody is home.', '832a9967.jpg', 21, 30, 150, 8, 1, 0, 8, 1, 0),
(10, 'Ontvoer een zakenman', 'Vraag los geld voor de zakenman die je hebt ontvoerd.', 'Kidnap a business man.', 'Demand a ransom for the business man you\'ve kidnapped.', '68d56042.jpg', 23, 50, 175, 9, 2, 0, 9, 1, 0),
(11, 'Breek in bij een bankier ', 'Besteel de vakantie woning van een bankier.', 'Rob a banker', 'Break into the holiday house from a banker.', '404a15ef.jpg', 25, 70, 190, 10, 1, 0, 10, 1, 0),
(12, 'Saboteer een geldtransport ', 'Besteel het geld uit de vrachtwagen onderweg naar de bank.', 'Sabotage a money transfer', 'Steal the money from a truck transferring money to the bank.', 'f6ffb09b.jpg', 29, 85, 230, 11, 2, 0, 11, 1, 0),
(13, 'Beroof een bank ', 'Beroof de plaatselijke bank met een wapen ', 'Rob a local bank', 'Rob a local bank with a gun.', '0dbfc357.png', 32, 150, 400, 12, 3, 5, 12, 1, 0),
(14, 'Steel chinees porselein ', 'Breek in bij een magazijn en neem alle chineese draken beeldjes mee.', 'Steal chinese porcelain', 'Break into a warehouse and take all chinese dragon statues.', '5320691c.jpg', 33, 380, 610, 14, 2, 0, 13, 1, 0),
(15, 'Beroof een garage', 'Steel een voertuig in een goed draaiende garage.', 'Rob a garage', 'Steal a vehicle in a well running garage.', '3ec63ed3.jpg', 36, 700, 900, 14, 3, 0, 14, 1, 0),
(16, 'Ontvoer een politicus ', 'Ontvoer een regionale politicus en eis losgeld.', 'Kidnap a politician', ' Kidnap a regional politician and demand a ransom.', '4c8426eb.jpg', 39, 1100, 1300, 15, 3, 10, 16, 1, 0),
(17, 'Beroof een bank', 'Beroof een kluis in de bank.', 'Rob a bank', 'Rob a safe in the bank.', 'b7314bcb.jpg', 40, 1250, 1450, 16, 4, 0, 17, 1, 0),
(18, 'Pleeg fraude ', 'Speel met de cijfertjes op je belastingsbrief.', 'Commit fraude', 'Play with the numbers on your tax bill.', 'bb834023.jpg', 43, 1350, 1950, 17, 3, 0, 18, 1, 0),
(19, 'Steel een luxe boot ', 'Ga naar de haven en vaar weg met een luxe boot.', ' Steal a luxury boat', 'Make your way to the harbor and sail away by luxury boat.', '4311c386.jpg', 44, 1500, 2200, 19, 4, 0, 19, 1, 0),
(20, 'Steel wapens ', 'Steel de aller nieuwste wapen van het leger. ', 'Steal weapons', 'Steal the Army\'s newest weapon.', '2c547de9.jpg', 47, 1600, 4000, 20, 5, 0, 20, 1, 0),
(21, 'Beroof een bank', 'Pleeg een overval in de nationale bank. ', 'Rob a bank', 'Robbery in the national bank.', 'a90e718f.jpg', 50, 1750, 5000, 21, 5, 0, 21, 1, 0),
(22, 'Beroof een garage', 'Steel de auto\'s uit een chic garage.', 'Rob a garage', 'Steal the cars from a chic garage.', '1990116c.jpg', 53, 1900, 7000, 23, 4, 5, 22, 1, 0),
(23, 'Ontvoer een bankier ', 'Ontvoer een goed verdienende bankier en eis losgeld aan de familie.', 'Kidnap a banker', 'Kidnap a high-income banker and demand a ransom from the family.', '81d1c60a.jpg', 55, 2000, 8000, 24, 5, 0, 23, 1, 0),
(24, 'Beroof een museum ', 'Steel de schilderijen uit de nationale museum.', 'Rob a museum', 'Steal the paintings from the national museum.', 'ec15d951.jpg', 58, 2500, 9500, 27, 5, 10, 24, 1, 0),
(25, 'Steel drugs', 'Steel drugs van een groothandel.', 'Steal drugs', 'Steal drugs from a wholesaler.', '0e478a1c.jpg', 61, 3000, 10000, 27, 4, 0, 25, 1, 0),
(26, 'Breek in een magazijn ', 'Breek in bij een magazijn van autohandelaars.', 'Break into a warehouse', 'Break into a car dealer warehouse.', 'c08feae1.jpg', 64, 3500, 12000, 29, 5, 0, 26, 1, 0),
(27, 'Beroof een juwelier', 'Wacht het juiste moment af om een juwelier te beroven.', ' Rob a jeweler', 'Wait for the right time to rob a jeweler.', '9c2abc70.jpg', 67, 4000, 15000, 30, 6, 5, 27, 1, 0),
(28, '', '', '', '', '', 1, 0, 0, 5, 6, 0, 28, 1, 1),
(29, '', '', '', '', '', 1, 0, 0, 5, 4, 0, 29, 1, 1),
(30, 'Zwerver beroven', 'Beroof een zwerver van zijn geld.', ' Robbing hobo', ' Rob a drifter of his money.', 'd75c921b.jpg', 70, 4500, 20000, 33, 6, 0, 30, 1, 0),
(31, '', '', '', '', '', 1, 0, 0, 5, 5, 0, 31, 1, 1),
(32, 'Ontvoer de president', 'Ontvoer de president en eis losgeld.', 'Kidnap the president', 'Kidnap the president and demand a ransom.', 'c81659f6.jpg', 73, 5000, 25000, 34, 7, 10, 32, 1, 0),
(33, 'Beroof FC Barcelona', 'Steel het geld van de rekening van FC Barcelona.', 'Rob FC Barcelona', 'Steal the money from FC Barcelona\'s account.', 'adedf5be.png', 75, 6000, 30000, 36, 6, 0, 33, 1, 0),
(34, 'Beroof Nexive', 'Steel al het geld van Nexive zijn bankrekening.', 'Rob Nexive', 'Steal all the money from Nexive\'s bank account.', 'c9a0bf41.jpg', 78, 7000, 35000, 37, 7, 0, 34, 1, 0),
(35, '', '', '', '', '', 1, 0, 0, 5, 7, 0, 35, 1, 1),
(36, '', '', '', '', '', 1, 0, 0, 5, 8, 0, 36, 1, 1),
(37, 'Ontvoer Lionel Messi', 'Ontvoer Messi en vraag losgeld.', 'Kidnap Lionel Messi', 'Kidnap Messi and demand ransom.', '9f659297.jpg', 81, 8500, 40000, 38, 9, 0, 37, 1, 0),
(38, 'Beroof een mediawinkel', 'Steel het geld uit de kassa van een mediawinkel.', 'Rob a media store', 'Steal the money from a media store\'s cash register.', '7a935892.png', 84, 9500, 45000, 39, 8, 5, 38, 1, 0),
(39, 'Beroof een politie agent', 'Steel het geld en wapen van een politie agent.', 'Rob a police officer', 'Steal a cop\'s money and weapon.', '47289363.jpg', 87, 10000, 50000, 43, 9, 0, 39, 1, 0),
(40, 'Beroof Alcazar', 'Steel het geld van Alcazar\'s bankrekening.', 'Rob Alcazar', 'Steal the money from Alcazar\'s bank account.', '1fce0187.jpg', 91, 12500, 57500, 5, 1, 10, 40, 1, 0),
(41, 'Beroof het casino', 'Kraak de kluis van een casino.', 'Rob the casino', 'Crack a casino\'s safe.', '7d43381c.jpg', 94, 15000, 65000, 43, 9, 0, 41, 1, 0),
(42, 'Overval het ziekenhuis', 'Steel geld en medicijnen uit het ziekenhuis.', 'Rob the hospital', 'Steal money and medicines from the hospital.', '884ce90b.jpg', 97, 20000, 70000, 45, 9, 10, 42, 1, 0),
(43, '', '', '', '', '', 1, 0, 0, 5, 1, 0, 43, 1, 1),
(44, 'Beroof het koninklijk paleis', 'Steel al het geld van de koning en koningin.', '', '', 'd820bf3c.jpg', 93, 0, 0, 5, 1, 0, 44, 1, 1),
(45, 'Ontvoer Zlatan Ibrahimovic', 'Ontvoer Ibrahimovic en vraag losgeld.', 'Kidnap Zlatan Ibrahimovic', 'Kidnap Ibrahimovic and demand ransom.', 'def02a18.jpg', 99, 35000, 80000, 47, 9, 0, 45, 1, 0),
(46, '', '', '', '', '', 1, 0, 0, 5, 1, 0, 46, 1, 1),
(47, 'Beroof het europees parlement', 'Steel het geld van de politiekers.', '', '', '6063a63a.jpg', 97, 0, 0, 5, 1, 0, 47, 1, 1),
(48, 'Beroof MDev', 'Beroof het geld van de bankrekening van MDev.', 'Rob MDev', ' Rob the money from MDev\'s bank account.', '1139e485.png', 100, 50000, 100000, 51, 9, 0, 48, 1, 0);
-- --------------------------------------------------------
--
-- Tabelstructuur voor tabel `crime_org`
--
CREATE TABLE `crime_org` (
`id` int(11) NOT NULL COMMENT 'type=disabled',
`name_nl` varchar(30) NOT NULL DEFAULT '',
`description_nl` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '',
`name_en` varchar(30) NOT NULL DEFAULT '',
`description_en` varchar(255) NOT NULL DEFAULT '',
`picture` varchar(30) DEFAULT NULL COMMENT 'type=upload',
`type` tinyint(1) NOT NULL DEFAULT 1 COMMENT 'select=Alleen,Twee,Vier',
`minProfit` int(11) NOT NULL DEFAULT 0,
`maxProfit` int(11) NOT NULL DEFAULT 0,
`difficulty` smallint(6) NOT NULL DEFAULT 5,
`waitingTimeCompletion` smallint(6) NOT NULL DEFAULT 120,
`travelTimeCompletion` smallint(6) NOT NULL DEFAULT 120,
`prisonTimeBusted` smallint(6) NOT NULL DEFAULT 150,
`position` int(11) NOT NULL DEFAULT 0,
`active` tinyint(1) NOT NULL DEFAULT 1,
`deleted` tinyint(1) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPACT;
--
-- Gegevens worden geëxporteerd voor tabel `crime_org`
--
INSERT INTO `crime_org` (`id`, `name_nl`, `description_nl`, `name_en`, `description_en`, `picture`, `type`, `minProfit`, `maxProfit`, `difficulty`, `waitingTimeCompletion`, `travelTimeCompletion`, `prisonTimeBusted`, `position`, `active`, `deleted`) VALUES
(1, 'Overval een tankstation', 'Bereid je voor op actie terwijl je een groot tankstation op je eentje beroofd.', 'Rob a gas station', 'Prepare for some heat as you\'ll take on a big gas station on your own.', '', 1, 30000, 60000, 16, 120, 0, 120, 1, 1, 0),
(2, 'Job op Route 66', 'Ga samen met een criminele partner de moederweg van America bestormen op zoek naar grote ladingen vol buit!', 'Route 66 Job', 'Storm the mother road of America with a partner in crime in search of big cargo full of loot!', '', 2, 130000, 360000, 22, 240, 0, 150, 2, 1, 0),
(3, 'Uitje naar Las Vegas', 'Ga met 4 genieten van de vakantie van je leven, of niet? Misdaad bevat een 4 minuten reistijd buiten bloodbullets voor alle deelnemers!', 'Trip to Las Vegas', 'Prepare with 4 to enjoy the vacation of your life, or not? Crime includes a 4 minute travel trip outside of bloodbullets for all participants!', '', 3, 1100000, 5500000, 38, 520, 240, 180, 3, 1, 0);
-- --------------------------------------------------------
--
-- Tabelstructuur voor tabel `crime_org_prep`
--
CREATE TABLE `crime_org_prep` (
`id` int(11) NOT NULL COMMENT 'type=disabled',
`orgCrimeID` int(11) NOT NULL DEFAULT 0,
`userID` bigint(20) NOT NULL DEFAULT 0,
`job` tinyint(1) NOT NULL DEFAULT 1 COMMENT 'select=driver,raider',
`participantID` bigint(20) NOT NULL DEFAULT 0,
`participant2ID` bigint(20) NOT NULL DEFAULT 0,
`participant3ID` bigint(20) NOT NULL DEFAULT 0,
`userReady` tinyint(1) NOT NULL DEFAULT 0,
`participantReady` tinyint(1) NOT NULL DEFAULT 0,
`participant2Ready` tinyint(1) NOT NULL DEFAULT 0,
`participant3Ready` tinyint(1) NOT NULL DEFAULT 0,
`garageID` int(11) NOT NULL DEFAULT 0,
`weaponType` tinyint(1) NOT NULL DEFAULT 0,
`intelType` tinyint(1) NOT NULL DEFAULT 0,
`commitTime` bigint(20) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPACT;
-- --------------------------------------------------------
--
-- Tabelstructuur voor tabel `daily_challenge`
--
CREATE TABLE `daily_challenge` (
`id` int(11) NOT NULL COMMENT 'type=disabled',
`challengeID` tinyint(1) NOT NULL DEFAULT 0,
`amount` int(11) NOT NULL DEFAULT 0,
`rewardType` tinyint(1) NOT NULL DEFAULT 0,
`rewardAmount` int(11) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPACT;
--
-- Gegevens worden geëxporteerd voor tabel `daily_challenge`
--
INSERT INTO `daily_challenge` (`id`, `challengeID`, `amount`, `rewardType`, `rewardAmount`) VALUES
(1, 1, 29, 1, 3000000),
(2, 3, 45, 3, 10),
(3, 8, 5300, 4, 138);
-- --------------------------------------------------------
--
-- Tabelstructuur voor tabel `detective`
--
CREATE TABLE `detective` (
`id` int(11) NOT NULL COMMENT 'type=disabled',
`userID` bigint(20) DEFAULT NULL COMMENT 'couple=user&factor=id&show=username',
`victimID` bigint(20) DEFAULT NULL COMMENT 'couple=user&factor=id&show=username',
`startDate` datetime NOT NULL DEFAULT current_timestamp(),
`hours` tinyint(4) NOT NULL DEFAULT 2,
`timeFound` bigint(20) NOT NULL DEFAULT 1800,
`shadow` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'type=yesno',
`foundCityID` tinyint(4) NOT NULL DEFAULT 0 COMMENT 'couple=city&factor=id&show=name',
`position` int(11) DEFAULT NULL,
`active` tinyint(1) NOT NULL DEFAULT 1,
`deleted` tinyint(1) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPACT;
-- --------------------------------------------------------
--
-- Tabelstructuur voor tabel `donate`
--
CREATE TABLE `donate` (
`id` int(11) NOT NULL COMMENT 'type=disabled',
`userID` bigint(20) NOT NULL DEFAULT 0 COMMENT 'couple=user&factor=id&show=username',
`sandbox` tinyint(1) NOT NULL DEFAULT 0,
`tx` varchar(255) NOT NULL DEFAULT '',
`currency` varchar(10) NOT NULL DEFAULT '',
`amount` float(10,2) NOT NULL DEFAULT 0.00,
`net_amount` float(10,2) NOT NULL DEFAULT 0.00,
`credits` bigint(20) NOT NULL DEFAULT 0,
`date` datetime NOT NULL DEFAULT current_timestamp(),
`position` int(11) DEFAULT NULL,
`active` tinyint(1) NOT NULL DEFAULT 1,
`deleted` tinyint(1) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
-- --------------------------------------------------------
--
-- Tabelstructuur voor tabel `donator`
--
CREATE TABLE `donator` (
`id` int(11) NOT NULL COMMENT 'type=disabled',
`donator_nl` varchar(25) DEFAULT NULL,
`donator_en` varchar(25) DEFAULT NULL,
`colorCode` varchar(7) DEFAULT NULL,
`position` int(11) DEFAULT NULL,
`active` tinyint(1) NOT NULL DEFAULT 1,
`deleted` tinyint(1) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPACT;
--
-- Gegevens worden geëxporteerd voor tabel `donator`
--
INSERT INTO `donator` (`id`, `donator_nl`, `donator_en`, `colorCode`, `position`, `active`, `deleted`) VALUES
(0, 'Lid', 'Member', '#FFFFFF', 1, 1, 0),
(1, 'Donateur', 'Donator', '#F7FF15', 2, 1, 0),
(5, 'VIP', 'VIP', '#42A6C6', 3, 1, 0),
(10, 'Gold Member', 'Gold Member', '#F56D23', 4, 1, 0);
-- --------------------------------------------------------
--
-- Tabelstructuur voor tabel `donator_list`
--
CREATE TABLE `donator_list` (
`id` int(11) NOT NULL COMMENT 'type=disabled',
`userID` bigint(20) NOT NULL DEFAULT 0 COMMENT 'couple=user&factor=id&show=username'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
-- --------------------------------------------------------
--
-- Tabelstructuur voor tabel `drug_liquid`
--
CREATE TABLE `drug_liquid` (
`id` bigint(20) NOT NULL COMMENT 'type=disabled',
`userID` bigint(20) NOT NULL DEFAULT 0,
`type` tinyint(1) NOT NULL DEFAULT 1 COMMENT 'select=drugs,drank',
`smuggleID` int(11) NOT NULL DEFAULT 0,
`units` mediumint(9) NOT NULL DEFAULT 0,
`time` bigint(20) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPACT;
-- --------------------------------------------------------
--
-- Tabelstructuur voor tabel `equipment`
--
CREATE TABLE `equipment` (
`id` bigint(20) NOT NULL,
`userID` bigint(20) DEFAULT NULL,
`type` char(1) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT '',
`equipmentID` smallint(6) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPACT;
-- --------------------------------------------------------
--
-- Tabelstructuur voor tabel `family`
--
CREATE TABLE `family` (
`id` int(11) NOT NULL COMMENT 'type=disabled',
`name` varchar(25) DEFAULT NULL,
`bossUID` bigint(20) NOT NULL DEFAULT 0 COMMENT 'couple=user&factor=id&show=username',
`underbossUID` bigint(20) NOT NULL DEFAULT 0 COMMENT 'couple=user&factor=id&show=username',
`bankmanagerUID` bigint(20) NOT NULL DEFAULT 0 COMMENT 'couple=user&factor=id&show=username',
`forummodUID` bigint(20) NOT NULL DEFAULT 0 COMMENT 'couple=user&factor=id&show=username',
`vip` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'type=yesno',
`money` bigint(20) NOT NULL DEFAULT 0,
`image` varchar(50) DEFAULT NULL,
`icon` varchar(50) DEFAULT NULL,
`startDate` datetime NOT NULL DEFAULT current_timestamp(),
`join` tinyint(1) NOT NULL DEFAULT 1 COMMENT 'type=yesno',
`leaveCosts` int(11) NOT NULL DEFAULT 0,
`profile` text DEFAULT NULL COMMENT 'type=cms',
`message` text DEFAULT NULL COMMENT 'type=cms',
`crusher` smallint(6) NOT NULL DEFAULT 0 COMMENT 'select=0,1000,2500,5000',
`converter` smallint(6) NOT NULL DEFAULT 0 COMMENT 'select=0,1000,2500,5000',
`mercenariesUsed` int(11) NOT NULL DEFAULT 0,
`bullets` bigint(20) NOT NULL DEFAULT 0,
`bulletFactory` smallint(6) NOT NULL DEFAULT 0,
`bfProduction` int(11) NOT NULL DEFAULT 0 COMMENT 'select=0,500,2500,5000,25000,50000,250000,500000',
`brothel` smallint(6) NOT NULL DEFAULT 0,
`cBulletFactory` bigint(20) NOT NULL DEFAULT 0,
`cBrothel` bigint(20) NOT NULL DEFAULT 0,
`position` int(11) DEFAULT NULL,
`active` tinyint(1) NOT NULL DEFAULT 1,
`deleted` tinyint(1) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPACT;
--
-- Gegevens worden geëxporteerd voor tabel `family`
--
INSERT INTO `family` (`id`, `name`, `bossUID`, `underbossUID`, `bankmanagerUID`, `forummodUID`, `vip`, `money`, `image`, `icon`, `startDate`, `join`, `leaveCosts`, `profile`, `message`, `crusher`, `converter`, `mercenariesUsed`, `bullets`, `bulletFactory`, `bfProduction`, `brothel`, `cBulletFactory`, `cBrothel`, `position`, `active`, `deleted`) VALUES
(1, 'test', 5, 0, 0, 0, 0, 8999899999999, NULL, NULL, '2025-03-28 11:12:41', 1, 0, NULL, NULL, 0, 0, 3, 0, 0, 0, 0, 0, 0, NULL, 1, 0);
-- --------------------------------------------------------
--
-- Tabelstructuur voor tabel `family_alliance`
--
CREATE TABLE `family_alliance` (
`id` int(11) NOT NULL COMMENT 'type=disabled',
`familyID` int(11) DEFAULT NULL COMMENT 'couple=family&factor=id&show=name',
`allianceFamilyID` int(11) DEFAULT NULL COMMENT 'couple=family&factor=id&show=name',
`requesterFamilyID` int(11) DEFAULT NULL COMMENT 'couple=family&factor=id&show=name',
`position` int(11) DEFAULT NULL,
`active` tinyint(1) NOT NULL DEFAULT 0,
`deleted` tinyint(1) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPACT;
-- --------------------------------------------------------
--
-- Tabelstructuur voor tabel `family_bank_log`
--
CREATE TABLE `family_bank_log` (
`id` bigint(20) NOT NULL,
`familyID` int(11) DEFAULT NULL,
`senderID` bigint(20) DEFAULT NULL,
`receiverID` bigint(20) DEFAULT NULL,
`amount` bigint(20) DEFAULT NULL,
`date` datetime NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPACT;
-- --------------------------------------------------------
--
-- Tabelstructuur voor tabel `family_bf_donation_log`
--
CREATE TABLE `family_bf_donation_log` (
`id` int(11) NOT NULL COMMENT 'type=disabled',
`familyID` int(11) DEFAULT NULL COMMENT 'couple=family&factor=id&show=name',
`userID` bigint(20) DEFAULT NULL COMMENT 'couple=user&factor=id&show=username',
`amount` bigint(20) NOT NULL DEFAULT 0,
`amountAll` bigint(20) NOT NULL DEFAULT 0,
`lastDonation` datetime NOT NULL DEFAULT current_timestamp(),
`position` int(11) DEFAULT NULL,
`active` tinyint(1) NOT NULL DEFAULT 1,
`deleted` tinyint(1) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPACT;
-- --------------------------------------------------------
--
-- Tabelstructuur voor tabel `family_bf_send_log`
--
CREATE TABLE `family_bf_send_log` (
`id` int(11) NOT NULL COMMENT 'type=disabled',
`familyID` int(11) DEFAULT NULL COMMENT 'couple=family&factor=id&show=name',
`senderID` bigint(20) DEFAULT NULL COMMENT 'couple=user&factor=id&show=username',
`receiverID` bigint(20) DEFAULT NULL COMMENT 'couple=user&factor=id&show=username',
`amount` int(11) DEFAULT NULL,
`date` datetime NOT NULL DEFAULT current_timestamp(),
`position` int(11) DEFAULT NULL,
`active` tinyint(1) NOT NULL DEFAULT 1,
`deleted` tinyint(1) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPACT;
-- --------------------------------------------------------
--
-- Tabelstructuur voor tabel `family_brothel_whore`
--
CREATE TABLE `family_brothel_whore` (
`id` bigint(20) NOT NULL COMMENT 'type=disabled',
`familyID` int(11) NOT NULL DEFAULT 0 COMMENT 'couple=family&factor=id&show=name',
`userID` bigint(20) NOT NULL DEFAULT 0 COMMENT 'couple=user&factor=id&show=username',
`whores` int(11) NOT NULL DEFAULT 0,
`position` bigint(20) DEFAULT NULL,
`active` smallint(6) NOT NULL DEFAULT 1,
`deleted` smallint(6) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPACT;
-- --------------------------------------------------------
--
-- Tabelstructuur voor tabel `family_crime`
--
CREATE TABLE `family_crime` (
`id` bigint(20) NOT NULL COMMENT 'type=disabled',
`starterUID` bigint(20) DEFAULT NULL COMMENT 'couple=user&factor=id&show=username',
`num_participants` smallint(6) DEFAULT 3,
`participants` varchar(255) DEFAULT '',
`familyID` int(11) DEFAULT 0 COMMENT 'couple=family&factor=id&show=name',
`stateID` smallint(6) DEFAULT 0 COMMENT 'couple=state&factor=id&show=name',
`mercenaries` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'type=yesno',
`crime` smallint(6) DEFAULT 1,
`position` bigint(20) DEFAULT NULL,
`active` tinyint(1) NOT NULL DEFAULT 1,
`deleted` tinyint(1) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPACT;
-- --------------------------------------------------------
--
-- Tabelstructuur voor tabel `family_donation_log`
--
CREATE TABLE `family_donation_log` (
`id` bigint(20) NOT NULL,
`familyID` int(11) DEFAULT NULL,
`userID` bigint(20) DEFAULT NULL,
`amount` bigint(20) DEFAULT NULL,
`amountAll` bigint(20) DEFAULT NULL,
`lastDonation` datetime NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPACT;
-- --------------------------------------------------------
--
-- Tabelstructuur voor tabel `family_garage`
--
CREATE TABLE `family_garage` (
`id` bigint(20) NOT NULL COMMENT 'type=disabled',
`familyID` int(11) DEFAULT NULL COMMENT 'couple=family&factor=id&show=name',
`size` varchar(30) NOT NULL DEFAULT 'small',
`position` bigint(20) DEFAULT NULL,
`active` tinyint(1) NOT NULL DEFAULT 1,
`deleted` tinyint(1) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPACT;
-- --------------------------------------------------------
--
-- Tabelstructuur voor tabel `family_join_invite`
--
CREATE TABLE `family_join_invite` (
`id` bigint(20) NOT NULL COMMENT 'type=disabled',
`type` enum('Join','Invite') NOT NULL DEFAULT 'Join',
`userID` bigint(20) NOT NULL COMMENT 'couple=user&factor=id&show=username',
`familyID` int(11) NOT NULL COMMENT 'couple=family&factor=id&show=name',
`position` bigint(20) DEFAULT NULL,
`active` tinyint(1) NOT NULL DEFAULT 1,
`deleted` tinyint(1) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPACT;
-- --------------------------------------------------------
--
-- Tabelstructuur voor tabel `family_mercenary_log`
--
CREATE TABLE `family_mercenary_log` (
`id` int(11) NOT NULL COMMENT 'type=disabled',
`familyID` int(11) NOT NULL DEFAULT 0 COMMENT 'couple=family&factor=id&show=name',
`userID` bigint(20) NOT NULL DEFAULT 0 COMMENT 'couple=user&factor=id&show=username',
`mercenaries` smallint(6) DEFAULT NULL,
`date` datetime NOT NULL DEFAULT current_timestamp(),
`position` int(11) DEFAULT NULL,
`active` tinyint(1) NOT NULL DEFAULT 1,
`deleted` tinyint(1) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPACT;
-- --------------------------------------------------------
--
-- Tabelstructuur voor tabel `family_raid`
--
CREATE TABLE `family_raid` (
`id` int(11) NOT NULL COMMENT 'type=disabled',
`stateID` smallint(6) DEFAULT NULL COMMENT 'couple=state&factor=id&show=name',
`familyID` int(11) DEFAULT NULL COMMENT 'couple=family&factor=id&show=name',
`leaderID` bigint(20) DEFAULT NULL COMMENT 'couple=user&factor=id&show=username',
`driverID` bigint(20) DEFAULT NULL COMMENT 'couple=user&factor=id&show=username',
`bombExpertID` bigint(20) DEFAULT NULL COMMENT 'couple=user&factor=id&show=username',
`weaponExpertID` bigint(20) DEFAULT NULL COMMENT 'couple=user&factor=id&show=username',
`driverReady` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'type=yesno',
`bombExpertReady` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'type=yesno',
`weaponExpertReady` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'type=yesno',
`garageID` int(11) DEFAULT NULL COMMENT 'couple=garage&factor=id&show=id',
`bombType` tinyint(1) DEFAULT NULL COMMENT 'select=1xTNT,2xTNT,1xC4,2xC4',
`weaponType` tinyint(1) DEFAULT NULL COMMENT 'select=UZI,Stg44,M4',
`bullets` smallint(6) DEFAULT 0,
`position` int(11) DEFAULT NULL,
`active` tinyint(1) NOT NULL DEFAULT 1,
`deleted` tinyint(1) NOT NULL DEFAULT 0