-
I would like to be able to skip a N number of tracks in the queue and move them to history instead of deleting them. Or better jump at the index in queue and move everything behind it to history. Is there a way to do this? From looking into documentation I didn't find a method like that but I might be just blind. PS: don't like the idea to call skip in a loop for N times |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Well iirc there is no method like that. |
Beta Was this translation helpful? Give feedback.
Well, track_start event ONLY triggers when bot plays something with
Player.play
and you do it for the first time and while autoplay is enabled, library does it for you which triggers track_start even though you are not callingplay
method.Queue.get()
Only gets next song from queue andputs in history, it has nothing to do with the API. And thus, it doesn't trigger track_start event, give yourself a try!Update: was bit wrong about putting tracks to history while getting track from queue. You have to put track to history manually by using
Queue.history.put()