forked from h4xrOx/gamesense.pub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.sql
3142 lines (2988 loc) · 86.6 KB
/
test.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- phpMyAdmin SQL Dump
-- version 4.5.4.1deb2ubuntu2
-- http://www.phpmyadmin.net
--
-- Хост: localhost
-- Время создания: Июл 17 2018 г., 03:51
-- Версия сервера: 5.7.22-0ubuntu0.16.04.1
-- Версия PHP: 7.2.7-1+ubuntu16.04.1+deb.sury.org+1
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
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 */;
--
-- База данных: `test`
--
-- --------------------------------------------------------
--
-- Структура таблицы `ajax_chat_bans`
--
CREATE TABLE `ajax_chat_bans` (
`userID` int(11) NOT NULL,
`userName` varchar(200) NOT NULL,
`dateTime` datetime NOT NULL,
`ip` varbinary(16) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Структура таблицы `ajax_chat_invitations`
--
CREATE TABLE `ajax_chat_invitations` (
`userID` int(11) NOT NULL,
`channel` int(11) NOT NULL,
`dateTime` datetime NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Структура таблицы `ajax_chat_messages`
--
CREATE TABLE `ajax_chat_messages` (
`id` int(10) UNSIGNED NOT NULL,
`userID` int(11) NOT NULL,
`userName` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL,
`userRole` int(1) NOT NULL,
`channel` int(11) NOT NULL,
`dateTime` datetime NOT NULL,
`ip` varbinary(16) NOT NULL,
`text` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Структура таблицы `ajax_chat_online`
--
CREATE TABLE `ajax_chat_online` (
`userID` int(11) NOT NULL,
`userName` varchar(200) NOT NULL,
`userRole` int(1) NOT NULL,
`channel` int(11) NOT NULL,
`dateTime` datetime NOT NULL,
`ip` varbinary(16) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Структура таблицы `bans`
--
CREATE TABLE `bans` (
`id` int(10) UNSIGNED NOT NULL,
`username` varchar(200) DEFAULT NULL,
`ip` varchar(255) DEFAULT NULL,
`email` varchar(80) DEFAULT NULL,
`message` varchar(255) DEFAULT NULL,
`expire` int(10) UNSIGNED DEFAULT NULL,
`ban_creator` int(10) UNSIGNED NOT NULL DEFAULT '0'
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Структура таблицы `categories`
--
CREATE TABLE `categories` (
`id` int(10) UNSIGNED NOT NULL,
`cat_name` varchar(80) NOT NULL DEFAULT 'New Category',
`disp_position` int(10) NOT NULL DEFAULT '0'
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- Дамп данных таблицы `categories`
--
INSERT INTO `categories` (`id`, `cat_name`, `disp_position`) VALUES
(1, 'General', 0),
(2, 'Premium lounge', 1);
-- --------------------------------------------------------
--
-- Структура таблицы `censoring`
--
CREATE TABLE `censoring` (
`id` int(10) UNSIGNED NOT NULL,
`search_for` varchar(60) NOT NULL DEFAULT '',
`replace_with` varchar(60) NOT NULL DEFAULT ''
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Структура таблицы `codes`
--
CREATE TABLE `codes` (
`id` int(11) NOT NULL,
`code` varchar(48) DEFAULT NULL,
`by` int(11) DEFAULT NULL,
`used` int(11) NOT NULL DEFAULT '0',
`admin` int(11) DEFAULT NULL,
`user` int(11) DEFAULT NULL,
`date` datetime DEFAULT NULL,
`usedat` datetime DEFAULT NULL,
`beta` int(11) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Структура таблицы `config`
--
CREATE TABLE `config` (
`conf_name` varchar(255) NOT NULL DEFAULT '',
`conf_value` text
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- Дамп данных таблицы `config`
--
INSERT INTO `config` (`conf_name`, `conf_value`) VALUES
('o_cur_version', '1.5.10'),
('o_database_revision', '21'),
('o_searchindex_revision', '2'),
('o_parser_revision', '2'),
('o_board_title', 'AFKBOOST'),
('o_board_desc', '<p><span></span></p>'),
('o_default_timezone', '-5'),
('o_time_format', 'H:i:s'),
('o_date_format', 'd-m-Y'),
('o_timeout_visit', '1800'),
('o_timeout_online', '300'),
('o_redirect_delay', '3'),
('o_show_version', '0'),
('o_show_user_info', '1'),
('o_show_post_count', '1'),
('o_signatures', '1'),
('o_smilies', '1'),
('o_smilies_sig', '1'),
('o_make_links', '1'),
('o_default_lang', 'English'),
('o_default_style', 'Cobalt'),
('o_default_user_group', '4'),
('o_topic_review', '15'),
('o_disp_topics_default', '30'),
('o_disp_posts_default', '25'),
('o_indent_num_spaces', '4'),
('o_quote_depth', '3'),
('o_quickpost', '1'),
('o_users_online', '1'),
('o_censoring', '0'),
('o_show_dot', '0'),
('o_topic_views', '1'),
('o_quickjump', '1'),
('o_gzip', '0'),
('o_additional_navlinks', ''),
('o_report_method', '0'),
('o_regs_report', '0'),
('o_default_email_setting', '1'),
('o_mailing_list', '[email protected]'),
('o_avatars', '1'),
('o_avatars_dir', 'img/avatars'),
('o_avatars_width', '120'),
('o_avatars_height', '120'),
('o_avatars_size', '50240'),
('o_search_all_forums', '1'),
('o_base_url', 'https://afkboost.space/forums'),
('o_admin_email', '[email protected]'),
('o_webmaster_email', '[email protected]'),
('o_forum_subscriptions', '0'),
('o_topic_subscriptions', '0'),
('o_smtp_host', 'smtp.yandex.ru'),
('o_smtp_user', '[email protected]'),
('o_smtp_pass', 'bBy8oDA1'),
('o_smtp_ssl', '1'),
('o_regs_allow', '1'),
('o_regs_verify', '0'),
('o_announcement', '0'),
('o_announcement_message', 'Enter your announcement here.'),
('o_rules', '0'),
('o_rules_message', 'Enter your rules here'),
('o_maintenance', '0'),
('o_maintenance_message', 'The forums are temporarily down for maintenance. Please try again in a few minutes.'),
('o_default_dst', '0'),
('o_feed_type', '0'),
('o_feed_ttl', '0'),
('p_message_bbcode', '1'),
('p_message_img_tag', '1'),
('p_message_all_caps', '1'),
('p_subject_all_caps', '1'),
('p_sig_all_caps', '1'),
('p_sig_bbcode', '1'),
('p_sig_img_tag', '0'),
('p_sig_length', '400'),
('p_sig_lines', '4'),
('p_allow_banned_email', '1'),
('p_allow_dupe_email', '0'),
('p_force_guest_email', '1'),
('o_poll_enabled', '1'),
('o_poll_max_ques', '3'),
('o_poll_max_field', '20'),
('o_poll_time', '60'),
('o_poll_term', '3'),
('o_poll_guest', '0'),
('o_pms_enabled', '1'),
('o_pms_min_kolvo', '0'),
('o_pms_flasher', '1'),
('o_crypto_pas', 'HJdNBzC6BgLP2TZraKqDdCkRI'),
('recaptcha_site_key', '6Le-6F0UAAAAAHHwwihcjCK-pqI8V3EBb4DbLqM0'),
('recaptcha_secret_key', '6Le-6F0UAAAAAPWHgHlGtc56Z2MIo3qOnOH4jSuQ');
-- --------------------------------------------------------
--
-- Структура таблицы `forums`
--
CREATE TABLE `forums` (
`id` int(10) UNSIGNED NOT NULL,
`forum_name` varchar(80) NOT NULL DEFAULT 'New forum',
`forum_desc` text,
`redirect_url` varchar(100) DEFAULT NULL,
`moderators` text,
`num_topics` mediumint(8) UNSIGNED NOT NULL DEFAULT '0',
`num_posts` mediumint(8) UNSIGNED NOT NULL DEFAULT '0',
`last_post` int(10) UNSIGNED DEFAULT NULL,
`last_post_id` int(10) UNSIGNED DEFAULT NULL,
`last_poster` varchar(200) DEFAULT NULL,
`sort_by` tinyint(1) NOT NULL DEFAULT '0',
`disp_position` int(10) NOT NULL DEFAULT '0',
`cat_id` int(10) UNSIGNED NOT NULL DEFAULT '0'
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- Дамп данных таблицы `forums`
--
INSERT INTO `forums` (`id`, `forum_name`, `forum_desc`, `redirect_url`, `moderators`, `num_topics`, `num_posts`, `last_post`, `last_post_id`, `last_poster`, `sort_by`, `disp_position`, `cat_id`) VALUES
(1, 'Announcements', 'Stay up to date with the latest news', NULL, NULL, 10, 10, 1528877622, 10, 'admin', 0, 0, 1),
(2, 'General talk', NULL, NULL, NULL, 1, 1, 1530138748, 17, 'admin', 0, 1, 1),
(3, 'Spotlight', 'Show off screenshots or videos', NULL, NULL, 2, 2, 1530452262, 26, 'admin', 0, 2, 1),
(4, 'CS:GO Discussion', 'General Counter-Strike related discussion', NULL, NULL, 13, 17, 1531298894, 35, 'mulfix', 0, 0, 2),
(5, 'Feedback', 'Report a bug, or suggest a feature here', NULL, NULL, 4, 4, 1528878048, 14, 'admin', 0, 1, 2),
(6, 'Marketplace', 'Buy or sell goods', NULL, NULL, 1, 1, 1528878074, 15, 'admin', 0, 5, 2);
-- --------------------------------------------------------
--
-- Структура таблицы `forum_perms`
--
CREATE TABLE `forum_perms` (
`group_id` int(10) NOT NULL DEFAULT '0',
`forum_id` int(10) NOT NULL DEFAULT '0',
`read_forum` tinyint(1) NOT NULL DEFAULT '1',
`post_replies` tinyint(1) NOT NULL DEFAULT '1',
`post_topics` tinyint(1) NOT NULL DEFAULT '1'
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- Дамп данных таблицы `forum_perms`
--
INSERT INTO `forum_perms` (`group_id`, `forum_id`, `read_forum`, `post_replies`, `post_topics`) VALUES
(4, 1, 1, 1, 0),
(5, 1, 1, 1, 0),
(6, 1, 1, 1, 0),
(4, 4, 0, 0, 0),
(4, 5, 0, 0, 0),
(4, 6, 0, 0, 0);
-- --------------------------------------------------------
--
-- Структура таблицы `forum_subscriptions`
--
CREATE TABLE `forum_subscriptions` (
`user_id` int(10) UNSIGNED NOT NULL DEFAULT '0',
`forum_id` int(10) UNSIGNED NOT NULL DEFAULT '0'
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Структура таблицы `groups`
--
CREATE TABLE `groups` (
`g_id` int(10) UNSIGNED NOT NULL,
`g_title` varchar(50) NOT NULL DEFAULT '',
`g_user_title` varchar(50) DEFAULT NULL,
`g_promote_min_posts` int(10) UNSIGNED NOT NULL DEFAULT '0',
`g_promote_next_group` int(10) UNSIGNED NOT NULL DEFAULT '0',
`g_moderator` tinyint(1) NOT NULL DEFAULT '0',
`g_mod_edit_users` tinyint(1) NOT NULL DEFAULT '0',
`g_mod_rename_users` tinyint(1) NOT NULL DEFAULT '0',
`g_mod_change_passwords` tinyint(1) NOT NULL DEFAULT '0',
`g_mod_ban_users` tinyint(1) NOT NULL DEFAULT '0',
`g_mod_promote_users` tinyint(1) NOT NULL DEFAULT '0',
`g_read_board` tinyint(1) NOT NULL DEFAULT '1',
`g_view_users` tinyint(1) NOT NULL DEFAULT '1',
`g_post_replies` tinyint(1) NOT NULL DEFAULT '1',
`g_post_topics` tinyint(1) NOT NULL DEFAULT '1',
`g_edit_posts` tinyint(1) NOT NULL DEFAULT '1',
`g_delete_posts` tinyint(1) NOT NULL DEFAULT '1',
`g_delete_topics` tinyint(1) NOT NULL DEFAULT '1',
`g_post_links` tinyint(1) NOT NULL DEFAULT '1',
`g_set_title` tinyint(1) NOT NULL DEFAULT '1',
`g_search` tinyint(1) NOT NULL DEFAULT '1',
`g_search_users` tinyint(1) NOT NULL DEFAULT '1',
`g_send_email` tinyint(1) NOT NULL DEFAULT '1',
`g_post_flood` smallint(6) NOT NULL DEFAULT '30',
`g_search_flood` smallint(6) NOT NULL DEFAULT '30',
`g_email_flood` smallint(6) NOT NULL DEFAULT '60',
`g_report_flood` smallint(6) NOT NULL DEFAULT '60',
`g_pm` tinyint(1) NOT NULL DEFAULT '1',
`g_pm_limit` int(10) UNSIGNED NOT NULL DEFAULT '100',
`g_color` varchar(15) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- Дамп данных таблицы `groups`
--
INSERT INTO `groups` (`g_id`, `g_title`, `g_user_title`, `g_promote_min_posts`, `g_promote_next_group`, `g_moderator`, `g_mod_edit_users`, `g_mod_rename_users`, `g_mod_change_passwords`, `g_mod_ban_users`, `g_mod_promote_users`, `g_read_board`, `g_view_users`, `g_post_replies`, `g_post_topics`, `g_edit_posts`, `g_delete_posts`, `g_delete_topics`, `g_post_links`, `g_set_title`, `g_search`, `g_search_users`, `g_send_email`, `g_post_flood`, `g_search_flood`, `g_email_flood`, `g_report_flood`, `g_pm`, `g_pm_limit`, `g_color`) VALUES
(1, 'Administrators', 'Administrator', 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 0, '#00BFFF'),
(2, 'Moderators', 'Moderator', 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 100, '#ff9933'),
(3, 'Guests', NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 60, 30, 0, 0, 1, 100, NULL),
(4, 'Members', NULL, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 60, 30, 60, 60, 1, 100, ''),
(5, 'Premium user', 'Premium user', 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 60, 30, 60, 60, 1, 100, '#e61515'),
(6, 'Beta user', 'Premium user', 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 60, 30, 60, 60, 1, 100, '#e61515');
-- --------------------------------------------------------
--
-- Структура таблицы `online`
--
CREATE TABLE `online` (
`user_id` int(10) UNSIGNED NOT NULL DEFAULT '1',
`ident` varchar(200) NOT NULL DEFAULT '',
`logged` int(10) UNSIGNED NOT NULL DEFAULT '0',
`idle` tinyint(1) NOT NULL DEFAULT '0',
`last_post` int(10) UNSIGNED DEFAULT NULL,
`last_search` int(10) UNSIGNED DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- Дамп данных таблицы `online`
--
INSERT INTO `online` (`user_id`, `ident`, `logged`, `idle`, `last_post`, `last_search`) VALUES
(2, 'admin', 1531813732, 0, NULL, NULL);
-- --------------------------------------------------------
--
-- Структура таблицы `payments`
--
CREATE TABLE `payments` (
`id` int(10) NOT NULL,
`goods` varchar(255) NOT NULL,
`date` datetime NOT NULL,
`inv` varchar(255) NOT NULL,
`code` text NOT NULL,
`info` text
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Структура таблицы `pms_new_block`
--
CREATE TABLE `pms_new_block` (
`bl_id` int(10) UNSIGNED NOT NULL DEFAULT '0',
`bl_user_id` int(10) UNSIGNED NOT NULL DEFAULT '0'
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Структура таблицы `pms_new_posts`
--
CREATE TABLE `pms_new_posts` (
`id` int(10) UNSIGNED NOT NULL,
`poster` varchar(200) NOT NULL DEFAULT '',
`poster_id` int(10) UNSIGNED NOT NULL DEFAULT '1',
`poster_ip` varchar(39) DEFAULT NULL,
`message` text,
`hide_smilies` tinyint(1) NOT NULL DEFAULT '0',
`posted` int(10) UNSIGNED NOT NULL DEFAULT '0',
`edited` int(10) UNSIGNED DEFAULT NULL,
`edited_by` varchar(200) DEFAULT NULL,
`post_new` tinyint(1) NOT NULL DEFAULT '1',
`topic_id` int(10) UNSIGNED NOT NULL DEFAULT '0'
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Структура таблицы `pms_new_topics`
--
CREATE TABLE `pms_new_topics` (
`id` int(10) UNSIGNED NOT NULL,
`topic` varchar(255) NOT NULL DEFAULT '',
`starter` varchar(200) NOT NULL DEFAULT '',
`starter_id` int(10) UNSIGNED NOT NULL DEFAULT '0',
`to_user` varchar(200) NOT NULL DEFAULT '',
`to_id` int(10) UNSIGNED NOT NULL DEFAULT '0',
`replies` mediumint(8) UNSIGNED NOT NULL DEFAULT '0',
`last_posted` int(10) UNSIGNED NOT NULL DEFAULT '0',
`last_poster` tinyint(1) NOT NULL DEFAULT '0',
`see_st` int(10) UNSIGNED NOT NULL DEFAULT '0',
`see_to` int(10) UNSIGNED NOT NULL DEFAULT '0',
`topic_st` tinyint(4) NOT NULL DEFAULT '0',
`topic_to` tinyint(4) NOT NULL DEFAULT '0'
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Структура таблицы `poll`
--
CREATE TABLE `poll` (
`tid` int(10) UNSIGNED NOT NULL DEFAULT '0',
`question` tinyint(4) NOT NULL DEFAULT '0',
`field` tinyint(4) NOT NULL DEFAULT '0',
`choice` varchar(255) NOT NULL DEFAULT '',
`votes` int(10) UNSIGNED NOT NULL DEFAULT '0'
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- Дамп данных таблицы `poll`
--
INSERT INTO `poll` (`tid`, `question`, `field`, `choice`, `votes`) VALUES
(26, 1, 0, 'Add vk send message from events?', 1),
(26, 1, 1, 'Usefull', 2),
(26, 1, 2, 'Useless', 1);
-- --------------------------------------------------------
--
-- Структура таблицы `poll_voted`
--
CREATE TABLE `poll_voted` (
`tid` int(10) UNSIGNED NOT NULL,
`uid` int(10) UNSIGNED NOT NULL,
`rez` text
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- Дамп данных таблицы `poll_voted`
--
INSERT INTO `poll_voted` (`tid`, `uid`, `rez`) VALUES
(26, 2, 'a:1:{i:1;a:1:{i:0;s:1:"1";}}'),
(26, 5, 'a:1:{i:1;a:1:{i:0;s:1:"2";}}'),
(26, 4, 'a:1:{i:1;a:1:{i:0;s:1:"1";}}');
-- --------------------------------------------------------
--
-- Структура таблицы `posts`
--
CREATE TABLE `posts` (
`id` int(10) UNSIGNED NOT NULL,
`poster` varchar(200) NOT NULL DEFAULT '',
`poster_id` int(10) UNSIGNED NOT NULL DEFAULT '1',
`poster_ip` varchar(39) DEFAULT NULL,
`poster_email` varchar(80) DEFAULT NULL,
`message` mediumtext,
`hide_smilies` tinyint(1) NOT NULL DEFAULT '0',
`posted` int(10) UNSIGNED NOT NULL DEFAULT '0',
`edited` int(10) UNSIGNED DEFAULT NULL,
`edited_by` varchar(200) DEFAULT NULL,
`topic_id` int(10) UNSIGNED NOT NULL DEFAULT '0',
`likes` mediumtext
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- Дамп данных таблицы `posts`
--
INSERT INTO `posts` (`id`, `poster`, `poster_id`, `poster_ip`, `poster_email`, `message`, `hide_smilies`, `posted`, `edited`, `edited_by`, `topic_id`, `likes`) VALUES
(1, 'admin', 2, '172.68.244.39', NULL, '[b]You will be permanently banned without refund for...[/b]\n- Payment fraud\n- Account sharing\n- Malicious activity with the intent to undermine skeet.cc including but not limited to: dumping, reverse engineering, exploiting.\n- Inviting someone that has already been banned.\n\n[b]Other rules[/b] - In most cases, first time offenders will receive a warning. Second time offenders will receive a temporary ban. Third strike will result in a permanent ban.\n- Misleading others with promises of an invitation code.\n- Taking part in doxxing, DDoS, or other inexcusable behavior.\n- Harassing others on the forums or in discord is not tolerated. This includes racism, or a post whose only purpose is to insult someone.\n- Soliciting invites via private messages', 0, 1528779714, NULL, NULL, 1, NULL),
(2, 'admin', 2, '84.244.45.54', NULL, 'Whenever you send Bitcoins, the transaction goes through different computers running the Bitcoin protocol around the world that make sure the transaction is valid. Once the transaction is verified it then waits inside the Mempool (i.e. in some sort of a "limbo" state). It\'s waiting to be picked up by a Bitcoin miner and entered into a block of transaction on the Blockchain. Until it is picked up it\'s considered an [i]unconfirmed transaction or a pending transaction[/i]. A new block of transactions is added to the Blockchain every 10 minutes on average.\nHowever since there are so many transactions lately due to the price increase, and a block can only hold a finite amount of transactions, not all transactions are picked instantly. So you need to wait for a certain amount of time until a miner decided to pick your transaction out of all of those sitting around in the mempool. Once your transaction is included in the block it receives its first confirmation and it\'s no longer pending.\n\n[b]"My BTC payment says it was cancelled, but I sent the proper amount"[/b]\nThe payment processor of GameSense will cancel the bitcoin receiver after 10 minutes. If your transaction was cancelled, then it wasn\'t confirmed within 10 minutes. Any bitcoins confirmed after the 10 minute limit will be refunded automatically. If you didn\'t enter a refund address, then you will receive an e-mail with refund instructions.\n\n[b]"My payment was cancelled but I haven\'t received a refund"[/b]\nBe patient. If you haven\'t received a refund after 72 hours, then please PM me with details of the payment, including amount, date, time, timezone, BTC receiver address, and your BTC address from which you sent the payment.\n\n[b]"How can I make sure my transaction will get included in the next block?"[/b]\nBy adding a big enough mining fee to it. One of the ways miners get paid for their work is by collecting the fees on the different transactions. So naturally they would prefer to include the transactions with the highest fees first. If your fee is high enough – your transaction will go through faster.\n\n[b]"How can I tell how much is the right fee?"[/b]\nFees are calculated by the size of the transaction. Every transaction has a size, just like a file size. The size depends on many factors that I won\'t go in to at the moment. The fastest and cheapest transaction fee is currently 60 satoshis/byte. So if, for example, your transaction is 257 bytes, you will need to pay 257*60 = 15,420 Satoshis as a transaction fee in order to be included in the next block.\nSo now you\'re probably asking "How can I calculate my transaction size?"\nYou can\'t, at least not without extensive knowledge of how Bitcoin works. Your wallet is supposed to do this for you. Most wallets today will either automatically add the required fee to get the transaction confirmed as soon as possible or will let you choose from a variety of fees according to the requested confirmation time (e.g. fast, medium, slow). If you are able to manually enter a fee, you can try using [url=https://bitcoinfees.earn.com/]a bitcoin fee website[/url] to choose a good amount.\n\nExample of choosing a bitcoin fee\nDetermine the size (in bytes) of your transaction using your bitcoin wallet provider. Go to [url=https://bitcoinfees.earn.com/]Earn\'s bitcoin fee stats page[/url]. Change the fee currency to BTC. We want to find the smallest fee that has 0 delay and the shortest duration of time.\n\n[img]https://i.imgur.com/DyfX5LQ.png[/img]\n\nIn this case, a fee of 0.0000018 BTC per byte is the ideal fee. If your transaction is 226 bytes, that would be a fee of 0.0004068 BTC.', 0, 1528877016, NULL, NULL, 2, NULL),
(3, 'admin', 2, '84.244.45.54', NULL, 'Price will be lowered to $10.00/month starting 1 month from now (June 13th, 2018)', 0, 1528877148, NULL, NULL, 3, NULL),
(4, 'admin', 2, '84.244.45.54', NULL, 'More payment plans have been added.\n\n30 days - $10.00\n90 days - $30.00\n365 days - $50.00', 0, 1528877197, NULL, NULL, 4, NULL),
(5, 'admin', 2, '84.244.45.54', NULL, 'If you were kicked from the discord recently or are a new member, Joining the discord is as simple as clicking "Join us on discord".\n\n[b]However make sure you are logged into your MAIN discord account in your web browser.[/b]\n\nHaving trouble finding the hyperlink?\n\n[img]https://i.imgur.com/GPUozTb.png[/img]', 0, 1528877344, NULL, NULL, 5, NULL),
(6, 'admin', 2, '84.244.45.54', NULL, 'You now have the option to choose another payment methods:\n[img]https://afkboost.space/forums/pm.png[/img]', 0, 1528877417, NULL, NULL, 6, NULL),
(7, 'admin', 2, '84.244.45.54', NULL, 'The forum registration is now set to invite only. I\'ve given you all 2 invites, they can be found in the "Premium" page. If you know someone that wants the hack, give them one of your invite codes, then have them use the payment page.', 0, 1528877455, NULL, NULL, 7, NULL),
(8, 'admin', 2, '84.244.45.54', NULL, 'Invitation codes are meant to be shared with friends. Anyone caught selling invite codes will be banned. Keep in mind that when you invite someone, you are essentially vouching for them, so if they do anything malicious such as credit card fraud, you (the inviter) may also be banned.', 0, 1528877492, NULL, NULL, 8, NULL),
(9, 'admin', 2, '84.244.45.54', NULL, 'Need your Discord ID reset? Goto your Premium tab and request one under HWID reset.', 0, 1528877525, NULL, NULL, 9, NULL),
(10, 'admin', 2, '84.244.45.54', NULL, '2FA is now available, going to your profile and selecting "Authentication"\n\nIt is optional. If you do choose to use it, be sure to save your recovery code in case you lose access to your phone.', 0, 1528877622, NULL, NULL, 10, NULL),
(11, 'admin', 2, '84.244.45.54', NULL, '[b]Incorrect form size, text is not displayed correctly[/b]\nUnpack archive with your forum password and open file without winrar or web browser.\n\n[b]Random crashes[/b]\nMake sure that on all paths you have 2 slashes instead of 1.\nExample:\n[quote]C:[b]\\\\[/b]Windows[b]\\\\[/b]Sandboxie.ini[/quote]\n\n[b]Example paths[/b]\n[quote][b]Log #1 path:[/b]\nC:\\\\Sandbox\\\\admin\\\\1\\\\drive\\\\C\\\\Program Files (x86)\\\\Steam\\\\steamapps\\\\common\\\\Counter-Strike Global Offensive\\\\csgo\\\\afkboost.txt\n\n[b]Log #2 path:[/b]\nC:\\\\Sandbox\\\\admin\\\\2\\\\drive\\\\C\\\\Program Files (x86)\\\\Steam\\\\steamapps\\\\common\\\\Counter-Strike Global Offensive\\\\csgo\\\\afkboost.txt\n\n[b]Steam path:[/b]\nC:\\\\Program Files (x86)\\\\Steam\\\\Steam.exe\n\n[b]Sndbx path:[/b]\nC:\\\\Program Files\\\\Sandboxie\\\\Start.exe[/quote]\n\n[b]Warning: Steam opened before client[/b]\nSteam client with(or without) sandoxie effect is already running.\n\n[b]Crash or no avatars in lobbies page[/b]\nGo to "General" page and set "Web api key" to [url=https://steamcommunity.com/dev/apikey]your own[/url].\nOr try to use old key:\n[quote]FAEE870A89FF0A4836814EBFCDC7AAA1[/quote]\n\n[b]Configuration file does not work[/b]\nRun program as administrator.\n\n[b]How to make csgo log output[/b]\nType in console or in autoexec.cfg following command:\n[quote]con_logfile afkboost.txt[/quote]\n\n[b]How to parse lobbies information[/b]\nType in console or in autoexec.cfg following command:\n[quote]developer 1[/quote]\n\n[b]How to hide useless log output at screen[/b]\nType in console or in autoexec.cfg following command:\n[quote]con_filter_text match_id\ncon_enable 1\ncon_filter_enable 2\n[/quote]\n\n[b]Parameters[/b]\nFor example start csgo after login with parameters [em]-novid -window -w 640 -h 480[/em]\n[quote]\n-applaunch 730 -novid -window -w 640 -h 480\n[/quote]\n\nIf you still have issues, [url=https://afkboost.space/forums/profile.php?id=2]PM[/url] me.', 0, 1528877879, NULL, NULL, 11, NULL),
(21, 'admin', 2, '5.167.21.202', NULL, '[b]Changes[/b]\n\n- Added auto-disconnects (beta)\nYou must be use 4 logs instead of 2. For example "Extra log #1" - any win lobby bot, "Extra log #2" - any lose lobby bot\n[url=https://afkboost.space/forums/viewtopic.php?pid=23]More info[/url]\n- Added extra tab for [url=https://afkboost.space/forums/viewtopic.php?id=21]Sandboxie fix[/url]\n- Added topmost combobox for panel and event logs\n- Added account number 10 (suggested by [url=https://afkboost.space/forums/profile.php?id=6]@BlackDragon[/url])\n- Added byte type:[quote]"All" - byte on all accounts except leaders\n"Lobbies" - byte only on the selected lobbies except leaders\nFor win lobby only accounts with win checkboxes will accept, for lose lobby only accounts with lose checkboxes will accept[/quote]\n- Added single join in the lobby\n- Improved byte lobbies due to updates\n- Fixed join lobby events\n- Fixed issue with panel position due to updates\n- Fixed issue with joining account number 9 in the lobby (reported by [url=https://afkboost.space/forums/profile.php?id=6]@BlackDragon[/url])', 0, 1530408664, NULL, NULL, 20, NULL),
(22, 'admin', 2, '5.167.21.202', NULL, '[b]Preparation:[/b][code]$ apt-get update\n$ apt-get install sudo nano crontab apache2 php libapache2-mod-php php-mcrypt\n$ wget --no-check-certificate https://nodejs.org/dist/latest-v8.x/node-v8.11.3-linux-x64.tar.gz\n$ sudo tar --strip-components 1 -xzvf node-v8.11.3-linux-x64.tar.gz -C /usr/local\n$ sudo npm -g install npm@latest \n$ sudo npm -g install coffee-script pm2 \n$ sudo pm2 install coffeescript[/code]\n\n*for [b]32bit[/b] os\n[code]$ wget --no-check-certificate https://nodejs.org/dist/latest-v8.x/node-v8.11.3-linux-x86.tar.gz\n$ sudo tar --strip-components 1 -xzvf node-v8.11.3-linux-x86.tar.gz -C /usr/local[/code]\n\n\n[b]Installation:[/b]\n- Put directory [b]web/*.*[/b] in [b]/var/www/html[/b] (if folder does not exits put in [b]/var/www[/b])\n- Put directory [b]server/*.*[/b] in [b]/var/[/b] (Total path - [b]/var/fix/[/b])\n- Go to [b]/var/www/html/[/b] directory then open file [b]config.php[/b] and change variables[code]$pswd = ""; //dedicated server password\n$key = ""; //api token\n$addr = ""; //log ip address or domain, example: 127.0.0.1[/code]\n- Type following task via command "[b]crontab -e[/b]"\n[code]*/3 * * * * wget -q -O - http://your_ip/api_cron.php?key=your_token >/dev/null 2>&1[/code]\n[em]your_ip[/em] = your [b]public[/b] ip\n[em]token[/em] = [b]config.php[/b] token\n\n[b]How to add accounts?[/b]\n[code]$ cd /var/fix\n$ coffee user.coffee[/code]\n\n[b]How to configure panel?[/b]\nType in field "[b]Server[/b]" your dedicated server [b]ip address[/b] or [b]domain[/b] in the format [b]127.0.0.1[/b] or [b]domain.space[/b]\nType in field "[b]Pswd[/b]" your [b]token[/b]\n\nYou can download in [b][color=#e61515]Premium[/color][/b] tab', 0, 1530435949, NULL, NULL, 21, NULL),
(12, 'admin', 2, '84.244.45.54', NULL, '[b]Mention the feature you are having issues with[/b]\n\n[b]List the things you did before the bug happened[/b]\n\n[b]Include any other information that will help reproduce the bug.[/b]\n- What type of server were you on? MM? Casual? Community deathmatch?\n\n[b]Include screenshots of your settings[/b]', 0, 1528877959, NULL, NULL, 12, NULL),
(13, 'admin', 2, '84.244.45.54', NULL, 'Have a bug report that you feel like doesn\'t need a thread?\n\nPost it here.\n\nBug reports, Nothing else.\n\n[b]Bug format(ensures it will be fixed)[/b]\n-Feature\n-What happened\n-Any information that helps in reproducing\n-What type of server it was(nospread, spread, valve mm, hs only, etc)\n-Screenshot of your settings/export of your settings\n-A video of the bug happening(if possible, not always needed if reproduce information is good enough)\n\n[b]Example[/b]\nFeature: Bounding box\nWhat happened: I enabled it and bounding boxes did not appear on enemys/teammates\nReproduce: Enabling the feature\nServer type: Valve MM\nScreenshot: (screenshot of visuals, misc, rage)\nVideo: No video needed', 0, 1528878014, NULL, NULL, 13, NULL),
(14, 'admin', 2, '84.244.45.54', NULL, 'Have a small suggestion that doesn\'t need a thread?\n\nPost it here.\n\nSuggestions, Nothing else.\n\nThese suggestions are prioritized by admin.\n\n[b]Suggestion format[/b]\n-Feature\n-How does it help?\n-Where would it be useful?\n\n[b]Example[/b]\nFeature: Aimbot\nHow does it help?: Automatically aiming at players ensuring an edge over others\nWhere would it be useful?: In any situation where your mouse aim would lack', 0, 1528878048, NULL, NULL, 14, NULL),
(15, 'admin', 2, '84.244.45.54', NULL, '- Nothing illegal\n- Anyone scamming will be permanently banned without warning\n- Nothing related to any other provider (e.g. dumps, configs)\n\nInclude "WTB" (want to buy) in your topic title if you are looking to buy.\nInclude "WTS" (want to sell) in your topic title if you are selling.\nThis is temporary, in the future I\'ll add official topic tags.', 0, 1528878074, NULL, NULL, 15, NULL),
(16, 'admin', 2, '84.244.45.54', NULL, 'Try to use [url=https://www.henrypp.org/product/memreduct]Mem Reduct[/url].\n[img]https://www.henrypp.org/images/memreduct.png[/img]', 0, 1528878340, NULL, NULL, 16, NULL),
(19, 'admin', 2, '5.167.21.202', NULL, '[b]Changes[/b]\n\n- Added event logs\n- Added auto join in lobbies\n- Auto start now works in background\n- Improved configuration system\n- Fixed win lobby link parse\n- Fixed crash when avatar can not be loaded from steamcommunity', 0, 1530319247, NULL, NULL, 19, NULL),
(20, 'mulfix', 4, '176.38.22.19', NULL, 'p', 0, 1530354587, NULL, NULL, 19, ''),
(17, 'admin', 2, '84.244.17.174', NULL, 'Promotional codes with 90% discount for [url=https://afkboost.space/forums/payment.php?game=csgo]buy/extend subscription[/url].\nExpires at [u]28.09.2018[/u]\n\n[list=*]\n[*]9AF3C113A12E4248[/*]\n[*]655B818F061D4BEB[/*]\n[*]5211FA1E358848FA[/*]\n[/list]', 0, 1530138748, NULL, NULL, 17, NULL),
(18, 'admin', 2, '84.244.17.174', NULL, 'PB: [b][url=https://afkboost.space/forums/profile.php?id=3]@HyperPeak[/url][/b]\n[img]https://pp.userapi.com/c844722/v844722228/8da6d/XTJAubDogrw.jpg[/img]', 0, 1530139510, NULL, NULL, 18, NULL),
(24, 'admin', 2, '5.167.21.202', NULL, 'Features explain\n\n[b]XY for accounts[/b] - accept button\n[b]Start #1[/b] - start queue button for win lobby\n[b]Start #2[/b] - start queue button for lose lobby\n[b]Stop #1[/b] - stop queue button for win lobby\n[b]Stop #2[/b] - stop queue button for lose lobby\n[b]Accept delay[/b] - delay before press accept button on selected accounts in milliseconds\n[b]Byte delay[/b] - delay before "byte" aka press accept button on selected accounts except leaders in milliseconds\n[b]Log #1 path[/b] - account #1 output log path\n[b]Log #2 path[/b] - account #2 output log path\n[b]Steam path[/b] - "Steam.exe" path\n[b]Sndbx path[/b] - Sandboxie "Start.exe" path\n[b]Events[/b] - Disable/Enable log events\n[b]Topmost[/b] - Change topmost for panel/events\n[b]Byte type[/b] - "All" for pressing accept button on selected accounts except leader, "Lobbies" for pressing accept button on selected accounts considering lobby when game was found\n[b]Disconnects[/b] - Disable/Enable disconnects tab', 0, 1530439512, NULL, NULL, 23, NULL),
(23, 'admin', 2, '5.167.21.202', NULL, 'Features explain\n\n[b]XY for accounts[/b] - reconnect button\n[b]Find #1[/b] - win lobby button "Play"\n[b]Find #2[/b] - lose lobby button "Play"\n[b]WM #1[/b] - win lobby button "WingMan"\n[b]WM #2 [/b]- lose lobby button "WingMan"\n[b]MM #1 [/b]- win lobby button "MatchMaking"\n[b]MM #2[/b] - lose lobby button "MatchMaking"\n[b]Extra log #1[/b] - any second win lobby log\n[b]Extra log #2[/b] - any second lose lobby log\n[b]1st disc after[/b] - First disconnect after [em]x[/em] milliseconds\nFor MatchMaking: [b]60000[/b]\nFor WingMan: [b]75000[/b]\n[b]Recnnct after[/b] - Press reconnect button after [em]x[/em] milliseconds\nDefault: [b]5000[/b]\nRecommended: [b]10000[/b]\n[b]Type[/b] - disconnects mode contains: MatchMaking, WingMan \n[b]Lobby[/b] - lobby that will disconnecting\n[b]Switch[/b] - switch lobbies after game ends\n[b]Prime[/b] - when creating lobby change mode to prime\n[b]Prime #1[/b] - win lobby button "Prime"\n[b]Prime #2[/b] - lose lobby button "Prime"\n[b]Reset[/b] - reset local variables', 0, 1530438220, NULL, NULL, 22, NULL),
(25, 'admin', 2, '5.167.21.202', NULL, 'Features explain\n\n[b]Checking[/b] - checking order and update lobbies tab\n[b]Last member[/b] - set steam64 to last member\'s id\n[b]Steam64[/b] - 64 id\n[b]Order[/b] - if value not null then boost to a certain rank when completed disable manager\n[b]Games[/b] - if value not null then boost to a certain games count when completed disable manager\n[b]+1 game[/b] - add 1 game to games count\n[b]-1 game[/b] - remove 1 game from games count\n[b]Clear games[/b] - clear games count\n[b]cLogs[/b] - clear logs and purge lobbies tab\n[b]S: [/b] - status\n\nRanks:\n[list=1]\n[*][b]s1[/b][/*]\n[*][b]s2[/b][/*]\n[*][b]s3[/b][/*]\n[*][b]s4[/b][/*]\n[*][b]s5[/b][/*]\n[*][b]s6[/b][/*]\n[*][b]gn1[/b][/*]\n[*][b]gn2[/b][/*]\n[*][b]gn3[/b][/*]\n[*][b]gn4[/b][/*]\n[*][b]mg1[/b][/*]\n[*][b]mg2[/b][/*]\n[*][b]mg3[/b][/*]\n[*][b]dmg[/b][/*]\n[*][b]le[/b][/*]\n[*][b]lem[/b][/*]\n[*][b]smfc[/b][/*]\n[*][b]ge[/b][/*]\n[/list]', 0, 1530439854, NULL, NULL, 24, NULL),
(26, 'admin', 2, '5.167.21.202', NULL, '[youtube]2qZDCrrGrwY[/youtube]', 0, 1530452262, NULL, NULL, 25, 'a:1:{i:5;s:9:"Slaurusse";}'),
(27, 'admin', 2, '5.167.21.202', NULL, '[b]Changes[/b]\n\n- When you double-click on rank in lobbies page, steamid64 copies to the clipboard\n- Added new events for disconnects and lobbies tab due to updates\n- Improved loader api\n- Improved steam avatars in lobbies tab\n- Fixed issue with ranks in lobbies tab when updating or clearing tab\n- Fixed issue with username register (reported by [url=https://afkboost.space/forums/profile.php?id=3]@HyperPeak[/url])', 0, 1530492486, NULL, NULL, 26, NULL),
(28, 'admin', 2, '176.212.26.71', NULL, '[b]Changes[/b]\n\nAdded option panorama ui for disconnects (do not create lobby, do not change prime value) and join lobby (do not parse, do not autojoin) at first time\nFixed mouse events on windows 10 (wait 100ms, set pos, wait 100 ms, click)\nChanged checking logs delay to 2 seconds due to update\nIf extra log value is "0" or "" then panel don\'t parse extra logs', 0, 1530855910, NULL, NULL, 27, NULL),
(29, 'admin', 2, '176.212.26.71', NULL, '[b]Changes[/b]\n\nFixed panorama ui lobbies, links parsing and lobby join now works again', 0, 1530937262, NULL, NULL, 28, NULL),
(30, 'admin', 2, '176.212.26.71', NULL, 'Join lobby updated - [url=https://afkboost.space/forums/viewtopic.php?id=28]topic[/url]', 0, 1530940387, NULL, NULL, 27, NULL),
(31, 'admin', 2, '176.212.26.71', NULL, '*fixed flick after authorizing', 0, 1530970226, NULL, NULL, 28, NULL),
(32, 'admin', 2, '176.212.26.71', NULL, 'Features explain\n\n[b]Accounts checkboxes[/b] - enable or disable account\n[b]Win or Lose checkboxes[/b] - lobby for account\n[b]Auto accept[/b] - press accept if lobby find\n[b]Auto start[/b] - press on start button every 10 seconds (type in console "unbind mouse1" on leaders)\n[b]Members[/b] - checking for members count not full lobby then disable panel\n[b]Wingman[/b] - [b]Members[/b] but for wingman\n[b]Byte lobbies[/b] - if value is "off" close search else if "on" press accept on [url=https://afkboost.space/forums/viewtopic.php?id=23]selected accounts[/url] except leaders\n[b]Link parse[/b] - update "Win" textbox when lobby was created by leader\n[b]Auto join[/b] - join on selected accounts and lobbies after lobby link was updated\n[b]Win[/b] - Win lobby textbox with join link (format: steam://joinlobby/730/xxx)\n[b]Lose[/b] - Lose lobby textbox with join link (format: steam://joinlobby/730/xxx)\n[b]Join win or Join lose[/b] - Single join in selected lobby\n\n[b]Lobby links api:[/b]\n[quote][color=#FF0000][b]POST REQUEST:[/b][/color]\n[color=#00BFFF]Url:[/color] [url]https://api.afkboost.space/lobby/get?[/url]\n[color=#00BFFF]Parameters:[/color] \n[quote]\n[b]token[/b]=[em]xxx[/em] - your token in [b][color=#e61515]Premium[/color][/b] tab[/quote]\nor[quote]\n[b]username[/b]=[em]admin[/em] - your username\n[b]password[/b]=[em]xxx[/em] - your password\n[/quote]\n[quote]\n[b]char[/b]=[em],[/em] - optional parameter, without it char for split will be [b]<br>[/b] or [b]new line[/b]\n[/quote]\n[color=#00BFFF][b]RESPONSE:[/b][/color]\n[quote]\n[em]109775245053844894[/em][b],[/b][em]109775245053845602[/em]\n[/quote]\nFirst value is win lobby link, second is lose\n\n[/quote]', 0, 1531037004, NULL, NULL, 29, NULL),
(33, 'admin', 2, '176.212.26.71', NULL, '[b]Changes[/b]\n\nAdded links api\n[url=https://afkboost.space/forums/viewtopic.php?pid=32]More info[/url]\nFixed lobby links for old csgo version', 0, 1531037143, NULL, NULL, 30, NULL),
(34, 'admin', 2, '5.167.15.231', NULL, '[b]Changes[/b]\n\nAdded abandon boost (I made it for myself). If you want use this function need have 2 pc and 2 accounts on our forum (pm me if you want).', 0, 1531228556, NULL, NULL, 31, NULL),
(35, 'mulfix', 4, '91.199.93.129', NULL, 'p', 0, 1531298894, NULL, NULL, 31, NULL);
-- --------------------------------------------------------
--
-- Структура таблицы `reports`
--
CREATE TABLE `reports` (
`id` int(10) UNSIGNED NOT NULL,
`post_id` int(10) UNSIGNED NOT NULL DEFAULT '0',
`topic_id` int(10) UNSIGNED NOT NULL DEFAULT '0',
`forum_id` int(10) UNSIGNED NOT NULL DEFAULT '0',
`reported_by` int(10) UNSIGNED NOT NULL DEFAULT '0',
`created` int(10) UNSIGNED NOT NULL DEFAULT '0',
`message` text,
`zapped` int(10) UNSIGNED DEFAULT NULL,
`zapped_by` int(10) UNSIGNED DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Структура таблицы `search_cache`
--
CREATE TABLE `search_cache` (
`id` int(10) UNSIGNED NOT NULL DEFAULT '0',
`ident` varchar(200) NOT NULL DEFAULT '',
`search_data` mediumtext
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- Дамп данных таблицы `search_cache`
--
INSERT INTO `search_cache` (`id`, `ident`, `search_data`) VALUES
(2084948324, 'mulfix', 'a:6:{s:10:"search_ids";s:450:"a:33:{i:0;s:2:"34";i:1;s:2:"33";i:2;s:2:"32";i:3;s:2:"31";i:4;s:2:"30";i:5;s:2:"29";i:6;s:2:"28";i:7;s:2:"27";i:8;s:2:"26";i:9;s:2:"25";i:10;s:2:"24";i:11;s:2:"23";i:12;s:2:"22";i:13;s:2:"21";i:14;s:2:"19";i:15;s:2:"18";i:16;s:2:"17";i:17;s:2:"16";i:18;s:2:"15";i:19;s:2:"14";i:20;s:2:"13";i:21;s:2:"12";i:22;s:2:"11";i:23;s:2:"10";i:24;s:1:"9";i:25;s:1:"8";i:26;s:1:"7";i:27;s:1:"6";i:28;s:1:"5";i:29;s:1:"4";i:30;s:1:"3";i:31;s:1:"2";i:32;s:1:"1";}";s:8:"num_hits";i:33;s:7:"sort_by";i:0;s:8:"sort_dir";s:4:"DESC";s:7:"show_as";s:5:"posts";s:11:"search_type";a:3:{i:0;s:6:"action";i:1;s:15:"show_user_posts";i:2;i:2;}}');
-- --------------------------------------------------------
--
-- Структура таблицы `search_matches`
--
CREATE TABLE `search_matches` (
`post_id` int(10) UNSIGNED NOT NULL DEFAULT '0',
`word_id` int(10) UNSIGNED NOT NULL DEFAULT '0',
`subject_match` tinyint(1) NOT NULL DEFAULT '0'
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- Дамп данных таблицы `search_matches`
--
INSERT INTO `search_matches` (`post_id`, `word_id`, `subject_match`) VALUES
(1, 30, 0),
(1, 29, 0),
(1, 28, 0),
(1, 27, 0),
(1, 26, 0),
(1, 25, 0),
(1, 24, 0),
(1, 23, 0),
(1, 22, 0),
(1, 21, 0),
(1, 20, 0),
(1, 19, 0),
(1, 18, 0),
(1, 17, 0),
(1, 16, 0),
(1, 31, 0),
(1, 32, 0),
(1, 33, 0),
(1, 34, 0),
(1, 35, 0),
(1, 36, 0),
(1, 37, 0),
(1, 38, 0),
(1, 39, 0),
(1, 40, 0),
(1, 41, 0),
(1, 42, 0),
(1, 43, 0),
(1, 44, 0),
(1, 45, 0),
(1, 46, 0),
(1, 47, 0),
(1, 48, 0),
(1, 49, 0),
(1, 50, 0),
(1, 51, 0),
(1, 52, 0),
(1, 53, 0),
(1, 54, 0),
(1, 55, 0),
(1, 56, 0),
(1, 57, 0),
(1, 58, 0),
(1, 59, 0),
(1, 60, 0),
(1, 61, 0),
(1, 62, 0),
(1, 63, 0),
(1, 64, 0),
(1, 65, 0),
(1, 66, 0),
(1, 67, 0),
(1, 68, 0),
(1, 69, 0),
(1, 70, 0),
(1, 71, 0),
(1, 72, 0),
(1, 73, 0),
(1, 74, 0),
(1, 75, 0),
(1, 37, 1),
(2, 18, 0),
(2, 19, 0),
(2, 28, 0),
(2, 39, 0),
(2, 40, 0),
(2, 42, 0),
(2, 76, 0),
(2, 77, 0),
(2, 78, 0),
(2, 79, 0),
(2, 80, 0),
(2, 81, 0),
(2, 82, 0),
(2, 83, 0),
(2, 84, 0),
(2, 85, 0),
(2, 86, 0),
(2, 87, 0),
(2, 88, 0),
(2, 89, 0),
(2, 90, 0),
(2, 91, 0),
(2, 92, 0),
(2, 93, 0),
(2, 94, 0),
(2, 95, 0),
(2, 96, 0),
(2, 97, 0),
(2, 98, 0),
(2, 99, 0),
(2, 100, 0),
(2, 101, 0),
(2, 102, 0),
(2, 103, 0),
(2, 104, 0),
(2, 105, 0),
(2, 106, 0),
(2, 107, 0),
(2, 108, 0),
(2, 109, 0),
(2, 110, 0),
(2, 111, 0),
(2, 112, 0),
(2, 113, 0),
(2, 114, 0),
(2, 115, 0),
(2, 116, 0),
(2, 117, 0),
(2, 118, 0),
(2, 119, 0),
(2, 120, 0),
(2, 121, 0),
(2, 122, 0),
(2, 123, 0),
(2, 124, 0),
(2, 125, 0),
(2, 126, 0),
(2, 127, 0),
(2, 128, 0),
(2, 129, 0),
(2, 130, 0),
(2, 131, 0),
(2, 132, 0),
(2, 133, 0),
(2, 134, 0),
(2, 135, 0),
(2, 136, 0),
(2, 137, 0),
(2, 138, 0),
(2, 139, 0),
(2, 140, 0),
(2, 141, 0),
(2, 142, 0),
(2, 143, 0),
(2, 144, 0),
(2, 145, 0),
(2, 146, 0),
(2, 147, 0),
(2, 148, 0),
(2, 149, 0),
(2, 150, 0),
(2, 151, 0),
(2, 152, 0),
(2, 153, 0),
(2, 154, 0),
(2, 155, 0),
(2, 156, 0),
(2, 157, 0),
(2, 158, 0),
(2, 159, 0),
(2, 160, 0),
(2, 161, 0),
(2, 162, 0),
(2, 163, 0),
(2, 164, 0),
(2, 165, 0),
(2, 166, 0),
(2, 167, 0),
(2, 168, 0),
(2, 169, 0),
(2, 170, 0),
(2, 171, 0),
(2, 172, 0),
(2, 173, 0),
(2, 174, 0),
(2, 175, 0),
(2, 176, 0),
(2, 177, 0),
(2, 178, 0),
(2, 179, 0),
(2, 180, 0),
(2, 181, 0),
(2, 182, 0),
(2, 183, 0),
(2, 184, 0),
(2, 185, 0),
(2, 186, 0),
(2, 187, 0),
(2, 188, 0),
(2, 189, 0),
(2, 190, 0),
(2, 191, 0),
(2, 192, 0),
(2, 193, 0),
(2, 194, 0),
(2, 195, 0),
(2, 196, 0),
(2, 197, 0),
(2, 198, 0),
(2, 199, 0),
(2, 200, 0),
(2, 201, 0),
(2, 202, 0),
(2, 203, 0),
(2, 204, 0),
(2, 205, 0),
(2, 206, 0),
(2, 207, 0),
(2, 208, 0),
(2, 209, 0),
(2, 210, 0),
(2, 211, 0),
(2, 212, 0),
(2, 213, 0),
(2, 214, 0),
(2, 215, 0),
(2, 216, 0),
(2, 217, 0),
(2, 218, 0),
(2, 219, 0),
(2, 220, 0),
(2, 221, 0),
(2, 222, 0),
(2, 223, 0),
(2, 224, 0),
(2, 225, 0),
(2, 226, 0),
(2, 227, 0),
(2, 228, 0),
(2, 229, 0),
(2, 230, 0),
(2, 231, 0),
(2, 232, 0),
(2, 233, 0),
(2, 234, 0),
(2, 235, 0),
(2, 236, 0),
(2, 237, 0),
(2, 238, 0),
(2, 239, 0),
(2, 240, 0),
(2, 241, 0),
(2, 242, 0),
(2, 243, 0),
(2, 244, 0),
(2, 84, 1),
(2, 245, 1),
(3, 250, 0),
(3, 251, 0),
(3, 249, 0),
(3, 246, 0),
(3, 247, 0),
(3, 114, 0),
(3, 248, 0),
(3, 114, 1),
(4, 254, 0),
(4, 107, 0),
(4, 253, 0),
(4, 19, 0),
(4, 252, 0),
(4, 19, 1),
(4, 252, 1),
(5, 21, 0),
(5, 265, 0),
(5, 260, 0),
(5, 64, 0),
(5, 267, 0),
(5, 269, 0),
(5, 110, 0),
(5, 268, 0),
(5, 236, 0),
(5, 261, 0),
(5, 258, 0),
(5, 255, 0),
(5, 262, 0),
(5, 263, 0),
(5, 257, 0),
(5, 105, 0),
(5, 238, 0),
(5, 256, 0),
(5, 259, 0),
(5, 87, 0),
(5, 266, 0),
(5, 264, 0),
(5, 64, 1),
(6, 209, 0),
(17, 606, 0),
(6, 270, 0),
(6, 575, 0),
(6, 273, 1),
(7, 283, 0),
(7, 13, 0),
(7, 278, 0),
(7, 282, 0),
(7, 277, 0),
(7, 281, 0),
(7, 276, 0),
(7, 72, 0),
(7, 229, 0),
(7, 19, 0),
(7, 279, 0),
(7, 274, 0),
(7, 275, 0),
(7, 35, 0),
(7, 280, 0),
(7, 284, 1),
(8, 288, 0),
(8, 295, 0),
(8, 17, 0),
(8, 298, 0),
(8, 289, 0),
(8, 283, 0),
(8, 297, 0),
(8, 293, 0),
(8, 20, 0),
(8, 287, 0),
(8, 54, 0),
(8, 276, 0),
(8, 299, 0),
(8, 291, 0),
(8, 23, 0),
(8, 285, 0),
(8, 292, 0),
(8, 290, 0),
(8, 286, 0),
(8, 35, 0),
(8, 296, 0),
(8, 294, 0),
(8, 276, 1),
(8, 37, 1),
(9, 64, 0),
(9, 301, 0),
(9, 304, 0),
(9, 120, 0),
(9, 279, 0),
(9, 303, 0),
(9, 300, 0),
(9, 302, 0),
(9, 64, 1),
(9, 300, 1),
(10, 305, 0),
(10, 314, 0),
(10, 309, 0),
(10, 306, 0),
(10, 239, 0),
(10, 209, 0),
(10, 55, 0),
(10, 313, 0),
(10, 310, 0),
(10, 315, 0),
(10, 307, 0),
(10, 312, 0),
(10, 311, 0),
(10, 308, 0),
(10, 87, 0),
(10, 309, 1),
(10, 316, 1),
(22, 302, 1),
(22, 626, 1),
(22, 715, 1),
(22, 714, 1),
(22, 734, 0),
(11, 87, 0),
(22, 725, 0),
(22, 264, 0),
(11, 265, 0),
(22, 73, 0),
(22, 746, 0),
(11, 275, 0),
(22, 735, 0),
(11, 852, 0),
(22, 352, 0),
(22, 468, 0),
(22, 748, 0),
(22, 751, 0),
(22, 749, 0),
(22, 732, 0),
(22, 718, 0),
(22, 733, 0),
(11, 325, 0),
(22, 591, 0),
(11, 327, 0),
(11, 13, 0),
(22, 469, 0),
(21, 771, 0),
(22, 744, 0),