• If you need help or want to discuss things, you now can also join us on our Discord Server!
  • A first preview of the unlimited version of SinusBot can be found in the Upcoming Changes thread. A version for Windows will follow, but we don't have a release date, yet.
Default-Channel+

TS3 Default-Channel+ 1.2.0

No permission to download

Reviews 3.75 star(s) 11 reviews

Works, but has a bug when combined with scripts, which move the bot just like "Follow Me", that it moves the bot to the default channel, once one switches channels. Especially with timeouts. The workaround is to add this for the move code around line 111

var timeout = 100;
if(config.waitSomeTime){
timeout = 1000 * (config.time || 1)
}

clearTimeout(timeMove);
timeMove = setTimeout(function(){
if(checkIfEmpty(backend.getCurrentChannel())){
moveBack();
}
}, timeout);

This adds at least a timeout of 100 ms (to allow all other scripts to move the bot around before firering the "move to default channel" code) and checks again if the current channel is empty, before executing the routine.

I would have actually created a pull request, but it looks like this script is not in your github repos.

Feel free to add this
The script is good, the only problem is if a client disconnect from the channel, in that case the bot doesn't return
Back
Top Bottom