• 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.

Recent content by Gleydar

  1. Gleydar

    Bug Recording playback

    Hm, @flyth can you help us out maybe?
  2. Gleydar

    Bug Recording playback

    Operating System: Linux SinusBot Version: 0.9.18-8499d2c TS3 Version: 3.0.19.4 Problem Description When trying to record playback using audio.setAudioReturnChannel(true); and audio.startRecording(), I expected the bot to record audio input from users normally, next to anything the bot is...
  3. Gleydar

    Bug Recording Issue

    Okay, this doesn't seem to be a bug at all, just oddly connected behavior. You need to set EnableWebstream in the config.ini file to true, as the two functions are tied together. Thanks to flyth for his help!
  4. Gleydar

    Bug Recording Issue

    As I wrote in my updated version of the post, I already tried that approach :/ The bot seems to open and close the audio channels correctly, as it displays him recording/not recording on the server. Just, apparently, the data is not written to the file correctly, as it doesn't grow at all. Maybe...
  5. Gleydar

    Bug Recording Issue

    I tried to do it using the audio one, but that doesn't seem to work either, sadly :/ (It should still record the Bots audio, right?) event.on('chat', function(ev) { var users = config.AllowedUsers.split(","); if(ev.text == config.RecordingCmd) { for(var i = 0; i <...
  6. Gleydar

    Bug Recording Issue

    Hello, I have recently tried to implement recording on command with the bot. This is the basic Code I use so far: function(sinusbot, config) { var recording = false; var engine = require('engine'); var audio = require('audio'); var event = require('event')...
Top