Channel bot, what this problem?

szmekk

Active Member
May 27, 2016
67
7
83
Hi guys, I upload the Channel Creator script but not working or what this problem?
Indicates that bot started, but not working, not login the Query..

<?php

######Server
/* Server IP */ $teamspeak['address'] = 'Address';
/* UDP Port */ $teamspeak['udp'] = '9987';
/* Query Port */ $teamspeak['tcp'] = '10011';
/* Query login */ $teamspeak['login'] = 'serveradmin';
/* Query pass */ $teamspeak['password'] = 'Password';
/* Bot nickname */ $bot['name'] = 'endChannelBot';
/* Bot default channel */ $bot['default_channel'] = 15;
/* Server ID */ $default = 1;

#######Config
/* Your TimeZone */ $timezone = 'Europe/Budapest';
/* Rank to create channel */ $createChannel = array(26);
/* Main Channel */ $GlobalChannel = 58;
/* Channel Admin Gruop */ $cadminGruop = 5;
/* Message To user */ $infotoUser = 'Átkerültél az új szobádba!';

#######Channel
/* Default Channel Name */ $NameChannel = 'Új szoba';
/* Channel Topic */ $cTopic = 'Téma változtatása itt.';
/* Codeck 4 = Voice */ $CHcodec = 4;
/* Quality */ $CHquality = 6;
/* Channel Desc1 */ $cDesc['Title'] = "Privát Szoba\n\n";

/* Channel Desc2 */ $cDesc['Number'] = "Szobák száma:";
/* Channel Desc3 */ $cDesc['User'] = "Szoba Tulajdonos:";
/* Channel Desc4 */ $cDesc['Date'] = "Készítve:";
/* Channel Desc5 */ $cDesc['Info'] = "\n\n Információ a felhasználóról";

#######SubChannel
/* NameSubChannel */ $nameSubChannels = "Alszoba";
/* How many Subchannels */ $SubChannels = 2;
/* Codeck 4 = Voice */ $SCHcodec = 6;
/* Quality */ $SCHquality = 6;

?>
 

FarisDev

L oryh brx
Contributor
Jun 9, 2016
277
111
107
Hi guys, I upload the Channel Creator script but not working or what this problem?
Indicates that bot started, but not working, not login the Query..

<?php

######Server
/* Server IP */ $teamspeak['address'] = 'Address';
/* UDP Port */ $teamspeak['udp'] = '9987';
/* Query Port */ $teamspeak['tcp'] = '10011';
/* Query login */ $teamspeak['login'] = 'serveradmin';
/* Query pass */ $teamspeak['password'] = 'Password';
/* Bot nickname */ $bot['name'] = 'endChannelBot';
/* Bot default channel */ $bot['default_channel'] = 15;
/* Server ID */ $default = 1;

#######Config
/* Your TimeZone */ $timezone = 'Europe/Budapest';
/* Rank to create channel */ $createChannel = array(26);
/* Main Channel */ $GlobalChannel = 58;
/* Channel Admin Gruop */ $cadminGruop = 5;
/* Message To user */ $infotoUser = 'Átkerültél az új szobádba!';

#######Channel
/* Default Channel Name */ $NameChannel = 'Új szoba';
/* Channel Topic */ $cTopic = 'Téma változtatása itt.';
/* Codeck 4 = Voice */ $CHcodec = 4;
/* Quality */ $CHquality = 6;
/* Channel Desc1 */ $cDesc['Title'] = "Privát Szoba\n\n";

/* Channel Desc2 */ $cDesc['Number'] = "Szobák száma:";
/* Channel Desc3 */ $cDesc['User'] = "Szoba Tulajdonos:";
/* Channel Desc4 */ $cDesc['Date'] = "Készítve:";
/* Channel Desc5 */ $cDesc['Info'] = "\n\n Információ a felhasználóról";

#######SubChannel
/* NameSubChannel */ $nameSubChannels = "Alszoba";
/* How many Subchannels */ $SubChannels = 2;
/* Codeck 4 = Voice */ $SCHcodec = 6;
/* Quality */ $SCHquality = 6;

?>
do require_once command whats you using if u are using php framework Use.
require_once("libraries/TeamSpeak3/TeamSpeak3.php");
if u useing admin class do .
require_once("lib/ts3admin.class.php");
i hoppy thats work with you.
 

FarisDev

L oryh brx
Contributor
Jun 9, 2016
277
111
107
do you install php?
if u are installed it. update. PHP
and be sure all config.php codes is working like YATQA password ... and Port And Queryport...

i think u need to require once the config ... if it's not working!
can u test require_once 'config.php';
 
Last edited by a moderator:
Top