Help with M3U playlist

Hello, is there a way to get around the sequence requirement?

This is a normal working M3U;

#EXTM3U
#EXT-X-VERSION:3
#EXT-X-MEDIA-SEQUENCE:2055
#EXTINF:120,
segment280715412_02055.ts
#EXTINF:120,
segment280715412_02056.ts

BUT my Video links I have to add, I cannot have it Sequence. My links are like;

#EXTM3U
#EXT-X-VERSION:3
#EXT-X-MEDIA-SEQUENCE:0
#EXTINF:120,
http://www.server.com/master.m3u8?id=2346qwc54765bcw
#EXTINF:120,
http://www.server.com/master.m3u8?id=565n4g45745gssxc

So how can I make this work? Can I add a Sequence number somewhere else in the file that doesn’t interfere with the video links? like;

#EXTM3U
#EXT-X-VERSION:3
#EXT-X-MEDIA-SEQUENCE:0
#EXTINF:120, : Sequence 0
http://www.server.com/master.m3u8?id=2346qwc54765bcw
#EXTINF:120, : Sequence 1
http://www.server.com/master.m3u8?id=565n4g45745gssxc

What I need to happen is that once the first video is done, to automatically fail over to the next one in the list.
Does this happen automatically and I don’t need to use Sequence in the first place? I just don’t want them to get our of order when the previous one is done.

Thank you