Skip to content

Latest commit

 

History

History
32 lines (26 loc) · 442 Bytes

usdseekto.md

File metadata and controls

32 lines (26 loc) · 442 Bytes

$seekTo

This function seeks to a the specified duration of the song

$seekTo[seconds]
bot.command({
name: "seek",
code: `
$seekTo[5]
`
//This skips to the 5 second mark of the song
//$skipTo[50] would skip to the 50 second mark of the song
})

Seek with user input

bot.command({
name: "seek",
code: `
$seekTo[$message]
`
//Usage - !seek 28
//This would seek to the 28 mark of the song
})