if(voiceChannel!==serverQueue.voiceChannel)returnmessage.channel.send(':x: I\'m sorry but you need to be in the same voice channel as Musix to seek the song!');
if(!message.member.roles.has(client.global.db.guilds[message.guild.id].djrole))returnmessage.channel.send(':x: You need the `DJ` role to seek the song!');
}elseif(!permissions.has('MANAGE_MESSAGES'))returnmessage.channel.send(':x: You need the `MANAGE_MESSAGES` permission to seek the song!');
if(!args[1])returnmessage.channel.send(`:x: Correct usage: \`${prefix}seek <seeking point in seconds>\``);
if(isNaN(args[1]))returnmessage.channel.send(':x: I\'m sorry, But you need to enter a valid __number__.');
constargsNumber=parseInt(args[1]);
if(argsNumber<0)returnmessage.channel.send(':x: The seeking point needs to be a positive number!');
if(argsNumber>data.length_seconds)returnmessage.channel.send(`:x: The lenght of this song is ${data.length_seconds} seconds! You can't seek further than that!`);