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

DE Hilfe bei Script erstellung

MCOdin5569

New Member
Ich habe gerade probiert ein Script zu erstellen, habe alles versucht, hat aber nicht geklappt! Ich wollte fragen, ob mir jemand eventuell bei meiner idee helfen kann

JavaScript:
registerPlugin({
    name: 'Übergang',
    version: '1.0.0',
    description: 'Song übergang Script',
    author: 'Odin',
    backends: ['ts3'],
    engine: '>=1.0.0',
    vars: [{
        name: 'transitionFile',
        title: 'Übergangs-MP3-Datei',
        type: 'string',
        default: 'uebergang.mp3'
    }]
}, (_, { transitionFile }) => {
    const event = require('event');

    event.on('trackEnd', ({ channel }) => {
        if (!channel) return;

        const playlist = channel.getPlaylist();
        if (!playlist || playlist.length === 0) return;

        channel.stop();
        channel.play(`audio/${transitionFile}`, false, () => {
            channel.playNext();
        });
    });
});

Es klappt nicht und wird auch nicht geloggt, das es aktiviert wird!
 
Back
Top Bottom