Facebook
From xmaskaxd, 5 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 328
  1. <?php error_reporting(E_ALL);
  2.  
  3. $config   = [];
  4. $config[] = [];
  5.        
  6. /** Bot id 1 configuration **/ 
  7. $config[1]['connection'] = [
  8.                 /**
  9.          * @name TeamSpeak3 Server IP Adress
  10.          * @format 0.0.0.0
  11.          */
  12.                  
  13.                         'server_ip'                        => '127.0.0.1',
  14.                        
  15.                 /**
  16.          * @name TeamSpeak3 Server Query Port
  17.          * @default 10011
  18.          */    
  19.                         'server_query_port'                => 10011,
  20.                        
  21.                 /**
  22.          * @name TeamSpeak3 Server ID
  23.          * @default 1
  24.          */    
  25.                  
  26.                         'server_id'                        => 1,
  27.                        
  28.                 /**
  29.           * @name TeamSpeak3 Server Query Login
  30.           * @default serveradmin
  31.           */
  32.                  
  33.                         'server_query_login'               => 'serveradmin',
  34.                        
  35.                 /**
  36.           * @name TeamSpeak3 Server Query Password
  37.                   */   
  38.                  
  39.                         'server_query_password'            => '***',
  40.                        
  41.                        
  42.                 /**
  43.           * @name Enable/Disable commands mode in TeamSpeak3 Query [Important: Look at the configuration config > options > enable_commands_system]
  44.           * @default false
  45.           */
  46.                  
  47.                         'commands_mode'                    => false,
  48.                        
  49.                 /**
  50.           * @name There you can change bot nickname
  51.           * @default mBot Premium
  52.           */
  53.                  
  54.                         'bot_name'                         => [
  55.                                 'name' => 'Guard System',
  56.                                 'prefix' => 1, #Avaliable: 1: m-bot, 2: mbot, 3: MBOT, 4: k-scripts, 5: ts-mbot
  57.                         ],
  58.                        
  59.                
  60.                 /**
  61.           * @name Channel ID where bot enter (false - disable / id - enable)
  62.           * @default false
  63.           */
  64.                
  65.                         'move_to_channel'                  => 17,
  66.          
  67. ];
  68. $config[1]['options']    = [
  69.        
  70.             /**
  71.          * @name Enable/Disable commands system in bot interface [Important: Look at the configuration config > connection > commands_mode]
  72.          * @default false
  73.          */
  74.                  
  75.                         'enable_plugins_and_events_system' => true,
  76.                        
  77.                 /**
  78.          * @name Enable/Disable mysql system
  79.          * @default true
  80.          */
  81.                
  82.                         'enable_database'                                  => true,
  83.                        
  84.                 /**
  85.          * @name The folder name from the events and plugins
  86.          * @default FirstInstance
  87.          */    
  88.                        
  89.                         'folder_name'                                      => 'FirstInstance',
  90.                        
  91.                 /**
  92.          * @name Bot idle time before do next tasks
  93.          * @default 1
  94.          */    
  95.                  
  96.                         'idle_seconds'                     => 1,
  97.                        
  98.                             /**
  99.          * @name Enable/Disable commands system in bot interface [Important: Look at the configuration config > connection > commands_mode]
  100.          * @default false
  101.          */
  102.                  
  103.                         'enable_commands_system' => false
  104.                
  105. ];
  106.  
  107. /** Mysql configuration **/    
  108. $config[1]['db'] = [
  109.  
  110.         'host'                        => 'localhost',
  111.         'user'                            => 'root',
  112.         'pass'                        => '',
  113.         'name'                        => 'mbot'
  114.                  
  115. ];
  116. /** end of mysql configuartion **/     
  117.        
  118.        
  119. $config[1]['plugins'] = [
  120.        
  121.                 /**
  122.          * @name Dosabled plugins
  123.          * @format 'simplePlugin'
  124.          */
  125.        
  126.                         'ignored_plugins' => ['banGroups', 'noRecording', 'serverGroupProtection'],
  127.                        
  128.                 /**
  129.          * @name Specyfic plugin configurations
  130.          */    
  131.  
  132.                         'plugins_configs' => [
  133.                                 'connectMessage' => [
  134.                                         'cache_file' => 'cache/connection_record',
  135.                                         'poke' => ['poke_message_status' => false]
  136.                                 ],
  137.                                
  138.                                 'noRecording' => [
  139.                     'no_record_channels' => [],
  140.                     'groups_ignore' => [244, 238, 11, 12]
  141.                                 ],
  142.                                
  143.                             'banGroups' => [
  144.                                         'groups' => [
  145.                                                 ['time' => 15 * 60, 'group' => 209, 'reason' => 'Ban nadany na okres 15 minut.'],
  146.                                                 ['time' => 30 * 60, 'group' => 209, 'reason' => 'Ban nadany na okres 30 minut.'],
  147.                                         ]
  148.                             ],
  149.                                
  150.                            'serverGroupProtection' => [
  151.                                         'allgroups' => [244, 238, 11],
  152.                                         'userInGroup' => [16 => 244, 20204 => 244, 20186 => 244, 20811 => 244, 20187 => 238, 20460 => 238, 20370 => 11]                    
  153.                                 ],
  154.                         ]
  155. ];
  156.        
  157. $config[1]['events'] = [
  158.        
  159.                 /**
  160.          * @name Dosabled events
  161.          * @format 'simpleEvent'
  162.          */
  163.        
  164.                         'ignored_events' => ['reklama', 'adminsOnline', 'groupUsersList'],
  165.  
  166.                 /**
  167.          * @name Specyfic events time configuration
  168.          */    
  169.                
  170.                         'events_executes' => [
  171.                        
  172.                                 'serverName' => ['seconds' => 10, 'minutes' => 1, 'hours'  => 0,'days' => 0],
  173.                                
  174.                                 'onlineRecord' => ['seconds' => 10,'minutes' => 0,'hours' => 0,'days' => 0],
  175.                                
  176.                                 'adminsOnline' => ['seconds' => 5,'minutes' => 0,'hours' => 0,'days' => 0],
  177.                                
  178.                                 'groupUsersList' => ['seconds' => 5,'minutes' => 3,'hours' => 0,'days' => 0],
  179.                                
  180.                                 'adminList' => ['seconds' => 5,'minutes' => 4,'hours' => 0,'days' => 0],
  181.                                
  182.                                 'adminsOnChannels' => ['seconds' => 0,'minutes' => 1,'hours' => 0,'days' => 0],
  183.                                                        
  184.                                 'topConnectionTime' => ['seconds' => 0, 'minutes' => 5, 'hours' => 0, 'days' => 0],
  185.                                
  186.                                 'topConnections' => ['seconds' => 0, 'minutes' => 5, 'hours' => 0, 'days' => 0],
  187.                                
  188.                                 'timeSpent' => ['seconds' => 2, 'minutes' => 5, 'hours' => 0, 'days' => 0],
  189.                                
  190.                                 'topoftheweek' => ['seconds' => 0, 'minutes' => 3, 'hours' => 0, 'days' => 0],
  191.                                
  192.                                 'poke_admins' => ['seconds' => 15, 'minutes' => 0, 'hours' => 0, 'days' => 0],
  193.                                
  194.                                 'multiFunction' => ['seconds' => 30, 'minutes' => 0, 'hours' => 0, 'days' => 0],
  195.                                
  196.                                 'channelGroup' => ['seconds' => 3,'minutes' => 0,'hours'  => 0,'days' => 0],   
  197.                                
  198.                                 'reklama' => ['seconds' => 0, 'minutes' => 0, 'hours' => 2, 'days' => 0],
  199.                                
  200.                         ],
  201.                        
  202.                 /**
  203.           * @name Specyfic event configurations
  204.           */
  205.                        
  206.                         'events_configs' => [
  207.                        
  208.                                 'reklama' => [
  209.                                         'mode' => 'server', # available modes: 'server', 'channel:cid', 'clients' cid=channelid
  210.                                         'message' => 'Witaj na [b]K-Scripts.eu[/b].\n Potrzebne linki:\n\t Strona gĹ‚Ăłwna: [url=http://k-scripts.eu]PrzenieĹ›[/url]\n\t FanPage: [url=https://www.facebook.com/kscriptss/?ref=aymt_homepage_panel]PrzenieĹ›[/url]'
  211.                                 ],
  212.                        
  213.                                 'serverName' => [
  214.                                         'change_modal_message' => [
  215.                                                 'status' => true,
  216.                                         ],
  217.                                         'ignore_groups' => [407],
  218.                                         'name' => 'nieinteresujsieTS.eu | Stabilny | Darmowy | Bezpieczny | ONLINE: [online]',
  219.                                 ],
  220.                                
  221.                                 'adminsOnline' => [
  222.                                         'channel_name' => '[cspacerHelp03]DostÄ™pni admini: [admins] [name]',
  223.                                         'up_description' => '\n [center][size=11][b]Status Administracji[/size][/center]\n\n',
  224.                                         'write_channel' => 11750,
  225.                                         'groups' => [244, 238, 11, 12]
  226.                                 ],
  227.                                
  228.                                 'adminList' => [
  229.                                         'up_description' => '\n [center][size=15][b]Lista Administracji[/size][/center]\n\n',
  230.                                         'groups' => [9, 81, 82],
  231.                                         'away_time' => 10 * 60,
  232.                                         'channel' => 16,
  233.                                 ],
  234.                                
  235.                                 'channelGroup' => [
  236.                                         'onClientAreOnChannel' => [74, 75, 76],
  237.                                         'groups' => [74 => [12], 75 => [13], 76 => [14]],
  238.                                         'all_groups' => [12, 13, 14],
  239.                                         'time' => 0
  240.                                 ],
  241.                                
  242.                                 'adminsOnChannels' => [
  243.                                         'adminList' => [ # ["[group_name]", "[admin_status]", "[admin_nick]"]
  244.                                                 'obrzZv4HhglonZs/rLoLyBk7vBM=' => ['channel_id' => 2807],
  245.                                                 'unUCtzy+2j0JWdf6adaWVirwH6s=' => ['channel_id' => 4528],
  246.                                                 'NL278IIwCE/XlLBRYwuzlGCklfI=' => ['channel_id' => 2809],
  247.                                                 'warYa5E+wimCJZZtaazWBUTcB5k=' => ['channel_id' => 2810],
  248.                                         ],
  249.                                         'channel_name' => '[admin_nick] jest â–şâ–ş [admin_status]',  # SposĂłb wyĹ›wietlania. DomyĹ›lnie: K-Scripts jest online
  250.                                         'groups' => [9, 81, 82], // Wpisujemy wszystkie grupy administracji
  251.                                 ],
  252.                                
  253.                                 'topConnectionTime' => [
  254.                                         'top_desc' => '[center][size=15][b]Ranking TOP [records][/b]\n NajdĹ‚uĹĽsze poĹ‚Ä…czenie[/center]\n\n',
  255.                                         'write_channel' => 161, // KanaĹ‚, gdzie ma wypisywać osoby.
  256.                                         'numbers_of_records' => 10, // IloĹ›c rekordĂłw
  257.                                         'groups_ignore' => [9, 81, 82, 407, 14] // Ignorowane grupy.
  258.                                 ],
  259.                                
  260.                                 'topConnections' => [
  261.                                         'top_desc' => '[center][size=15][b]Ranking TOP [records][/b]\n NajwiÄ™ksza ilość poĹ‚Ä…czeĹ„[/center]\n\n',
  262.                                         'write_channel' => 162, // KanaĹ‚, gdzie ma wypisywać osoby.
  263.                                         'numbers_of_records' => 10, // IloĹ›c rekordĂłw
  264.                                         'groups_ignore' => [9, 81, 82, 407, 14] // Ignorowane grupy.
  265.                                 ],
  266.                                
  267.                                 'timeSpent' => [
  268.                                         'top_desc' => '[center][size=15][b]Ranking TOP [count][/b]\n SpÄ™dzony czas[/center]\n\n',
  269.                                         'write_channel' => 160, // KanaĹ‚, gdzie ma wypisywać osoby.
  270.                                         'numbers_of_records' => 10, // IloĹ›c rekordĂłw
  271.                                         'interval' => 5 * 60, // Tutaj zostawiamy bez zmian, w przypadku gdy zmienimy czas edytowania kanaĹ‚u tutaj tez.
  272.                                         'groups_ignore' => [9, 81, 82, 407, 14] // Ignorowane grupy.
  273.                                 ],
  274.                                
  275.                                 'onlineRecord' => [
  276.                                         'write_channel' => 154, // KanaĹ‚ gdzie ma wpisywać
  277.                                         'name' => 'Rekord online: [record]', // Nazwa kanaĹ‚u
  278.                                         'description' => '[center][size=15][b]Informacje - Serwer[/b]\n Rekord dostÄ™pnych uĹĽytkownikĂłw[/center]\n[size=10]\nObecny rekord wynosi: [b][record][/b].\nRekord ustanowiono: [b][date][/b][/size][end]',
  279.                                         'cache_file' => 'inc/cache/recordOnline' // Wpisujemy sciężkÄ™ do pliku.
  280.                                 ],
  281.                                
  282.                                 'topoftheweek' => [
  283.                                         'top_desc' => '[center][size=15][b]Ranking najaktywniejszych z caĹ‚ego tygodnia[/center]\n',
  284.                                         'write_channel' => 163, // KanaĹ‚, gdzie ma wypisywać osoby.
  285.                                         'numbers_of_records' => 10, // IloĹ›c rekordĂłw
  286.                                         'interval' => 5 * 60, // Tutaj zostawiamy bez zmian, w przypadku gdy zmienimy czas edytowania kanaĹ‚u tutaj tez.
  287.                                         'ignore_idle_time' => 10 * 60,
  288.                                         'groups_ignore' => [9, 81, 82, 407, 14], // Ignorowane grupy.
  289.                                         'cache_path' => 'inc/cache/',
  290.                                 ],
  291.                                
  292.                                 'groupUsersList' => [
  293.                     'clans' => [
  294.                         [
  295.                             'up_description' => '\n [center][size=11][b]Strefa Premium[/center]\n\n[center]',
  296.                             'group' => [187],
  297.                             'cid' => 1423560,
  298.                             'name' => 'Obecnie online: [online]/[all]'
  299.                         ],
  300.                         [
  301.                             'up_description' => '\n [center][size=11][b]Strefa Premium[/center]\n\n[center]',
  302.                             'group' => [245],
  303.                             'cid' => 1423573,
  304.                             'name' => 'Obecnie online: [online]/[all]'
  305.                         ],
  306.                                                 [
  307.                             'up_description' => '\n [center][size=11][b]Strefa Premium[/center]\n\n[center]',
  308.                             'group' => [1998],
  309.                             'cid' => 1424019,
  310.                             'name' => 'Obecnie online: [online]/[all]'
  311.                                                 ]
  312.                     ],
  313.                 ],
  314.                                
  315.                                 'poke_admins' => [
  316.                                         'type' => 'poke', // DostÄ™pne typy: poke/pw
  317.                     'onClientAreOnChannel' => [83, 84, 85], // Lista kanaĹ‚Ăłw pomocy
  318.                     'groups_poke' => [
  319.                         83 => [9, 81, 82],
  320.                                                 84 => [9, 81, 82],
  321.                                                 85 => [9, 81, 82],
  322.                     ],
  323.                                         'ignored_channel' => [], // Ignorowane kanaĹ‚y, jeĹĽeli bÄ™dzie tam admin nie dostanie poke.
  324.                                         'groups' => [9, 81, 82], // Rangi, ktĂłre majÄ… dostawać poke, wpisujemy wszystkie
  325.                 ],
  326.                                
  327.                                 'multiFunction' => [
  328.                                         'status' => true, // Status
  329.                                         'ignore_groups' => [407],
  330.                                         'Current_time' => [
  331.                                                 'status' => false, // Status
  332.                                                 'channel_to_typing' => 240, // KanaĹ‚ gdzie ma wpisywać
  333.                                                 'channel_name' => 'â—Ź Zegarynka: [time]' // Nazwa kanaĹ‚u
  334.                                         ],
  335.                                         'Number_of_channels' => [
  336.                                                 'status' => false, // Status
  337.                                                 'channel_to_typing' => 227, // KanaĹ‚ gdzie ma wpisywać
  338.                                                 'channel_name' => 'â—Ź Ilość kanaĹ‚Ăłw: [channels]' // Nazwa kanaĹ‚u
  339.                                         ],
  340.                                         'Online_list' => [
  341.                                                 'status' => true, // Status
  342.                                                 'channel_to_typing' => 155, // KanaĹ‚ gdzie ma wpisywać
  343.                                                 'channel_name' => 'Obecnie online: [clients]' // Nazwa kanaĹ‚u
  344.                                         ],
  345.                                         'Away_list' => [
  346.                                                 'status' => false, // Status
  347.                                                 'channel_to_typing' => 78, // KanaĹ‚ gdzie ma wpisywać
  348.                                                 'channel_name' => 'NiedostÄ™pni uĹĽytkownicy: [clients] [name]' // Nazwa kanaĹ‚u
  349.                                         ],
  350.                                         'Private_channels' => [
  351.                                                 'status' => false, // Status
  352.                                                 'pid' => [34], // Wpisujemy sekcjÄ™ kanaĹ‚ow prywatnych
  353.                                                 'channel_to_typing' => 230, // KanaĹ‚ gdzie ma wpisywać
  354.                                                 'channel_name' => 'â—Ź KanaĹ‚Ăłw prywatnych: [priv_channels]' // Nazwa kanaĹ‚u
  355.                                         ]
  356.                                 ],
  357.                         ]
  358. ];
  359. /** end of adds configuration **/
  360. /** Bot id 2 configuration **/
  361. $config[2]['connection'] = [
  362.                 /**
  363.          * @name TeamSpeak3 Server IP Adress
  364.          * @format 0.0.0.0
  365.          */
  366.                  
  367.                         'server_ip'                        => '127.0.0.1',
  368.                        
  369.                 /**
  370.          * @name TeamSpeak3 Server Query Port
  371.          * @default 10011
  372.          */    
  373.                         'server_query_port'                => 10011,
  374.                        
  375.                 /**
  376.          * @name TeamSpeak3 Server ID
  377.          * @default 1
  378.          */    
  379.                  
  380.                         'server_id'                        => 1,
  381.                        
  382.                 /**
  383.           * @name TeamSpeak3 Server Query Login
  384.           * @default serveradmin
  385.           */
  386.                  
  387.                         'server_query_login'               => 'serveradmin',
  388.                        
  389.                 /**
  390.           * @name TeamSpeak3 Server Query Password
  391.                   */   
  392.                  
  393.                         'server_query_password'            => '***',
  394.                        
  395.                        
  396.                 /**
  397.           * @name Enable/Disable commands mode in TeamSpeak3 Query [Important: Look at the configuration config > options > enable_commands_system]
  398.           * @default false
  399.           */
  400.                  
  401.                         'commands_mode'                    => false,
  402.                        
  403.                 /**
  404.           * @name There you can change bot nickname
  405.           * @default mBot Premium
  406.           */
  407.                  
  408.                         'bot_name'                         => [
  409.                                 'name' => 'Server Admin',
  410.                                 'prefix' => 1, #Avaliable: 1: m-bot, 2: mbot, 3: MBOT, 4: k-scripts, 5: ts-mbot
  411.                         ],
  412.                
  413.                 /**
  414.           * @name Channel ID where bot enter (false - disable / id - enable)
  415.           * @default false
  416.           */
  417.                
  418.                         'move_to_channel'                  => 17
  419.                  
  420. ];
  421. $config[2]['options']    = [
  422.        
  423.             /**
  424.          * @name Enable/Disable commands system in bot interface [Important: Look at the configuration config > connection > commands_mode]
  425.          * @default false
  426.          */
  427.                  
  428.                         'enable_plugins_and_events_system' => true,
  429.                        
  430.                 /**
  431.          * @name Enable/Disable mysql system
  432.          * @default true
  433.          */
  434.                
  435.                         'enable_database'                                  => true,
  436.                        
  437.                 /**
  438.          * @name The folder name from the events and plugins
  439.          * @default FirstInstance
  440.          */    
  441.                        
  442.                         'folder_name'                                      => 'SecondInstance',
  443.                        
  444.                 /**
  445.          * @name Bot idle time before do next tasks
  446.          * @default 1
  447.          */    
  448.                  
  449.                         'idle_seconds'                     => 5,
  450.                        
  451.                             /**
  452.          * @name Enable/Disable commands system in bot interface [Important: Look at the configuration config > connection > commands_mode]
  453.          * @default false
  454.          */
  455.                  
  456.                         'enable_commands_system' => false
  457. ];
  458.        
  459. $config[2]['db'] = [
  460.  
  461.         'host'                        => 'localhost',
  462.         'user'                            => 'root',
  463.         'pass'                        => 'siiWbx5cx12',
  464.         'name'                        => 'mbot'
  465.                  
  466. ];
  467.        
  468. $config[2]['plugins'] = [
  469.  
  470.                 /**
  471.          * @name Dosabled plugins
  472.          * @format 'simplePlugin'
  473.          */
  474.                  
  475.                         'ignored_plugins' => ['mvGrToChfCh', 'groupLimit'],
  476.  
  477.                 /**
  478.          * @name Specyfic plugin configurations
  479.          */            
  480.                        
  481.                         'plugins_configs' => [
  482.                                 'badNicknames' => [
  483.                                         'foul_words' => ['shit', 'kurwa', 'huj', 'cipa', 'pierdolony', 'chuj', 'dziwka', 'kutas', 'CHUJ', 'Szmata' ,'Pizda' ,'PIZDA' ,'Pierdol SiÄ™' ,'Pierdol sie' ,'PIERDOL SIĘ' ,'jebać adminĂłw' ,'JEBAĆ ADMINĂ“W' ,'Jebać Administracje' ,'Chuj' ,'KURWA' ,'shit' ,'kurwa' ,'huj' ,'cipa' , 'chuj' , 'dziwka' , 'kutas', 'CHUJ', 'Szmata', 'Pizda' ,'PIZDA' ,'Pierdol SiÄ™' ,'Pierdol sie' ,'PIERDOL SIĘ' ,'Jebać AdminĂłw', 'JEBAĆ ADMINĂ“W', 'Jebać Administracje', 'Chuj', 'KURWA', 'pento', 'Administrator', 'Admin', 'ssij', 'cwel', 'cwele', 'pizda', 'spierdalaj' ,'wypierdalaj', 'serwer', '[]', 'kurwiszon', 'skurwysyn', 'ciota', 'root', '[SA]', '[Ts Administrator]','TeamSpeakUser','fubu','JP armia','ROOT','Admin', '.pl','Administrator', 'Admin', 'serveradmin', 'server admin', 'query', 'queryadmin', 'query admin', 'serwer', 'server', 'serweradmin', 'serwer admin', 'owner', 'root', '.com', '.eu', '.org', '.net', '.com.pl', 'kurwa', 'Support Admin','Manager Admin', 'Public Admin', 'Administarto', 'http:'], /** Zle nicki **/
  484.                                         'groups_ignore' => [9, 81, 82], // Ignorowane grupy
  485.                                         'nickname_regular' => ''                       
  486.                                 ],     
  487.                                
  488.                                 'noAfk' => [
  489.                                         'afk_channel_id' => 120, // KanaĹ‚ na ktĂłry ma przenieść.
  490.                                         'clidb_ignore' => [], // Ignorowani klienci (Client_Database_ID)
  491.                                         'check_channels_id' => [], // Id kanaĹ‚Ăłw gdzie ma tylko sprawdzać.
  492.                                         'groups_ignore' => [9, 81, 82, 407, 14], // Ignorowane grupy
  493.                                         'move_message' => false // WiadomoĹ›c po przeniesieniu
  494.                                 ],     
  495.                                
  496.                                 'groupLimit' => [
  497.                                         'groups' => [244, 238, 11, 12, 187, 245, 246, 247, 147, 148, 149, 150, 151, 111, 112, 113, 114, 115, 116, 232, 256, 200, 199, 120, 121, 122, 21, 23, 30, 29, 26, 222, 223, 254, 253, 23, 250], // Ignorowane grupy
  498.                                         'limit' => 6, // Limit grup
  499.                                 ],
  500.                                
  501.                                 'mvGrToChfCh' => [
  502.                                         /**
  503.                                                 Wydarzenie sĹ‚uĹĽÄ…ce do przenoszenia uĹĽytkownika z danego kanaĹ‚u z danej grupy na okreĹ›lony w konfiguracji kanaĹ‚.
  504.                                                 Informacje:
  505.                                                         [*] 'isOnChannel'       - Tutaj wpisujemy kanaĹ‚, z ktĂłrego ma wrzucać.
  506.                                                         [*] 'isInGroup'         - Tutaj wpisujemy id grupy, w ktĂłrej musi być dany uĹĽytkownik.
  507.                                                         [*] 'moveToChannel' - Tutaj wpisujemy id kanaĹ‚u na ktĂłry ma przerzucić danego usera.
  508.                                                
  509.                                                 Dodawanie nowego rekordu:
  510.                                                         Aby dodać kolejny rekord wystarczy skopiować to:
  511.                                                         numer => array('isOnChannel' => 0, 'isInGroup' => 0, 'moveToChannel' => 0),
  512.                                         **/
  513.                                         'list' => [
  514.                                                 ['isOnChannel' => 1, 'isInGroup' => 171, 'moveToChannel' => 40],
  515.                                                 ['isOnChannel' => 1, 'isInGroup' => 169, 'moveToChannel' => 44],
  516.                                                 ['isOnChannel' => 1, 'isInGroup' => 172, 'moveToChannel' => 47],
  517.                                                 ['isOnChannel' => 1, 'isInGroup' => 173, 'moveToChannel' => 48],
  518.                                                 ['isOnChannel' => 1, 'isInGroup' => 217, 'moveToChannel' => 294],
  519.                                         ]
  520.                                 ],
  521.                         ]
  522. ];
  523.        
  524. $config[2]['events'] = [
  525.                 /**
  526.          * @name Dosabled events
  527.          * @format 'simpleEvent'
  528.          */
  529.                
  530.                         'ignored_events' => ['youtubeInfo', 'vipGroup', 'Partners', 'awayGroup', 'musicInformation'],
  531.                
  532.                
  533.                 /**
  534.          * @name Specyfic events time configuration
  535.          */    
  536.                
  537.                         'events_executes' => [
  538.                        
  539.                                 'cleanup' => ['seconds' => 0, 'minutes' => 5, 'hours' => 0, 'days' => 0],
  540.                                
  541.                                 'vipGroup' => ['seconds' => 5,'minutes' => 0,'hours' => 0,'days' => 0],
  542.                                
  543.                                 'freeChannels' => ['seconds' => 1,'minutes' => 1,'hours' => 0,'days' => 0],
  544.                                
  545.                                 'newUsersToday' => ['seconds' => 0, 'minutes' => 2, 'hours' => 0, 'days' => 0],
  546.                                
  547.                                 'Partners' => ['seconds' => 30, 'minutes' => 0, 'hours' => 0, 'days' => 0],
  548.                                
  549.                                 'musicInformation' => ['seconds' => 20, 'minutes' => 0, 'hours' => 0, 'days' => 0],
  550.                                
  551.                                 'youtubeInfo' => ['seconds' => 1, 'minutes' => 3, 'hours' => 0, 'days' => 0],
  552.                                
  553.                                 'awayGroup' => ['seconds' => 0, 'minutes' => 1, 'hours' => 0, 'days' => 0],
  554.                         ],
  555.                        
  556.                        
  557.                 /**
  558.           * @name Specyfic event configurations
  559.           */   
  560.                        
  561.                         'events_configs' => [
  562.                                
  563.                                 'awayGroup' => [
  564.                                         'away_group' => 249, // Grupa, ktĂłra ma nadać
  565.                                         'groups_ignore' => [244, 238, 11, 12],  // Grupy ignorowane    
  566.                                         'time' => 1 * 60 * 60,
  567.                                 ],
  568.                                
  569.                                 'vipGroup' => [
  570.                                         'onClientAreOnChannel' => [1423559, 1423572, 1424018],
  571.                                                 'groups' => [
  572.                                                         1423559 => [187],
  573.                                                         1423572 => [245],
  574.                                                         1424018 => [1998],
  575.                                                 ],
  576.                                         'all_groups' => [187, 245, 1998],
  577.                                 ],
  578.                                
  579.                                 'musicInformation' => [
  580.                                         'musicbots' => [
  581.                                                 [
  582.                                                         'number' => 1,
  583.                                                         'mainInformation' => [
  584.                                                                 'host' => 'http://musicbots.k-scripts.eu',
  585.                                                                 'login' => 'admin',
  586.                                                                 'password' => '',
  587.                                                                 'instance' => 'fa59ce0f-87fd-4d74-ace3-b9fdc9100fb9',
  588.                                                                 'database_id' => 20338,
  589.                                                                 'youtube' => true
  590.                                                         ],
  591.                                                         'channels' => [
  592.                                                                 'description' => '[size=10]Last songs played on this section:[/size]\n[center][history][/center]\n\n',
  593.                                                                 'mainChannel' => 1423679,
  594.                                                                 'others' => [
  595.                                                                         'author' => [
  596.                                                                                 'format' => 'Autor: [author]',
  597.                                                                                 'channel' => 1423681
  598.                                                                         ],
  599.                                                                         'title' => [
  600.                                                                                 'format' => 'TytuĹ‚: [title]',
  601.                                                                                 'channel' => 1423680
  602.                                                                         ]
  603.                                                                 ]
  604.                                                         ]
  605.                                                 ],
  606.                                                 /* NastÄ™pny
  607.                                                 [
  608.                                                         'number' => 1,
  609.                                                         'mainInformation' => [
  610.                                                                 'host' => 'http://k-scripts.eu:82',
  611.                                                                 'login' => 'mbot',
  612.                                                                 'password' => 'mbot5615',
  613.                                                                 'instance' => '81f63ab2-d5da-48a5-acae-c02f6ae73f25',
  614.                                                                 'database_id' => 2295,
  615.                                                                 'youtube' => true
  616.                                                         ],
  617.                                                         'channels' => [
  618.                                                                 'description' => '[size=10]Last songs played on this section:[/size]\n[center][history][/center]\n\n',
  619.                                                                 'mainChannel' => 82,
  620.                                                                 'others' => [
  621.                                                                         'author' => [
  622.                                                                                 'format' => 'Autor: [author]',
  623.                                                                                 'channel' => 85
  624.                                                                         ],
  625.                                                                         'title' => [
  626.                                                                                 'format' => 'TytuĹ‚: [title]',
  627.                                                                                 'channel' => 84
  628.                                                                         ]
  629.                                                                 ]
  630.                                                         ]
  631.                                                 ],
  632.                                                 */
  633.                                         ]
  634.                                 ],
  635.                                
  636.                                 'freeChannels' => [
  637.                                         'channelsection' => 169, // Sekcja kanaĹ‚Ăłw prywatnych
  638.                                         'days' => [7, 8, 9, 10],
  639.                                         'channels' => [
  640.                                                 'mainchannel' => [
  641.                                                         'channel_id' => 79, #KanaĹ‚ gdzie ma zostać umieszczony opis.
  642.                                                         'description' => '
  643.                                                         [center][size=15][b]Automatyczne centrum[/b]\n
  644.                                                         DostÄ™pne kanaĹ‚y[/center]\n
  645.                                                         [size=12][b]KanaĹ‚y dostÄ™pne:[/b] [freeChannels]\n[b]Lista kanaĹ‚Ăłw do usuniÄ™cia:[/b] [channelstodelete][/size]\n[hr][end]'
  646.                                                 ],
  647.                                                 'secondchannel' => [
  648.                                                         'channelid' => 79, #KanaĹ‚ gdzie ma zostać wpisana nazwa
  649.                                                         'channel_name' => '[ AUTO ] KanaĹ‚ Prywatny (Wolne: [freeChannels])', // Nazwa kanaĹ‚u
  650.                                                 ],
  651.                                         ],
  652.                                 ],     
  653.                                
  654.                                 'newUsersToday' => [
  655.                                         'channel_name' => 'Nowi uĹĽytkownicy: [count] [name]', // Nazwa kanaĹ‚u
  656.                                         'top_desc' => '[size=10] Ostatnio doĹ‚Ä…czyli:[/size][size=9][list]\n',
  657.                                         'write_channel' => 157, // KanaĹ‚ gdzie ma wypisywać
  658.                                         'need_groups' => [12, 13], // Grupy potrzebne do sprawdzania
  659.                                 ],
  660.                                
  661.                                 'Partners' => [
  662.                                         'partners' => [
  663.                                                 [
  664.                                                         'name' => 'K-Scripts.eu - UsĹ‚ugi Programistyczne',
  665.                                                         'desc' => '[center][size=15][b]Partnerzy[/b][/center]
  666.                                                         [size=10][b]K-scripts[/b] to dziaĹ‚alność zaĹ‚oĹĽona przez zdolnego programistÄ™ i developera. AmbicjÄ™ i ciężkÄ… pracÄ™ postanowiono przekuć w firmÄ™, ktĂłra bÄ™dzie kontynuowaĹ‚a tradycjÄ™ dokĹ‚adnoĹ›ci, rzetelnoĹ›ci i pomysĹ‚owoĹ›ci.[/size]
  667.                                                         [size=10]
  668.                                                         Postawowe informacje:
  669.                                                         [list]
  670.                                                         [*] Link do strony: [b][url=http://k-scripts.eu/]PrzejdĹş[/url][/b]
  671.                                                         [*] Link do FanPage: [b][url=https://www.facebook.com/kscriptss/?ref=aymt_homepage_panel]PrzejdĹş[/url][/b]
  672.                                                         [/size]
  673.                                                         [hr]
  674.                                                         [right][size=9]Wygenerowane przez: [b][url=http://K-Scripts.eu/?teamspeak]MBOT (Wersja: 25.0)[/url][/right]'
  675.                                                 ],
  676.                                         ],
  677.                                         'channel' => 1423624
  678.                                 ],     
  679.                                
  680.                                 'youtubeInfo' => [
  681.                                         'channels' => [
  682.                                                 [
  683.                                                         'youtube_id' => 'UCtGmMo9NJaQG3hl1gsj1Hzw', #Youtube ID PrzykĹ‚ad:https://www.youtube.com/channel/UCNhtAn1MT600xiNiX8ErnyQ Id to: UCNhtAn1MT600xiNiX8ErnyQ
  684.                                                         'channel_name' => 'â—Ź PrzykĹ‚ad [Subskrybcji: [number]]',
  685.                                                         'channel_id' => 1064543
  686.                                                 ],
  687.                                         ]
  688.                                 ]      
  689.                         ],
  690. ];
  691. /** Bot id 3 configuration **/
  692. $config[3]['connection'] = [
  693.                 /**
  694.          * @name TeamSpeak3 Server IP Adress
  695.          * @format 0.0.0.0
  696.          */
  697.                  
  698.                         'server_ip'                        => '127.0.0.1',
  699.                        
  700.                 /**
  701.          * @name TeamSpeak3 Server Query Port
  702.          * @default 10011
  703.          */    
  704.                         'server_query_port'                => 10011,
  705.                        
  706.                 /**
  707.          * @name TeamSpeak3 Server ID
  708.          * @default 1
  709.          */    
  710.                  
  711.                         'server_id'                        => 1,
  712.                        
  713.                 /**
  714.           * @name TeamSpeak3 Server Query Login
  715.           * @default serveradmin
  716.           */
  717.                  
  718.                         'server_query_login'               => 'serveradmin',
  719.                        
  720.                 /**
  721.           * @name TeamSpeak3 Server Query Password
  722.                   */   
  723.                  
  724.                         'server_query_password'            => '***',
  725.                        
  726.                        
  727.                 /**
  728.           * @name Enable/Disable commands mode in TeamSpeak3 Query [Important: Look at the configuration config > options > enable_commands_system]
  729.           * @default false
  730.           */
  731.                  
  732.                         'commands_mode'                    => false,
  733.                        
  734.                 /**
  735.           * @name There you can change bot nickname
  736.           * @default mBot Premium
  737.           */
  738.                  
  739.                         'bot_name'                         => [
  740.                                 'name' => 'Channel Master',
  741.                                 'prefix' => 1, #Avaliable: 1: m-bot, 2: mbot, 3: MBOT, 4: k-scripts, 5: ts-mbot
  742.                         ],
  743.                
  744.                 /**
  745.           * @name Channel ID where bot enter (false - disable / id - enable)
  746.           * @default false
  747.           */
  748.                
  749.                         'move_to_channel'                  => 17
  750.                  
  751. ];
  752. $config[3]['server'] = [
  753.                 /**
  754.          * This is a checksum done edit this.
  755.          * @default false
  756.          */
  757.                         'checksum' => 'bWJvdDIyLjI4WG1DVnoxMjQ1MQ==',
  758.                        
  759. ];
  760. $config[3]['options']    = [
  761.        
  762.             /**
  763.          * @name Enable/Disable commands system in bot interface [Important: Look at the configuration config > connection > commands_mode]
  764.          * @default false
  765.          */
  766.                  
  767.                         'enable_plugins_and_events_system' => true,
  768.                        
  769.                 /**
  770.          * @name Enable/Disable mysql system
  771.          * @default false
  772.          */
  773.                
  774.                         'enable_database'                                  => false,
  775.                        
  776.                 /**
  777.          * @name The folder name from the events and plugins
  778.          * @default FirstInstance
  779.          */    
  780.                        
  781.                         'folder_name'                                      => 'ThirtyInstance',
  782.                        
  783.                 /**
  784.          * @name Bot idle time before do next tasks
  785.          * @default 1
  786.          */    
  787.                  
  788.                         'idle_seconds'                     => 30,
  789.                        
  790.                             /**
  791.          * @name Enable/Disable commands system in bot interface [Important: Look at the configuration config > connection > commands_mode]
  792.          * @default false
  793.          */
  794.                  
  795.                         'enable_commands_system' => false
  796. ];
  797.        
  798. $config[3]['plugins'] = [
  799.                 /**
  800.          * @name Disabled plugins
  801.          * @format 'simplePlugin'
  802.          */
  803.                  
  804.                         'ignored_plugins' => [],
  805.                        
  806.                 /**
  807.          * @name Specyfic plugin configurations
  808.          */
  809.                        
  810.                         'plugins_configs' => [
  811.                                 'channelCheckers' => [
  812.                                         'channel_name_regex'              => '/[0-9]{1,3}\.(.*)/',
  813.                                         'channel_num_regex'               => '/(.*)\.(.*)/',
  814.                                         'channel_data_regex'              => '/^[0-9]{2}\.[0-9]{2}\.[0-9]{2}$/',
  815.                                         'check_channel_names'         => true, // Czy ma sprawdzać nazwy.
  816.                                         'Editing_by_Admin'                    => true, // Gdy wĹ‚aĹ›ciciel kanaĹ‚u jest na nim data siÄ™ aktualizuje
  817.                                         'check_channel_data'              => true, // Sprawdzanie daty.
  818.                                         'checkGroups'                             => [5, 6, 7], // Grupy, dziÄ™ki ktĂłrym rangi bÄ™dÄ… aktualizowane
  819.                                         'checkSubChannels'            => false, // Sprawdzenie zĹ‚ych nazw w podkanaĹ‚ach
  820.                                         'channels_section'                        => 169, // Sekcja, gdzie znajdujÄ… siÄ™ kanaĹ‚y prywatne.
  821.                                         'foul_language'                       => ['fuck','shit','pizda','hitler','cwel','spierdalaj','skurwiel','idiota','dziwka','suka','jebac','kurwa','huj','cipa','chuj','server admin','Support Admin','Manager Admin','Public Admin','Junior Public Admin','Guardian Admin','Admin','.pl','.eu','.com','online-ts3','net-speak'],
  822.                                         'daysto'                                          => ['warning' => 5, 'delete' => 7],
  823.                                         'channelAdmin'                            => 5,
  824.                                         'freeChannels_name'                       => 'Prywatny KanaĹ‚ - Wolny', // Nazwa kanaĹ‚Ăłw wolnych
  825.                                         'date_name'                                       => '[ZMIEŃ DATĘ]', // W przypadku gdy kanaĹ‚ jest starszy niĹĽ 7 dni, co ma dopisywać do niego jako informacjÄ™.
  826.                                         'minimal_freeChannels'            => 5, // Minimalna ilość kanaĹ‚Ăłw wolnych      
  827.                                 ],
  828.                         ]
  829. ];
  830. /** end of adds configuration **/
  831. /** Bot id 4 configuration **/ 
  832. $config[4]['connection'] = [
  833.                 /**
  834.          * @name TeamSpeak3 Server IP Adress
  835.          * @format 0.0.0.0
  836.          */
  837.                  
  838.                         'server_ip'                        => '127.0.0.1',
  839.                        
  840.                 /**
  841.          * @name TeamSpeak3 Server Query Port
  842.          * @default 10011
  843.          */    
  844.                         'server_query_port'                => 10011,
  845.                        
  846.                 /**
  847.          * @name TeamSpeak3 Server ID
  848.          * @default 1
  849.          */    
  850.                  
  851.                         'server_id'                        => 1,
  852.                        
  853.                 /**
  854.           * @name TeamSpeak3 Server Query Login
  855.           * @default serveradmin
  856.           */
  857.                  
  858.                         'server_query_login'               => 'serveradmin',
  859.                        
  860.                 /**
  861.           * @name TeamSpeak3 Server Query Password
  862.                   */   
  863.                  
  864.                         'server_query_password'            => '***',
  865.                        
  866.                        
  867.                 /**
  868.           * @name Enable/Disable commands mode in TeamSpeak3 Query [Important: Look at the configuration config > options > enable_commands_system]
  869.           * @default false
  870.           */
  871.                  
  872.                         'commands_mode'                    => false,
  873.                        
  874.                 /**
  875.           * @name There you can change bot nickname
  876.           * @default mBot Premium
  877.           */
  878.                  
  879.                         'bot_name'                         => [
  880.                                 'name' => 'Automatic Admin',
  881.                                 'prefix' => 1, #Avaliable: 1: m-bot, 2: mbot, 3: MBOT, 4: k-scripts, 5: ts-mbot
  882.                         ],
  883.                
  884.                 /**
  885.           * @name Channel ID where bot enter (false - disable / id - enable)
  886.           * @default false
  887.           */
  888.                
  889.                         'move_to_channel'                  => 17
  890.                  
  891. ];
  892. $config[4]['options']    = [
  893.        
  894.             /**
  895.          * @name Enable/Disable commands system in bot interface [Important: Look at the configuration config > connection > commands_mode]
  896.          * @default false
  897.          */
  898.                  
  899.                         'enable_plugins_and_events_system' => true,
  900.                        
  901.                 /**
  902.          * @name Enable/Disable mysql system
  903.          * @default true
  904.          */
  905.                
  906.                         'enable_database'                                  => true,
  907.                        
  908.                 /**
  909.          * @name The folder name from the events and plugins
  910.          * @default FirstInstance
  911.          */    
  912.                        
  913.                         'folder_name'                                      => 'FourthInstance',
  914.                        
  915.                 /**
  916.          * @name Bot idle time before do next tasks
  917.          * @default 1
  918.          */    
  919.                  
  920.                         'idle_seconds'                     => 5,
  921.                        
  922.                             /**
  923.          * @name Enable/Disable commands system in bot interface [Important: Look at the configuration config > connection > commands_mode]
  924.          * @default false
  925.          */
  926.                  
  927.                         'enable_commands_system' => false
  928.                
  929. ];
  930.  
  931. /** Mysql configuration **/    
  932. $config[4]['db'] = [
  933.  
  934.         'host'                        => 'localhost',
  935.         'user'                            => 'root',
  936.         'pass'                        => 'siiWbx5cx12',
  937.         'name'                        => 'mbot'
  938.                  
  939. ];
  940. /** end of mysql configuartion **/     
  941.        
  942.        
  943. $config[4]['plugins'] = [
  944.        
  945.                 /**
  946.          * @name Dosabled plugins
  947.          * @format 'simplePlugin'
  948.          */
  949.        
  950.                         'ignored_plugins' => ['proxyBlocker', 'autoRegister', 'protectedChannels'],
  951.                        
  952.                 /**
  953.          * @name Specyfic plugin configurations
  954.          */    
  955.  
  956.                         'plugins_configs' => [
  957.                                 'proxyBlocker' => [
  958.                                         'Notifications' => [
  959.                                                 'status' => true,
  960.                                                 'groups' => [9, 81, 82]
  961.                                         ],
  962.                                         'groups_ignore' => [9, 81, 82, 14]
  963.                                 ],
  964.                                
  965.                                 'autoRegister' => [
  966.                                         'groups' => [21], // GrupÄ™, ktĂłrÄ… ma dodac.
  967.                                         'groups_ignore' => [244, 238, 11, 12, 21, 23], // Ignorowane grupy
  968.                                         'time' => 30 * 60 // Po jakim czasie ma jÄ… nadać domyĹ›lnie 1 godzina.
  969.                                 ],
  970.                                
  971.                                 'protectedChannels' => [
  972.                                         'channels' => [
  973.                                                 1424000 => [244], #channel = groups
  974.                                                 1423558 => [756]
  975.                                         ],
  976.                                         'groups_ignore' => [244],
  977.                                 ]
  978.                                
  979.                         ]
  980. ];
  981.        
  982. $config[4]['events'] = [
  983.        
  984.                 /**
  985.          * @name Dosabled events
  986.          * @format 'simpleEvent'
  987.          */
  988.        
  989.                         'ignored_events' => ['randomGroup', 'generatingBanner', 'awardsSystem', 'registerReminder'],
  990.  
  991.                 /**
  992.          * @name Specyfic events time configuration
  993.          */    
  994.                
  995.                         'events_executes' => [         
  996.                                
  997.                                 'generatingBanner' => ['seconds' => 30, 'minutes' => 0, 'hours' => 0, 'days' => 0],
  998.                                
  999.                                 'getChannel' => ['seconds' => 10,'minutes' => 0,'hours' => 0,'days' => 0],
  1000.                                
  1001.                                 'userPlatform' => ['seconds' => 35,'minutes' => 0,'hours' => 0,'days' => 0],
  1002.                                
  1003.                                 'clientLevels' => ['seconds' => 0, 'minutes' => 5, 'hours' => 0, 'days' => 0],
  1004.                                
  1005.                                 'awardsSystem' => ['seconds' => 1, 'minutes' => 0, 'hours' => 0, 'days' => 0],
  1006.                                
  1007.                                 'randomGroup' => ['seconds' => 0, 'minutes' => 3, 'hours' => 0, 'days' => 0],
  1008.                                
  1009.                                 'registerReminder' => ['seconds' => 0, 'minutes' => 10, 'hours' => 0, 'days' => 0],
  1010.                                
  1011.                                 'fbposts' => ['seconds' => 5, 'minutes' => 10, 'hours' => 0, 'days' => 0],
  1012.                                
  1013.                                 'publicProtection' => ['seconds' => 20, 'minutes' => 0, 'hours' => 0, 'days' => 0],
  1014.                         ],
  1015.                        
  1016.                 /**
  1017.           * @name Specyfic event configurations
  1018.           */
  1019.                        
  1020.                         'events_configs' => [
  1021.                        
  1022.                                 'randomGroup' => [
  1023.                                         'cache_path' => 'cache/',
  1024.                                         'need_groups' => [21], // ID grup, ktĂłre sa potrzebne do brania udziaĹ‚u min. 1
  1025.                                         'add_group' => 30, // ID grupy, ktĂłra ma nadać
  1026.                                         'group_time' => 1 * 24 * 60 * 60, // Na jaki okres jest grupa
  1027.                                         'channels' => [
  1028.                                                 'winner' => [
  1029.                                                         'channel_name' => 'Ostatnio wylosowany: [winner_nick]', // Nazwa kanaĹ‚u informacyjnego
  1030.                                                         'channel_cid' => 1423626, // Id kanaĹ‚u informacyjnego
  1031.                                                         'channel_description' => [
  1032.                                                                 'start' => '\n [center][size=15][b]Loteria VIP[/size][/center]\n\n',
  1033.                                                                 'end' => '\n[right][size=9]Wygenerowane przez: [b][url=http://K-Scripts.eu/?teamspeak]MBOT (Wersja: 25.0)[/url][/right]'
  1034.                                                         ],
  1035.                                                 ],
  1036.                                         ],
  1037.                                 ],
  1038.                                
  1039.                                 'awardsSystem' => [
  1040.                                         'need_group' => [178, 177, 218], // Grupy potrzebne do brania udziaĹ‚u.
  1041.                                         'groups_ignore' => [220], // Ignorowane grupy
  1042.                                         'totalClientsConnections' => [
  1043.                                                 'status' => true, // Status
  1044.                                                 'section_group' => 5085, // Id grupy gĹ‚Ăłwnej np. OsiÄ…gniÄ™cia ilość poĹ‚Ä…czeĹ„:
  1045.                                                 'connections' => [
  1046.                                                         [5087, 1], // Grupa, ilość poĹ‚Ä…czeĹ„
  1047.                                                         [5088, 50],
  1048.                                                         [5089, 100],
  1049.                                                         [5090, 300],
  1050.                                                         [5091, 1000]
  1051.                                                 ],
  1052.                                         ],
  1053.                                         'timeSpent' => [
  1054.                                                 'status' => true, // Status
  1055.                                                 'section_group' => 5093, // Id grupy gĹ‚Ăłwnej np. OsiÄ…gniÄ™cia ilość poĹ‚Ä…czeĹ„:
  1056.                                                 'time' => [
  1057.                                                         [5094, 1], // Grupa, czas w godzinach
  1058.                                                         [5095, 10],
  1059.                                                         [5096, 50],
  1060.                                                         [5097, 100],
  1061.                                                         [5098, 300]
  1062.                                                 ],
  1063.                                         ]
  1064.                                 ],
  1065.                                
  1066.                                 'clientLevels' => [
  1067.                                         'output' => '[center][size=11]TOP [count]\n NajwiÄ™kszy poziom:[/size][/center]\n\n',
  1068.                                         'numbers_of_records' => 10, // Ilość rekordĂłw wyĹ›wietlanych
  1069.                                         'end_output' => '\n[hr][right][size=9]Wygenerowane przez: [b][url=http://K-Scripts.eu/?teamspeak]MBOT (Wersja: 25.0)[/url][/right]',
  1070.                                         'write_channel' => 397, // KanaĹ‚ gdzie ma wpisywać
  1071.                                         'cache_path' => 'cache/',
  1072.                                         'need_group' => [12, 13], // Grupy potrzebne do nadawania
  1073.                                         'groups_ignore' => [14, 407], // Ignorowane grupy
  1074.                                         'levels' => [
  1075.                                                 [16, 10 * 60], //LVL 1
  1076.                                                 [17, 1 * 60 * 60], //LVL 2
  1077.                                                 [18, 10 * 60 * 60], //LVL 3
  1078.                                                 [19, 1 * 24 * 60 * 60], //LVL 4
  1079.                                                 [20, 9 * 24 * 60 * 60], //LVL 5
  1080.                                                 [83, 14 * 24 * 60 * 60], //LVL 6
  1081.                                                 [84, 20 * 24 * 60 * 60], //LVL 7
  1082.                                                 [85, 31 * 24 * 60 * 60], //LVL 8
  1083.                                                 [86, 2 * 31 * 24 * 60 * 60], //LVL 9
  1084.                                                 [87, 4 * 31 * 24 * 60 * 60], //LVL 10
  1085.                                         ],
  1086.                                         'interval' => 5 * 60, // Co jaki czas ma dodawać czas
  1087.                                         'ignore_idle_time' => 15 * 60, // Czas po ktĂłrym nie jest dodawany czas
  1088.                                 ],
  1089.                                
  1090.                                 'userPlatform' => [
  1091.                                         'group' => 15, // W przypadku gdy klient jest zalogowany na IOS lub Androdzie otrzymuje tÄ… grupÄ™.
  1092.                                 ],
  1093.                                
  1094.                                 'getChannel' => [
  1095.                                         'channels_section' => 169, // Sekcja kanaĹ‚Ăłw prywatnych
  1096.                                         'need_groups' => [12, 13], // Potrzebne grupy do otrzymania kanaĹ‚u
  1097.                                         'channel_num_regex' => '/(.*)\.(.*)/', // regex nazwy kanaĹ‚u
  1098.                                         'channel_admin_group_id' => 5, // ID grupy, ktĂłra ma nadać
  1099.                                         'default_subchannels' => 2, // DomyĹ›lna ilość podkanaĹ‚Ăłw
  1100.                                         'max_subchannels' => 2, // Maksymalna ilość podkanaĹ‚Ăłw
  1101.                                         'channel_codec' => 4,
  1102.                                         'channel_codec_level' => 10,
  1103.                                         'onClientAreOnChannel' => 79, // ID kanaĹ‚u, gdy na niego wejdziemy otrzymamy kanaĹ‚.
  1104.                                 ],                     
  1105.                        
  1106.                                 'generatingBanner' => [
  1107.                                         'admins_groups' => [105], // Id grup administracji
  1108.                                         'get_file_from' => 'assets/', // ĹšcieĹĽka do katalogu z plikami
  1109.                                         'save_file_here' => '/var/www/', // Gdzie ma zapisać banner
  1110.                                 ],
  1111.                                
  1112.                                 'registerReminder' => [
  1113.                                         'ignore_groups' => [171, 169, 172, 173, 217, 214, 1442, 178, 177, 220, 218],
  1114.                                         'message' => 'Nie jesteĹ› zarejestrowany. Zapraszamy na kanaĹ‚ rejestracji.'
  1115.                                 ],
  1116.                                
  1117.                                 'fbposts' => [
  1118.                                         'fanpages' => [
  1119.                                                 [
  1120.                                                         'fanpage' => '974983679319906', #ID or UserName
  1121.                                                         'token' => '202747330145343|zn0uoqS79Mdkbf2qqdVdpGdo0fo', # Valid access token (https://developers.facebook.com/)
  1122.                                                         'post' => 3,
  1123.                                                         'posttemplate' => '
  1124.                                                                 [size=12][url=https://www.facebook.com/[name]/posts/[postid]]Post numer [num][/url][/size]
  1125.                                                                
  1126.                                                                 [size=10][message][/size]
  1127.                                                                 [right][size=9]Utworzony: [b][date][/b][/right]
  1128.                                                                 [hr]
  1129.                                                         ', #Post template
  1130.                                                         'description' => '
  1131.                                                                 [center][size=12]nieinteresujsieTS.eu ([b][url=https://www.facebook.com/nieinteresujsieTS.eu]Facebook[/url][/b])[/center]
  1132.                                                                 [size=10]ZbiĂłr ostatnich postĂłw z naszego [b]FanPage[/b].
  1133.                                                                 SÄ… one aktualizowane automatycznie raz na [b]10 minut[/b].
  1134.                                                                 [/size]
  1135.                                                                 [post]
  1136.                                                                 \n[right][size=9]Wygenerowane przez: [b] Bot Stefan (Wersja: 1.0)[/b][/right]
  1137.                                                         ', #Full description
  1138.                                                         'channelid' => 3684
  1139.                                                 ],
  1140.                                         ],
  1141.                                 ],
  1142.                                
  1143.                                 'publicProtection' => [
  1144.                                         'options' => [
  1145.                                                 'min' => 2, # Minimalna ilość kanaĹ‚Ăłw w kaĹĽdej strefie
  1146.                                                 'max' => 10, # Maksymalna ilość kanaĹ‚Ăłw w kaĹĽdej strefie
  1147.                                                 'maxfreechannels' => 1, # Maksymalna ilość wolnych kanaĹ‚Ăłw
  1148.                                                 'ch_name_template' => '➥ ρυвℓιczηу [ch_num]', # WyglÄ…d nazwy kanaĹ‚u
  1149.                                                 'ch_desc_template' => '' # WyglÄ…d opisu kanaĹ‚u
  1150.                                         ],
  1151.                                         'channels' => [
  1152.                                                 100 => 2798, # Maksymalnie 100 uĹĽytkownikĂłw
  1153.                                                 2 => 125, # Maksymalnie 2 uĹĽytkownikĂłw
  1154.                                                 3 => 131, # Maksymalnie 3 uĹĽytkownikĂłw
  1155.                                                 4 => 136, # Maksymalnie 4 uĹĽytkownikĂłw
  1156.                                                 5 => 2781, # Maksymalnie 5 uĹĽytkownikĂłw
  1157.                                         ]
  1158.                                 ],
  1159.                         ]
  1160. ];
  1161. /** end of adds configuration **/
  1162. /** Bot id 5 configuration **/
  1163. $config[5]['connection'] = [
  1164.                 /**
  1165.          * @name TeamSpeak3 Server IP Adress
  1166.          * @format 0.0.0.0
  1167.          */
  1168.                  
  1169.                         'server_ip'                        => '127.0.0.1',
  1170.                        
  1171.                 /**
  1172.          * @name TeamSpeak3 Server Query Port
  1173.          * @default 10011
  1174.          */    
  1175.                         'server_query_port'                => 10011,
  1176.                        
  1177.                 /**
  1178.          * @name TeamSpeak3 Server ID
  1179.          * @default 1
  1180.          */    
  1181.                  
  1182.                         'server_id'                        => 1,
  1183.                        
  1184.                 /**
  1185.           * @name TeamSpeak3 Server Query Login
  1186.           * @default serveradmin
  1187.           */
  1188.                  
  1189.                         'server_query_login'               => 'serveradmin',
  1190.                        
  1191.                 /**
  1192.           * @name TeamSpeak3 Server Query Password
  1193.                   */   
  1194.                  
  1195.                         'server_query_password'            => '***',
  1196.                        
  1197.                        
  1198.                 /**
  1199.           * @name Enable/Disable commands mode in TeamSpeak3 Query [Important: Look at the configuration config > options > enable_commands_system]
  1200.           * @default true
  1201.           */
  1202.                  
  1203.                         'commands_mode'                    => true,
  1204.                        
  1205.                 /**
  1206.           * @name There you can change bot nickname
  1207.           * @default mBot Premium
  1208.           */
  1209.                  
  1210.                         'bot_name'                         => [
  1211.                                 'name' => 'Informant',
  1212.                                 'prefix' => 1, #Avaliable: 1: m-bot, 2: mbot, 3: MBOT, 4: k-scripts, 5: ts-mbot
  1213.                         ],
  1214.                
  1215.                 /**
  1216.           * @name Channel ID where bot enter (false - disable / id - enable)
  1217.           * @default false
  1218.           */
  1219.                
  1220.                         'move_to_channel'                  => 17
  1221.                  
  1222. ];
  1223. $config[5]['options']    = [
  1224.                
  1225.             /**
  1226.          * @name Enable/Disable commands system in bot interface [Important: Look at the configuration config > connection > commands_mode]
  1227.          * @default false
  1228.          */
  1229.                  
  1230.                         'enable_commands_system' => true,
  1231.                        
  1232.                         'enable_plugins_and_events_system' => false,
  1233.                        
  1234.                 /**
  1235.          * @name Enable/Disable mysql system
  1236.          * @default true
  1237.          */
  1238.                
  1239.                         'enable_database'                                  => false,
  1240.                        
  1241.                 /**
  1242.          * @name Bot idle time before do next tasks
  1243.          * @default 1
  1244.          */    
  1245.                  
  1246.                         'idle_seconds'                     => 1
  1247.                
  1248. ];
  1249. $config[5]['commands'] = [
  1250.                 /**
  1251.          * @name Disabled commands
  1252.          * @format 'simpleCommand'
  1253.          */
  1254.          
  1255.             'disable_commands' => [],
  1256.  
  1257.         /**
  1258.          * @name Specyfic command configuration
  1259.          */
  1260.        
  1261.             'commands_configs' => [
  1262.                                
  1263.                 'moveclient' => [
  1264.                                         'groups' => [9, 81],
  1265.                                         'help' => 'Komenda przenosi uĹĽytkownika na TwĂłj kanaĹ‚.',
  1266.                                         'usage' => '<numer uĹĽytkownika>'
  1267.                                 ],
  1268.                                
  1269.                 'gotoclient' => [
  1270.                                         'groups' => [9, 81],
  1271.                                         'blocked_channels' => [],
  1272.                                         'help' => 'Komenda przenosi CiÄ™ na kanaĹ‚ uĹĽytkownika.',
  1273.                                         'usage' => '<numer uĹĽytkownika>'
  1274.                                 ],
  1275.                                
  1276.                 'meeting' => [
  1277.                                         'groups' => [9, 81],
  1278.                                         'move_groups' => [9, 81, 82],
  1279.                                         'meeting_channel' => 16,
  1280.                                         'help' => 'Komenda przenosi wszystkich administratorĂłw na okreĹ›lony kanaĹ‚.',
  1281.                                         'usage' => ''
  1282.                                 ],
  1283.                                
  1284.                 'adminsonline' => [
  1285.                                         'groups' => [9, 81],
  1286.                                         'admin_groups' => [9, 81, 82],
  1287.                                         'help' => 'Komenda wyĹ›wietla listÄ™ administratorĂłw online.',
  1288.                                         'usage' => ''
  1289.                                 ],
  1290.                                
  1291.                 'channellist' => [
  1292.                                         'groups' => [9, 81],
  1293.                                         'help' => 'Komenda wyĹ›wietla listÄ™ kanaĹ‚Ăłw.',
  1294.                                         'usage' => ''
  1295.                                 ],
  1296.                                
  1297.                 'clientlist' => [
  1298.                                         'groups' => [9, 81],
  1299.                                         'help' => 'Komenda wyĹ›wietla listÄ™ uĹĽytkownikĂłw wraz z dodatkowymi danymi.',
  1300.                                         'usage' => ''
  1301.                                 ],
  1302.                                
  1303.                 'commands' => [
  1304.                                         'groups' => [9, 81],
  1305.                                         'help' => 'Komenda wyĹ›wietla informacje o dostÄ™pnych komendach.',
  1306.                                         'usage' => ''
  1307.                                 ],
  1308.                                
  1309.                 'memory' => [
  1310.                                         'groups' => [9, 81],
  1311.                                         'help' => 'Komenda pokazuje aktualny stan uĹĽywanej pamiÄ™ci przez aplikacje.',
  1312.                                         'usage' => ''
  1313.                                 ],
  1314.                                
  1315.                 'findclients' => [
  1316.                                         'groups' => [9, 81],
  1317.                                         'help' => 'Komenda wyszukuje uĹĽytkownika ktĂłrego nazwa zawiera frazÄ™ z parametru.',
  1318.                                         'usage' => '<filtr>'
  1319.                                 ],
  1320.                                
  1321.                 'pwall' => [
  1322.                                         'groups' => [9, 81],
  1323.                                         'help' => 'Komenda wysyĹ‚a wiadomość prywatnÄ… do wszystkich uĹĽytkownikĂłw serwera o danej treĹ›ci.',
  1324.                                         'usage' => '<wiadomość>'
  1325.                                 ],
  1326.                                
  1327.                                 'pwToGroup' => [
  1328.                                         'groups' => [9, 81],
  1329.                                         'help' => 'Komenda wysyĹ‚a wiadomość prywatnÄ… do wszystkich uĹĽytkownikĂłw w podanej grupie',
  1330.                                         'usage' => '<wiadomość>'
  1331.                                 ],
  1332.                                
  1333.                                 'pokeToGroup' => [
  1334.                                         'groups' => [9, 81],
  1335.                                         'help' => 'Komenda wysyĹ‚a poke do wszystkich uĹĽytkownikĂłw w podanej grupie.',
  1336.                                         'usage' => '<wiadomość>'
  1337.                                 ],
  1338.                                
  1339.                                 'pwToAdmin' => [
  1340.                                         'groups' => [9, 81],
  1341.                                         'admin_group' => [9, 81, 82],
  1342.                                         'help' => 'Komenda wysyĹ‚a wiadomość prywatnÄ… do wszystkich adminĂłw',
  1343.                                         'usage' => '<wiadomość>'
  1344.                                 ],
  1345.                                
  1346.                                 'pokeToAdmin' => [
  1347.                                         'groups' => [9, 81],
  1348.                                         'admin_group' => [9, 81, 82],
  1349.                                         'help' => 'Komenda wysyĹ‚a poke do wszystkich adminĂłw.',
  1350.                                         'usage' => '<wiadomość>'
  1351.                                 ],
  1352.                                
  1353.                                 'pokeall' => [
  1354.                                         'groups' => [9, 81],
  1355.                                         'help' => 'Komenda wysyĹ‚a poke do wszystkich uĹĽytkownikĂłw serwera.',
  1356.                                         'usage' => '<wiadomość>'
  1357.                                 ],
  1358.                                
  1359.                                 'bot' => [
  1360.                                         'groups' => [9, 81],
  1361.                                         'help' => 'Komenda wysyĹ‚a poke do wszystkich uĹĽytkownikĂłw serwera.',
  1362.                                         'usage' => '<wiadomość>'
  1363.                                 ],
  1364.                                
  1365.                                 'bingo' => [
  1366.                                         'groups' => [9, 81],
  1367.                                         'help' => '',
  1368.                                         'usage' => ''
  1369.                                 ],
  1370.                                
  1371.                                 'trueOrfalse' => [
  1372.                                         'groups' => [9, 81],
  1373.                                         'pytania' => [
  1374.                                                 1 => [
  1375.                                                         'typ' => 'Prawdziwe',
  1376.                                                         'pytanie' => 'PrzykĹ‚adowe pytanie1'
  1377.                                                 ],
  1378.                                                 2 => [
  1379.                                                         'typ' => 'FaĹ‚szywe',
  1380.                                                         'pytanie' => 'PrzykĹ‚adowe pytanie2'
  1381.                                                 ],
  1382.                                                 3 => [
  1383.                                                         'typ' => 'FaĹ‚szywe',
  1384.                                                         'pytanie' => 'PrzykĹ‚adowe pytanie3'
  1385.                                                 ],
  1386.                                         ],
  1387.                                         'help' => '!trueOrFalse',
  1388.                                         'usage' => '<wiadomość>'
  1389.                                 ],
  1390.             ]
  1391. ];
  1392. /** end of adds configuration **/
  1393. /** Bot id 6 configuration **/ 
  1394. $config[6]['connection'] = [
  1395.                 /**
  1396.          * @name TeamSpeak3 Server IP Adress
  1397.          * @format 0.0.0.0
  1398.          */
  1399.                  
  1400.                         'server_ip'                        => '127.0.0.1',
  1401.                        
  1402.                 /**
  1403.          * @name TeamSpeak3 Server Query Port
  1404.          * @default 10011
  1405.          */    
  1406.                         'server_query_port'                => 10011,
  1407.                        
  1408.                 /**
  1409.          * @name TeamSpeak3 Server ID
  1410.          * @default 1
  1411.          */    
  1412.                  
  1413.                         'server_id'                        => 1,
  1414.                        
  1415.                 /**
  1416.           * @name TeamSpeak3 Server Query Login
  1417.           * @default serveradmin
  1418.           */
  1419.                  
  1420.                         'server_query_login'               => 'serveradmin',
  1421.                        
  1422.                 /**
  1423.           * @name TeamSpeak3 Server Query Password
  1424.                   */   
  1425.                  
  1426.                         'server_query_password'            => '***',
  1427.                        
  1428.                        
  1429.                 /**
  1430.           * @name Enable/Disable commands mode in TeamSpeak3 Query [Important: Look at the configuration config > options > enable_commands_system]
  1431.           * @default false
  1432.           */
  1433.                  
  1434.                         'commands_mode'                    => false,
  1435.                        
  1436.                 /**
  1437.           * @name There you can change bot nickname
  1438.           * @default mBot Premium
  1439.           */
  1440.                  
  1441.                         'bot_name'                         => [
  1442.                                 'name' => 'Premium Instance',
  1443.                                 'prefix' => 1, #Avaliable: 1: m-bot, 2: mbot, 3: MBOT, 4: k-scripts, 5: ts-mbot
  1444.                         ],
  1445.                        
  1446.                
  1447.                 /**
  1448.           * @name Channel ID where bot enter (false - disable / id - enable)
  1449.           * @default false
  1450.           */
  1451.                
  1452.                         'move_to_channel'                  => 17,
  1453.          
  1454. ];
  1455. $config[6]['options']    = [
  1456.        
  1457.             /**
  1458.          * @name Enable/Disable commands system in bot interface [Important: Look at the configuration config > connection > commands_mode]
  1459.          * @default false
  1460.          */
  1461.                  
  1462.                         'enable_plugins_and_events_system' => true,
  1463.                        
  1464.                 /**
  1465.          * @name Enable/Disable mysql system
  1466.          * @default true
  1467.          */
  1468.                
  1469.                         'enable_database'                                  => true,
  1470.                        
  1471.                 /**
  1472.          * @name The folder name from the events and plugins
  1473.          * @default FirstInstance
  1474.          */    
  1475.                        
  1476.                         'folder_name'                                      => 'PremiumInstance',
  1477.                        
  1478.                 /**
  1479.          * @name Bot idle time before do next tasks
  1480.          * @default 1
  1481.          */    
  1482.                  
  1483.                         'idle_seconds'                     => 5,
  1484.                        
  1485.                             /**
  1486.          * @name Enable/Disable commands system in bot interface [Important: Look at the configuration config > connection > commands_mode]
  1487.          * @default false
  1488.          */
  1489.                  
  1490.                         'enable_commands_system' => false
  1491.                
  1492. ];
  1493.  
  1494. /** Mysql configuration **/    
  1495. $config[6]['db'] = [
  1496.  
  1497.         'host'                        => 'localhost',
  1498.         'user'                            => 'root',
  1499.         'pass'                        => 'siiWbx5cx12',
  1500.         'name'                        => 'mbot'
  1501.                  
  1502. ];
  1503. /** end of mysql configuartion **/     
  1504.        
  1505.        
  1506. $config[6]['plugins'] = [
  1507.        
  1508.                 /**
  1509.          * @name Dosabled plugins
  1510.          * @format 'simplePlugin'
  1511.          */
  1512.        
  1513.                         'ignored_plugins' => [],
  1514.                        
  1515.                 /**
  1516.          * @name Specyfic plugin configurations
  1517.          */    
  1518.  
  1519.                         'plugins_configs' => []
  1520. ];
  1521.        
  1522. $config[6]['events'] = [
  1523.        
  1524.                 /**
  1525.          * @name Dosabled events
  1526.          * @format 'simpleEvent'
  1527.          */
  1528.        
  1529.                         'ignored_events' => [],
  1530.  
  1531.                 /**
  1532.          * @name Specyfic events time configuration
  1533.          */    
  1534.                
  1535.                         'events_executes' => [
  1536.                        
  1537.                                 'Premium' => ['seconds' => 10, 'minutes' => 0, 'hours' => 0, 'days' => 0],
  1538.                                 'PremiumOnline' => ['seconds' => 0, 'minutes' => 2, 'hours' => 0, 'days' => 0],
  1539.                                 'PremiumAssets' => ['seconds' => 10, 'minutes' => 0, 'hours' => 0, 'days' => 0],
  1540.                                
  1541.                                 'VIP' => ['seconds' => 10, 'minutes' => 0, 'hours' => 0, 'days' => 0],
  1542.                                 'VIPOnline' => ['seconds' => 10, 'minutes' => 2, 'hours' => 0, 'days' => 0],
  1543.                                 'VIPAssets' => ['seconds' => 10, 'minutes' => 0, 'hours' => 0, 'days' => 0],
  1544.                                
  1545.                                 'YT' => ['seconds' => 10, 'minutes' => 0, 'hours' => 0, 'days' => 0],
  1546.                                 'YTSubs' => ['seconds' => 20, 'minutes' => 2, 'hours' => 0, 'days' => 0],
  1547.                                
  1548.                                 'chartsGenerator' => ['seconds' => 0, 'minutes' => 0, 'hours' => 1, 'days' => 0]
  1549.                         ],
  1550.                        
  1551.                 /**
  1552.           * @name Specyfic event configurations
  1553.           */
  1554.                        
  1555.                         'events_configs' => [
  1556.                        
  1557.                                 'Premium' => [
  1558.                                         'channel_name' => '[cspacer]⚊⚌☰   Premium [number]   ☰⚌⚊', # WyglÄ…d nazwy kanaĹ‚u
  1559.                                         'first_order' => 172, # Pierszy kanaĹ‚ odpowiadajÄ…cy za strefÄ™ kanaĹ‚Ăłw premium
  1560.                                         'source_group_id' => 3411, # Numery grupy, ktĂłry bÄ™dzie kopiowany
  1561.                     'max_subchannels' => 7, # Ilość podkanaĹ‚Ăłw
  1562.                                         'channel_codec' => 4, # Numer kodeku kanaĹ‚u. DomyĹ›lnie: Opus Voice
  1563.                                         'channel_codec_level' => 10,  # Numer wartoĹ›ci kodeku. DomyĹ›lnie: 10 (estimated bitrate: 7.71 KiB/s)
  1564.                                         'channel_admin_group_id' => 15, # Grupa kanaĹ‚owa, ktĂłra ma zostać nadana
  1565.                                         'onClientAreOnChannel' => [78], # KanaĹ‚ odpowiadajÄ…cy za tworzenie kanaĹ‚u
  1566.                                 ],
  1567.                                
  1568.                                 'PremiumOnline' => [
  1569.                                         'up_description' => '\n [center][size=11][b]Strefa Premium[/center]\n\n[center]', # NagĹ‚owek
  1570.                                         'name' => 'oÉ´lιɴe: [online]/[all]' # WygĹ‚Ä…d nazwy kanaĹ‚u
  1571.                                 ],
  1572.                                
  1573.                                 'VIP' => [
  1574.                                         'channel_name' => '[cspacer]⚊⚌☰   VIP [number]   ☰⚌⚊', # WyglÄ…d nazwy kanaĹ‚u
  1575.                                         'first_order' => 3098, # Pierszy kanaĹ‚ odpowiadajÄ…cy za strefÄ™ kanaĹ‚Ăłw premium
  1576.                                         'source_group_id' => 3570, # Numery grupy, ktĂłry bÄ™dzie kopiowany
  1577.                     'max_subchannels' => 5, # Ilość podkanaĹ‚Ăłw
  1578.                                         'channel_codec' => 4, # Numer kodeku kanaĹ‚u. DomyĹ›lnie: Opus Voice
  1579.                                         'channel_codec_level' => 10,  # Numer wartoĹ›ci kodeku. DomyĹ›lnie: 10 (estimated bitrate: 7.71 KiB/s)
  1580.                                         'channel_admin_group_id' => 15, # Grupa kanaĹ‚owa, ktĂłra ma zostać nadana
  1581.                                         'onClientAreOnChannel' => [81], # KanaĹ‚ odpowiadajÄ…cy za tworzenie kanaĹ‚u
  1582.                                 ],
  1583.                                
  1584.                                 'VIPOnline' => [
  1585.                                         'up_description' => '\n [center][size=11][b]Strefa VIP[/center]\n\n[center]', # NagĹ‚owek
  1586.                                         'name' => 'oÉ´lιɴe: [online]/[all]' # WygĹ‚Ä…d nazwy kanaĹ‚u
  1587.                                 ],
  1588.                                
  1589.                                 'YT' => [
  1590.                                         'channel_name' => '[cspacer]⚊⚌☰   YouTube [number]   ☰⚌⚊', # WyglÄ…d nazwy kanaĹ‚u
  1591.                                         'first_order' => 6464, # Pierszy kanaĹ‚ odpowiadajÄ…cy za strefÄ™ kanaĹ‚Ăłw premium
  1592.                     'max_subchannels' => 3, # Ilość podkanaĹ‚Ăłw
  1593.                                         'channel_codec' => 4, # Numer kodeku kanaĹ‚u. DomyĹ›lnie: Opus Voice
  1594.                                         'channel_codec_level' => 10,  # Numer wartoĹ›ci kodeku. DomyĹ›lnie: 10 (estimated bitrate: 7.71 KiB/s)
  1595.                                         'channel_admin_group_id' => 15, # Grupa kanaĹ‚owa, ktĂłra ma zostać nadana
  1596.                                         'onClientAreOnChannel' => [80], # KanaĹ‚ odpowiadajÄ…cy za tworzenie kanaĹ‚u
  1597.                                 ],
  1598.                                
  1599.                                 'YTSubs' => ['name' => '[data] ѕυв'],
  1600.                                
  1601.                                 'chartsGenerator' => [
  1602.                     'checker_type' => 'charts',
  1603.                                         'file_path' => '/var/www/charts/',
  1604.                                         'ignored_channels' => []
  1605.                 ],
  1606.                         ]
  1607. ];
  1608. /** end of adds configuration **/
  1609. ?>