Channel name change bot

Reaxuse

Member
May 1, 2016
2
1
38
I can't find the bot files you see in the picture anywhere, the purpose of the bot is to change the name of the channel you set and restore it. Anyone want to help me with this file?

hl.png
 

Ondra3211

Contributor
May 5, 2018
65
37
71
I don't know how to rename the spacer with one command. I don't know how to create the number in spacers 1 to X.
But you can rename all channels "manually"
PHP:
<?php
require_once("libraries/TeamSpeak3/TeamSpeak3.php");
try
{
      $ts3 = TeamSpeak3::factory("serverquery://serveradmin:[email protected]:10011/?server_port=9987&blocking=0");
      while(true){
          $channel = $ts3->channelGetById(948);
          $channel["channel_name"] = "[*spacer]██";
          sleep(2);
          $channel["channel_name"] = "[cspacer]Channel";
          sleep(60);
      }
}

catch(TeamSpeak3_Exception $e)
{
    echo "Error " . $e->getCode() . ": " . $e->getMessage();
}
?>

Edit: It's nice spam bot btw
 
Last edited:
Top