Leiti 11 vastet.

ID Kanal Video Kustutatud Kuupäev Kirjeldus Subtiitrid Avalik Ülekanne HD URL PRIVATE TitleMUI_en TitleMUI_et KirjeldusMUI_en KirjeldusMUI_et Filename Category CategoryMUI_en Tags OdyseeURL KanalMUI_en KanalMUI_et Translated has_thumbnail local_stream ytdlp_meta est_subs eng_subs
616 Press any key to continue... Bad Apple, but it's in Flipnic (FMV replacement attempt) [PS2 Romhack] 0 2025-04-26 Through a very involved process, I was able to successfully play a custom video clip in Flipnic. The audio is stuttery for reasons I don't really understand yet, but I was able to have the game play back a custom video with alpha mask.

Steps that I took to replace the FMV:
1. Create an AVI video file with 256x512 resolution where the first half is RGB data and the second half is alpha mask.
2. Separate audio/video
3. Convert video to m2v with this ffmpeg command (currently only tested with low-res FMVs):
ffmpeg -i badapplefmv.avi -c:v mpeg2video -profile:v main -level:v 8 -b:v 4.531M -maxrate 5M -minrate 4.531M -bufsize 1835k -pix_fmt yuv420p -g 1 -bf 0 -flags +ildct+ilme -top 1 -r 50 -s 256x512 badapplefmv.m2v
4. Convert audio to WAV with these settings:
- PCM
- Signed 16-bit little endian
- 44.1 kHz
5. Convert WAV file to INT in MFAudio with these settings:
- [File format] RAW - Raw Sound Data - Compressed ADPCM
- Frequency: 44100Hz
- Interleave: 400 Bytes
- Samples: 16 bits
- Channels: 2 (Stereo)
6. Convert m2v video to .ipu using ps2str.exe
- IPU Convert (tab)
- Add your .m2v file
- Choose "MPEG Video Elementary Stream"
- Choose where the output file should be
- Press "Start"
- It may say bad video file, but in the end you should have an .ipu file regardless (just make sure it's bigger than a few kilobytes)
7. Patch the .ipu file using a hex editor
- Change first 4 bytes to 69 70 75 6D
- For hi-res FMVs: set bytes 8 to B as "00 02 C0 01" (width and height btw)
- For low-res FMVs: set bytes 8 to B as "00 01 00 02"
- At offset 0x0C, it should have 32-bit int corresponding to the number of frames in little endian byte order
- At offset 0x04, it should have the size of the file (including this patched header)
- At the end of the file, insert 8 bytes with the following values: "00 00 01 B0 00 00 01 B1"
8. Mux IPU and INT files
- Currently this relies on using an existing .PSS file (I used STAFF_ROLL1.PSS for this video)
- Replace the contents of the audio and video streams with the contents of INT and IPU files respectively. There is currently no other way to do this other than coding (I might release a tool that could do the patching and muxing for you).
9. Repack STR.BIN with the modified video file
- You can use FlipnicFS or FlipnicBinExtractor to do this
- You may want to replace an existing .PSS file
10. Replace STR.BIN in the ISO file
- I used Apache1.1 in this demonstration (ISO tools - Update selected file)
- You should backup the original ISO file first
11. Load the modified file in an emulator or OpenPS2Loader if you want to use original hardware
0 1 0 1 https://www.youtube.com/watch?v=FBDma-tPlJw 0 Bad Apple, but it's in Flipnic (FMV replacement attempt) [PS2 Romhack] Bad Apple, but it's in Flipnic (FMV replacement attempt) [PS2 Romhack] Through a very involved process, I was able to successfully play a custom video clip in Flipnic. The audio is stuttery for reasons I don't really understand yet, but I was able to have the game play back a custom video with alpha mask.

Steps that I took to replace the FMV:
1. Create an AVI video file with 256x512 resolution where the first half is RGB data and the second half is alpha mask.
2. Separate audio/video
3. Convert video to m2v with this ffmpeg command (currently only tested with low-res FMVs):
ffmpeg -i badapplefmv.avi -c:v mpeg2video -profile:v main -level:v 8 -b:v 4.531M -maxrate 5M -minrate 4.531M -bufsize 1835k -pix_fmt yuv420p -g 1 -bf 0 -flags +ildct+ilme -top 1 -r 50 -s 256x512 badapplefmv.m2v
4. Convert audio to WAV with these settings:
- PCM
- Signed 16-bit little endian
- 44.1 kHz
5. Convert WAV file to INT in MFAudio with these settings:
- [File format] RAW - Raw Sound Data - Compressed ADPCM
- Frequency: 44100Hz
- Interleave: 400 Bytes
- Samples: 16 bits
- Channels: 2 (Stereo)
6. Convert m2v video to .ipu using ps2str.exe
- IPU Convert (tab)
- Add your .m2v file
- Choose "MPEG Video Elementary Stream"
- Choose where the output file should be
- Press "Start"
- It may say bad video file, but in the end you should have an .ipu file regardless (just make sure it's bigger than a few kilobytes)
7. Patch the .ipu file using a hex editor
- Change first 4 bytes to 69 70 75 6D
- For hi-res FMVs: set bytes 8 to B as "00 02 C0 01" (width and height btw)
- For low-res FMVs: set bytes 8 to B as "00 01 00 02"
- At offset 0x0C, it should have 32-bit int corresponding to the number of frames in little endian byte order
- At offset 0x04, it should have the size of the file (including this patched header)
- At the end of the file, insert 8 bytes with the following values: "00 00 01 B0 00 00 01 B1"
8. Mux IPU and INT files
- Currently this relies on using an existing .PSS file (I used STAFF_ROLL1.PSS for this video)
- Replace the contents of the audio and video streams with the contents of INT and IPU files respectively. There is currently no other way to do this other than coding (I might release a tool that could do the patching and muxing for you).
9. Repack STR.BIN with the modified video file
- You can use FlipnicFS or FlipnicBinExtractor to do this
- You may want to replace an existing .PSS file
10. Replace STR.BIN in the ISO file
- I used Apache1.1 in this demonstration (ISO tools - Update selected file)
- You should backup the original ISO file first
11. Load the modified file in an emulator or OpenPS2Loader if you want to use original hardware
Through a very involved process, I was able to successfully play a custom video clip in Flipnic. The audio is stuttery for reasons I don't really understand yet, but I was able to have the game play back a custom video with alpha mask.

Steps that I took to replace the FMV:
1. Create an AVI video file with 256x512 resolution where the first half is RGB data and the second half is alpha mask.
2. Separate audio/video
3. Convert video to m2v with this ffmpeg command (currently only tested with low-res FMVs):
ffmpeg -i badapplefmv.avi -c:v mpeg2video -profile:v main -level:v 8 -b:v 4.531M -maxrate 5M -minrate 4.531M -bufsize 1835k -pix_fmt yuv420p -g 1 -bf 0 -flags +ildct+ilme -top 1 -r 50 -s 256x512 badapplefmv.m2v
4. Convert audio to WAV with these settings:
- PCM
- Signed 16-bit little endian
- 44.1 kHz
5. Convert WAV file to INT in MFAudio with these settings:
- [File format] RAW - Raw Sound Data - Compressed ADPCM
- Frequency: 44100Hz
- Interleave: 400 Bytes
- Samples: 16 bits
- Channels: 2 (Stereo)
6. Convert m2v video to .ipu using ps2str.exe
- IPU Convert (tab)
- Add your .m2v file
- Choose "MPEG Video Elementary Stream"
- Choose where the output file should be
- Press "Start"
- It may say bad video file, but in the end you should have an .ipu file regardless (just make sure it's bigger than a few kilobytes)
7. Patch the .ipu file using a hex editor
- Change first 4 bytes to 69 70 75 6D
- For hi-res FMVs: set bytes 8 to B as "00 02 C0 01" (width and height btw)
- For low-res FMVs: set bytes 8 to B as "00 01 00 02"
- At offset 0x0C, it should have 32-bit int corresponding to the number of frames in little endian byte order
- At offset 0x04, it should have the size of the file (including this patched header)
- At the end of the file, insert 8 bytes with the following values: "00 00 01 B0 00 00 01 B1"
8. Mux IPU and INT files
- Currently this relies on using an existing .PSS file (I used STAFF_ROLL1.PSS for this video)
- Replace the contents of the audio and video streams with the contents of INT and IPU files respectively. There is currently no other way to do this other than coding (I might release a tool that could do the patching and muxing for you).
9. Repack STR.BIN with the modified video file
- You can use FlipnicFS or FlipnicBinExtractor to do this
- You may want to replace an existing .PSS file
10. Replace STR.BIN in the ISO file
- I used Apache1.1 in this demonstration (ISO tools - Update selected file)
- You should backup the original ISO file first
11. Load the modified file in an emulator or OpenPS2Loader if you want to use original hardware
2025-04-26 16-12-25.mkv Videomängude analüüs Video game analysis N/A Press any key to continue... Press any key to continue... 0 /channel_db_lite/web/thumbs/616.jpg N/A N/A N/A N/A
568 MarkusTegelane++ Light OS with draggable windows is really broken [Fun Experiments 0x00] 0 2024-03-15 For this video, I added window movement to Light OS just for fun. All I did was add two custom macros and PPTGames Cursor API to be able to drag a window around. Then I grouped shapes which are related to the window I wanted to move as "RegularApp:1" and added a hidden shape "MoveEvent", which would store the current state of window movement as a global variable. Finally, I added a mouse hover action to the titlebar, which points to the MovableWindow macro.

I am not making the .ppsm file, because a lot of stuff is broken, however you can find the macro I added in this secret gist: https://gist.github.com/MarkusMaal/a9d56efc5433a5ac1821adcf43cf9235

There are several reasons why this doesn't really work all that well and would require some serious reworks, some of which being the following:
1. There are custom animations which don't play, because in order to make the window draggable, I had to group all of the shapes in it
2. All slides have a reveal transition, which make window movement jittery (would need to be disabled if windows are being moved, but I didn't do it for this proof of concept video)
3. Appear/disappear animations would need to be implemented programmatically for shapes, which appear from trigger animations to stay on screen (these include volume test, power controls and opaque backdrop)
4. ActiveX controls don't disappear and don't get replaced by placeholders, meaning they stay on screen, flickering and being on top of the window, staying in one place.
5. The close button is on top of the area, where the mouse hover trigger for window movement is. This means that it might be difficult to click that button, as the Cursor API might think there is window movement going on. Easy fix would be to introduce a sort of "deadzone" where the hover trigger isn't active.
6. There is no multi-tasking, since windows appear on separate slides
7. Sound clips would have to be disabled, while the window is being moved

All of these issues are addressed in my next upcoming PowerPoint OS (Codename OrangePath), which was designed from the ground up to have movable window capabilities and multitasking, so stay tuned...
0 1 0 1 https://www.youtube.com/watch?v=RwAvwf8xYeA 0 Light OS with draggable windows is really broken [Fun Experiments 0x00] Light OS with draggable windows is really broken [Fun Experiments 0x00] For this video, I added window movement to Light OS just for fun. All I did was add two custom macros and PPTGames Cursor API to be able to drag a window around. Then I grouped shapes which are related to the window I wanted to move as "RegularApp:1" and added a hidden shape "MoveEvent", which would store the current state of window movement as a global variable. Finally, I added a mouse hover action to the titlebar, which points to the MovableWindow macro.

I am not making the .ppsm file, because a lot of stuff is broken, however you can find the macro I added in this secret gist: https://gist.github.com/MarkusMaal/a9d56efc5433a5ac1821adcf43cf9235

There are several reasons why this doesn't really work all that well and would require some serious reworks, some of which being the following:
1. There are custom animations which don't play, because in order to make the window draggable, I had to group all of the shapes in it
2. All slides have a reveal transition, which make window movement jittery (would need to be disabled if windows are being moved, but I didn't do it for this proof of concept video)
3. Appear/disappear animations would need to be implemented programmatically for shapes, which appear from trigger animations to stay on screen (these include volume test, power controls and opaque backdrop)
4. ActiveX controls don't disappear and don't get replaced by placeholders, meaning they stay on screen, flickering and being on top of the window, staying in one place.
5. The close button is on top of the area, where the mouse hover trigger for window movement is. This means that it might be difficult to click that button, as the Cursor API might think there is window movement going on. Easy fix would be to introduce a sort of "deadzone" where the hover trigger isn't active.
6. There is no multi-tasking, since windows appear on separate slides
7. Sound clips would have to be disabled, while the window is being moved

All of these issues are addressed in my next upcoming PowerPoint OS (Codename OrangePath), which was designed from the ground up to have movable window capabilities and multitasking, so stay tuned...
For this video, I added window movement to Light OS just for fun. All I did was add two custom macros and PPTGames Cursor API to be able to drag a window around. Then I grouped shapes which are related to the window I wanted to move as "RegularApp:1" and added a hidden shape "MoveEvent", which would store the current state of window movement as a global variable. Finally, I added a mouse hover action to the titlebar, which points to the MovableWindow macro.

I am not making the .ppsm file, because a lot of stuff is broken, however you can find the macro I added in this secret gist: https://gist.github.com/MarkusMaal/a9d56efc5433a5ac1821adcf43cf9235

There are several reasons why this doesn't really work all that well and would require some serious reworks, some of which being the following:
1. There are custom animations which don't play, because in order to make the window draggable, I had to group all of the shapes in it
2. All slides have a reveal transition, which make window movement jittery (would need to be disabled if windows are being moved, but I didn't do it for this proof of concept video)
3. Appear/disappear animations would need to be implemented programmatically for shapes, which appear from trigger animations to stay on screen (these include volume test, power controls and opaque backdrop)
4. ActiveX controls don't disappear and don't get replaced by placeholders, meaning they stay on screen, flickering and being on top of the window, staying in one place.
5. The close button is on top of the area, where the mouse hover trigger for window movement is. This means that it might be difficult to click that button, as the Cursor API might think there is window movement going on. Easy fix would be to introduce a sort of "deadzone" where the hover trigger isn't active.
6. There is no multi-tasking, since windows appear on separate slides
7. Sound clips would have to be disabled, while the window is being moved

All of these issues are addressed in my next upcoming PowerPoint OS (Codename OrangePath), which was designed from the ground up to have movable window capabilities and multitasking, so stay tuned...
2024-03-15 21-10-42.mkv PowerPoint PowerPoint PPTOS,Light OS,PowerPoint OS,movable windows,draggable,droppable,VBA,Visual Basic for Applications,Microsoft PowerPoint,ppsm,Light OS Technologies,macro,scripting N/A MarkusTegelane++ MarkusTegelane++ 0 /channel_db_lite/web/thumbs/568.jpg N/A /channel_db_lite/web/json/568.json N/A N/A
509 Press any key to continue... Flipnic - Optics B (Hard difficulty gameplay) 0 2022-12-04 Since I haven't found a lot of good full stage playthrough videos on Flipnic, I've decided to upload some of my own gameplay!

As a challenge for myself, I've also cranked up the difficulty to hard, which reduces the number of balls to three with no continues (unless you get extra credits and balls of course), all ball saving bumpers are deactivated by default, and the number of bumper hits required to complete specific missions has also been increased.

It took me a long time to upload the Optics B gameplay, because my initial victory didn't have sound, so I had to beat it again (and this stage is really difficult).

At the minimum, to complete this stage, you have to do the following:
1. Hit a flying target to trigger a "Point of No Return" mission
2. Collect all of the rings required, which have been placed all around the stage (some rings are only at specific areas, such as Yellow, Magenta, and Cyan)
3. Go back to the spawn location, a multiball mission will then start
4. (Optional) Complete a required task for the multiball mission
5. Repeat steps 1-4 two more times
6. After completing the third multiball mission, you'll be teleported to a Zero Gravity mission area
7. (Optional) Try to hit projectiles within the time limit. Second to last particle shape is a stick figure and the final one is a combination of all the previous shapes. If you manage to do this, you'll be awarded with a neat cake cutscene and a bunch of bonus points. If you don't, you'll just recieve no bonus and the cutscene won't play, but you'll still unlock the next stage
8. (Optional) You'll now be teleported back to spawn. You can now complete any leftover yellow missions that you hadn't completed before, which allows you to maximize the score, before playing the next stage (after quitting the stage, the score gets locked, meaning you won't get any more points)
0 1 0 1 https://www.youtube.com/watch?v=VahRvD_2iyY 0 Flipnic - Optics B (Hard difficulty gameplay) . Since I haven't found a lot of good full stage playthrough videos on Flipnic, I've decided to upload some of my own gameplay!

As a challenge for myself, I've also cranked up the difficulty to hard, which reduces the number of balls to three with no continues (unless you get extra credits and balls of course), all ball saving bumpers are deactivated by default, and the number of bumper hits required to complete specific missions has also been increased.

It took me a long time to upload the Optics B gameplay, because my initial victory didn't have sound, so I had to beat it again (and this stage is really difficult).

At the minimum, to complete this stage, you have to do the following:
1. Hit a flying target to trigger a "Point of No Return" mission
2. Collect all of the rings required, which have been placed all around the stage (some rings are only at specific areas, such as Yellow, Magenta, and Cyan)
3. Go back to the spawn location, a multiball mission will then start
4. (Optional) Complete a required task for the multiball mission
5. Repeat steps 1-4 two more times
6. After completing the third multiball mission, you'll be teleported to a Zero Gravity mission area
7. (Optional) Try to hit projectiles within the time limit. Second to last particle shape is a stick figure and the final one is a combination of all the previous shapes. If you manage to do this, you'll be awarded with a neat cake cutscene and a bunch of bonus points. If you don't, you'll just recieve no bonus and the cutscene won't play, but you'll still unlock the next stage
8. (Optional) You'll now be teleported back to spawn. You can now complete any leftover yellow missions that you hadn't completed before, which allows you to maximize the score, before playing the next stage (after quitting the stage, the score gets locked, meaning you won't get any more points)
. FlipnicOpticsBHard.mp4 Muud mängimise videod Other gameplay videos N/A Press any key to continue... Press any key to continue... 0 /channel_db_lite/web/thumbs/509.jpg N/A /channel_db_lite/web/json/509.json N/A N/A
474 Press any key to continue... Flipnic - Biology B (Hard difficulty gameplay) 0 2022-07-28 Since I haven't found a lot of good full stage playthrough videos on Flipnic, I've decided to upload some of my own gameplay!

As a challenge for myself, I've also cranked up the difficulty to hard, which reduces the number of balls to three with no continues (unless you get extra credits and balls of course), all ball saving bumpers are deactivated by default, and the number of bumper hits required to complete specific missions has also been increased.

This time I'm playing the very first B-version of a stage in this game - Biology B. These secondary versions are mirrored and have modified textures and color pallettes. You need to complete these B-versions before unlocking the final stage, which is Geometry A.

At the minimum, to complete this stage, you have to do the following:
1. Get to the "Slot chance" area
2. Go to the right lane
3. Once you get to the middle section with the flipper, you need to aim for the lane on the left
4. Hit bumpers, until all of them have butterflies. This will complete the "Freeze Over" mission
5. Go back to the "Slot chance" area. You should now see 2 platforms. Try to make the ball jump over these ramps a certain number of times. If the counter reaches 0, the "Hidden path discovery" will start
6. Go up the mountain and collect all of the shiny coins. Once you reach the very top, the "Zero Gravity" mission will start.
7. (Optional) Try to hit projectiles within the time limit. Second to last particle shape is a stick figure and the final one is a combination of all the previous shapes. If you manage to do this, you'll be awarded with a neat cake cutscene and a bunch of bonus points. If you don't, you'll just recieve no bonus and the cutscene won't play, but you'll still unlock the next stage
8. (Optional) You'll now be teleported back to spawn. You can now complete any leftover yellow missions that you hadn't completed before, which allows you to maximize the score, before playing the next stage (after quitting the stage, the score gets locked, meaning you won't get any more points)
0 1 0 1 https://www.youtube.com/watch?v=cTGeJ3Yr3_c 0 . . Since I haven't found a lot of good full stage playthrough videos on Flipnic, I've decided to upload some of my own gameplay!

As a challenge for myself, I've also cranked up the difficulty to hard, which reduces the number of balls to three with no continues (unless you get extra credits and balls of course), all ball saving bumpers are deactivated by default, and the number of bumper hits required to complete specific missions has also been increased.

This time I'm playing the B-version of the Metallurgy stage. These secondary versions are mirrored and have modified textures and color pallettes. You need to complete these B-versions before unlocking the final stage, which is Geometry A.

At the minimum, to complete this stage, you have to do the following:
1. Go through the first lane after spawning on the stage
2. Take a color coded lane
3. If you chose the magenta lane, you'll end up in an area with a UFO trying to shoot lasers at you. Try to hit the purple circuit board certain number of times, which will complete the first "Move On" mission
4. Take the lane, which you just uncovered after completing this mission
5. You'll now be at another area. Try to hit another purple circuit board certain number of times, which will complete the second "Move On" mission
6. Take the lane, which you just uncovered
7. Go through the non-colorcoded lanes until you find a color-coded lane, which you haven't taken
8. If you chose the green lane, you'll end up in the air spinning around cylinders. If you press circle, you'll move forward in that direction
9. Take a specific path until you get to an area with four shafts. Hit one shaft while it's active to start a "Shut Down the Shafts" mission
10. Shut down all shafts within the time limit
11. Repeat steps 9-10
12. You can go back to the lane selection area if you go through a portal
13. Repeat step 7
14. If you chose the blue lane, you'll end up in another area, where a giant spider crab mini-boss spawns. If you hit the spider crab with the ball, you'll remove some of its health. Try to do this until the spider crab explodes. Then you can take a specific lane to go back
15. Take the non-colorcoded lanes until you get back to the spawn area.
16. Take the white lane, that was previously covered by a pillar before. This will start he "Zero gravity" mission
17. (Optional) Try to hit projectiles within the time limit. Second to last particle shape is a stick figure and the final one is a combination of all the previous shapes. If you manage to do this, you'll be awarded with a neat cake cutscene and a bunch of bonus points. If you don't, you'll just recieve no bonus and the cutscene won't play, but you'll still unlock the next stage
18. (Optional) You'll now be teleported back to spawn. You can now complete any leftover yellow missions that you hadn't completed before, which allows you to maximize the score, before playing the next stage (after quitting the stage, the score gets locked, meaning you won't get any more points)

P.S. I already finished the Optics B stage, but due to some garbage with pulseaudio, the recording was missing audio, which is really annoying. This means that it'll take some time before I can upload a finished Optics B run :(
. MetallurgyB_hard.mp4 Muud mängimise videod Other gameplay videos N/A Press any key to continue... Press any key to continue... 1 /channel_db_lite/web/thumbs/474.jpg N/A /channel_db_lite/web/json/474.json N/A N/A
467 Press any key to continue... Flipnic - Metallurgy A (Hard difficulty gameplay) 0 2022-07-25 Since I haven't found a lot of good full stage playthrough videos on Flipnic, I've decided to upload some of my own gameplay!

As a challenge for myself, I've also cranked up the difficulty to hard, which reduces the number of balls to three with no continues (unless you get extra credits and balls of course), all ball saving bumpers are deactivated by default, and the number of bumper hits required to complete specific missions has also been increased.

This time it's Metallurgy A, which is unlocked after defeating the first boss.

At the minimum, to complete this stage, you have to do the following:
1. Go through the first lane after spawning on the stage
2. Take a color coded lane
3. If you chose the magenta lane, you'll end up in an area with a UFO trying to shoot lasers at you. Try to hit the purple circuit board certain number of times, which will complete the first "Move On" mission
4. Take the lane, which you just uncovered after completing this mission
5. You'll now be at another area. Try to hit another purple circuit board certain number of times, which will complete the second "Move On" mission
6. Take the lane, which you just uncovered
7. Go through the non-colorcoded lanes until you find a color-coded lane, which you haven't taken
8. If you chose the green lane, you'll end up in the air spinning around cylinders. If you press circle, you'll move forward in that direction
9. Take a specific path until you get to an area with four shafts. Hit one shaft while it's active to start a "Shut Down the Shafts" mission
10. Shut down all shafts within the time limit
11. Repeat steps 9-10
12. You can go back to the lane selection area if you go through a portal
13. Repeat step 7
14. If you chose the blue lane, you'll end up in another area, where a giant spider crab mini-boss spawns. If you hit the spider crab with the ball, you'll remove some of its health. Try to do this until the spider crab explodes. Then you can take a specific lane to go back
15. Take the non-colorcoded lanes until you get back to the spawn area.
16. Take the white lane, that was previously covered by a pillar before. This will start he "Zero gravity" mission
17. (Optional) Try to hit projectiles within the time limit. Second to last particle shape is a stick figure and the final one is a combination of all the previous shapes. If you manage to do this, you'll be awarded with a neat cake cutscene and a bunch of bonus points. If you don't, you'll just recieve no bonus and the cutscene won't play, but you'll still unlock the next stage
18. (Optional) You'll now be teleported back to spawn. You can now complete any leftover yellow missions that you hadn't completed before, which allows you to maximize the score, before playing the next stage (after quitting the stage, the score gets locked, meaning you won't get any more points)
0 1 0 1 https://www.youtube.com/watch?v=pftgH8DNink 0 . . Since I haven't found a lot of good full stage playthrough videos on Flipnic, I've decided to upload some of my own gameplay!

As a challenge for myself, I've also cranked up the difficulty to hard, which reduces the number of balls to three with no continues (unless you get extra credits and balls of course), all ball saving bumpers are deactivated by default, and the number of bumper hits required to complete specific missions has also been increased.

This time it's Metallurgy A, which is unlocked after defeating the first boss.

At the minimum, to complete this stage, you have to do the following:
1. Go through the first lane after spawning on the stage
2. Take a color coded lane
3. If you chose the magenta lane, you'll end up in an area with a UFO trying to shoot lasers at you. Try to hit the purple circuit board certain number of times, which will complete the first "Move On" mission
4. Take the lane, which you just uncovered after completing this mission
5. You'll now be at another area. Try to hit another purple circuit board certain number of times, which will complete the second "Move On" mission
6. Take the lane, which you just uncovered
7. Go through the non-colorcoded lanes until you find a color-coded lane, which you haven't taken
8. If you chose the green lane, you'll end up in the air spinning around cylinders. If you press circle, you'll move forward in that direction
9. Take a specific path until you get to an area with four shafts. Hit one shaft while it's active to start a "Shut Down the Shafts" mission
10. Shut down all shafts within the time limit
11. Repeat steps 9-10
12. You can go back to the lane selection area if you go through a portal
13. Repeat step 7
14. If you chose the blue lane, you'll end up in another area, where a giant spider crab mini-boss spawns. If you hit the spider crab with the ball, you'll remove some of its health. Try to do this until the spider crab explodes. Then you can take a specific lane to go back
15. Take the non-colorcoded lanes until you get back to the spawn area.
16. Take the white lane, that was previously covered by a pillar before. This will start he "Zero gravity" mission
17. (Optional) Try to hit projectiles within the time limit. Second to last particle shape is a stick figure and the final one is a combination of all the previous shapes. If you manage to do this, you'll be awarded with a neat cake cutscene and a bunch of bonus points. If you don't, you'll just recieve no bonus and the cutscene won't play, but you'll still unlock the next stage
18. (Optional) You'll now be teleported back to spawn. You can now complete any leftover yellow missions that you hadn't completed before, which allows you to maximize the score, before playing the next stage (after quitting the stage, the score gets locked, meaning you won't get any more points)
. MetallurgyA_hard.mp4 Teised skriptimiskeeled Other gameplay videos N/A Press any key to continue... Press any key to continue... 1 /channel_db_lite/web/thumbs/467.jpg N/A /channel_db_lite/web/json/467.json N/A N/A
468 Press any key to continue... Flipnic - Biology A (Hard difficulty gameplay) 0 2022-07-25 Since I haven't found a lot of good full stage playthrough videos on Flipnic, I've decided to upload some of my own gameplay!

As a challenge for myself, I've also cranked up the difficulty to hard, which reduces the number of balls to three with no continues (unless you get extra credits and balls of course), all ball saving bumpers are deactivated by default, and the number of bumper hits required to complete specific missions has also been increased.

This time I'm playing the very first stage in this game - Biology A. It also has a little introduction sequence, which other stages don't have.

At the minimum, to complete this stage, you have to do the following:
1. Get to the "Slot chance" area
2. Go to the left lane
3. Once you get to the middle section with the flipper, you need to aim for the lane on the right
4. Hit bumpers, until all of them have butterflies. This will complete the "Freeze Over" mission
5. Go back to the "Slot chance" area. You should now see 2 platforms. Try to make the ball jump over these ramps a certain number of times. If the counter reaches 0, the "Hidden path discovery" will start
6. Go up the mountain and collect all of the shiny coins. Once you reach the very top, the "Zero Gravity" mission will start.
7. (Optional) Try to hit projectiles within the time limit. Second to last particle shape is a stick figure and the final one is a combination of all the previous shapes. If you manage to do this, you'll be awarded with a neat cake cutscene and a bunch of bonus points. If you don't, you'll just recieve no bonus and the cutscene won't play, but you'll still unlock the next stage
8. (Optional) You'll now be teleported back to spawn. You can now complete any leftover yellow missions that you hadn't completed before, which allows you to maximize the score, before playing the next stage (after quitting the stage, the score gets locked, meaning you won't get any more points)
0 1 0 1 https://www.youtube.com/watch?v=wwQiDW8WaDA 0 . . Since I haven't found a lot of good full stage playthrough videos on Flipnic, I've decided to upload some of my own gameplay!

As a challenge for myself, I've also cranked up the difficulty to hard, which reduces the number of balls to three with no continues (unless you get extra credits and balls of course), all ball saving bumpers are deactivated by default, and the number of bumper hits required to complete specific missions has also been increased.

This time I'm playing the very first stage in this game - Biology A. It also has a little introduction sequence, which other stages don't have.

At the minimum, to complete this stage, you have to do the following:
1. Get to the "Slot chance" area
2. Go to the left lane
3. Once you get to the middle section with the flipper, you need to aim for the lane on the right
4. Hit bumpers, until all of them have butterflies. This will complete the "Freeze Over" mission
5. Go back to the "Slot chance" area. You should now see 2 platforms. Try to make the ball jump over these ramps a certain number of times. If the counter reaches 0, the "Hidden path discovery" will start
6. Go up the mountain and collect all of the shiny coins. Once you reach the very top, the "Zero Gravity" mission will start.
7. (Optional) Try to hit projectiles within the time limit. Second to last particle shape is a stick figure and the final one is a combination of all the previous shapes. If you manage to do this, you'll be awarded with a neat cake cutscene and a bunch of bonus points. If you don't, you'll just recieve no bonus and the cutscene won't play, but you'll still unlock the next stage
8. (Optional) You'll now be teleported back to spawn. You can now complete any leftover yellow missions that you hadn't completed before, which allows you to maximize the score, before playing the next stage (after quitting the stage, the score gets locked, meaning you won't get any more points)
. BiologyA_hard.mp4 Muud mängimise videod Other gameplay videos N/A Press any key to continue... Press any key to continue... 1 /channel_db_lite/web/thumbs/468.jpg N/A /channel_db_lite/web/json/468.json N/A N/A
463 Press any key to continue... Flipnic - Optics A (Hard difficulty gameplay) 0 2022-07-24 Since I haven't found a lot of good full stage playthrough videos on Flipnic, I've decided to upload some of my own gameplay!

As a challenge for myself, I've also cranked up the difficulty to hard, which reduces the number of balls to three with no continues (unless you get extra credits and balls of course), all ball saving bumpers are deactivated by default, and the number of bumper hits required to complete specific missions has also been increased.

I've decided to go with Optics A first, because it's my favorite stage in this game and I've praticed a lot on it.

At the minimum, to complete this stage, you have to do the following:
1. Hit a flying target to trigger a "Point of No Return" mission
2. Collect all of the rings required, which have been placed all around the stage (some rings are only at specific areas, such as Yellow, Magenta, and Cyan)
3. Go back to the spawn location, a multiball mission will then start
4. (Optional) Complete a required task for the multiball mission
5. Repeat steps 1-4 two more times
6. After completing the third multiball mission, you'll be teleported to a Zero Gravity mission area
7. (Optional) Try to hit projectiles within the time limit. Second to last particle shape is a stick figure and the final one is a combination of all the previous shapes. If you manage to do this, you'll be awarded with a neat cake cutscene and a bunch of bonus points. If you don't, you'll just recieve no bonus and the cutscene won't play, but you'll still unlock the next stage
8. (Optional) You'll now be teleported back to spawn. You can now complete any leftover yellow missions that you hadn't completed before, which allows you to maximize the score, before playing the next stage (after quitting the stage, the score gets locked, meaning you won't get any more points)
0 1 0 1 https://www.youtube.com/watch?v=XudtUvFv-r8 0 . . Since I haven't found a lot of good full stage playthrough videos on Flipnic, I've decided to upload some of my own gameplay!

As a challenge for myself, I've also cranked up the difficulty to hard, which reduces the number of balls to three with no continues (unless you get extra credits and balls of course), all ball saving bumpers are deactivated by default, and the number of bumper hits required to complete specific missions has also been increased.

I've decided to go with Optics A first, because it's my favorite stage in this game and I've praticed a lot on it.

At the minimum, to complete this stage, you have to do the following:
1. Hit a flying target to trigger a "Point of No Return" mission
2. Collect all of the rings required, which have been placed all around the stage (some rings are only at specific areas, such as Yellow, Magenta, and Cyan)
3. Go back to the spawn location, a multiball mission will then start
4. (Optional) Complete a required task for the multiball mission
5. Repeat steps 1-4 two more times
6. After completing the third multiball mission, you'll be teleported to a Zero Gravity mission area
7. (Optional) Try to hit projectiles within the time limit. Second to last particle shape is a stick figure and the final one is a combination of all the previous shapes. If you manage to do this, you'll be awarded with a neat cake cutscene and a bunch of bonus points. If you don't, you'll just recieve no bonus and the cutscene won't play, but you'll still unlock the next stage
8. (Optional) You'll now be teleported back to spawn. You can now complete any leftover yellow missions that you hadn't completed before, which allows you to maximize the score, before playing the next stage (after quitting the stage, the score gets locked, meaning you won't get any more points)
. OpticsA_hard.mp4 Muud mängimise videod Other gameplay videos N/A Press any key to continue... Press any key to continue... 1 /channel_db_lite/web/thumbs/463.jpg N/A /channel_db_lite/web/json/463.json N/A N/A
397 Press any key to continue... Unknown music on my hard drive 0 2021-10-29 This is a compilation of music that I have on my hard drive that I haven't been able to find much info about (because I don't know the song names). I uploaded this for both your enjoyment and in hopes that Content ID might pick something up... 0 1 0 1 https://www.youtube.com/watch?v=F2WdXYgvtvk 0 . . This is a compilation of music that I have on my hard drive that I haven't been able to find much info about (because I don't know the song names). I uploaded this for both your enjoyment and in hopes that Content ID might pick something up...

0:00 #1
0:30 #2
2:45 #3
3:35 #4
3:50 #5
4:50 #6
5:05 #7
5:25 #8
5:56 #9
6:43 #10
7:02 #11
7:21 #12
7:36 #13
8:57 #14
10:55 #15
12:29 #16
12:42 #17
12:58 #18
13:07 #19
13:17 #20
13:32 #21
13:52 #22
14:04 #23
14:24 #24
15:09 #25
15:54 #26
17:07 #27
17:20 #28
18:20 #29
20:30 #30
. unknown_songs.webm Muusika Music N/A Press any key to continue... Press any key to continue... 1 /channel_db_lite/web/thumbs/397.jpg N/A /channel_db_lite/web/json/397.json N/A N/A
296 MarkusTegelane Playlist 404 - Credits 0 2020-06-28 Thanks for enjoying the 404 playlist. If you have any feedback about this playlist, leave it in the comments. You may also leave a rating and if you are interested in this playlist, you may add it to your collection and finally, if you like the content I produce, consider subscribing :yt: (it's free, you can unsubscribe at any time). Have a nice day! (or night if you're watching this late at night) 0 0 0 1 https://www.youtube.com/watch?v=KUC-xpEbCKw 0 &#9199 Playlist 404 - Credits . Thanks for enjoying the 404 playlist. If you have any feedback about this playlist, leave it in the comments &#128172&#11015. You may also leave a rating (&#128077 or &#128078) and if you are interested in this playlist, you may add it to your collection &#10133 and finally, if you like the content I produce, consider subscribing :yt: (it's free, you can unsubscribe at any time). Have a nice day! &#128522 (or night if you're watching this late at night &#127747)

This video is exclusive to this playlist &#9199 and most likely available anywhere else (I can't prevent people from adding it to their own playlists or uploads, but this 404 playlist is the only official place you can find this video)
. 404.MP4 Varia Miscellaneous Markus Maal,MarkusTegelane,TheMarkusGuy,mitmekülgne tehnoloogia,diverse technology,secret playlist,stuff I watch on YouTube,actually this playlist is public on my channel page,you can also find it in the suggestions,if it is relevant to what you're watching,I really don't know how tagging works,but this could possibly do,this doesn't even rhyme,what is the reason of this,...,madness,the video is processing,YAY,I can now go to sleep,that is if I want to...,eleven,two N/A MarkusTegelane . 1 /channel_db_lite/web/thumbs/296.jpg N/A /channel_db_lite/web/json/296.json N/A N/A
302 MarkusTegelane+ Klaviatuur - LED tuled lõpetasid töötamise // Keyboard - LED lights stopped working 1 2020-06-13 Nupud on endiselt funktsionaalsed, kuid tuled ei muutu. Seadme taaskäivitamine lahendas probleemi. // Buttons still work, but lights don't change. A reboot fixes this problem. 0 1 0 0 https://www.youtube.com/watch?v=2iT8E0lAdGo 0 . . . . N/A Varia Miscellaneous N/A MarkusTegelane+ . 1 /channel_db_lite/web/thumbs/302.jpg N/A /channel_db_lite/web/json/302.json N/A N/A
187 MarkusTegelane+ Don't PC (Windows 10) 1 2017-06-29 N/A 0 1 0 1 https://www.youtube.com/watch?v=W5_BZ9BUY2U 0 . . . . N/A Lisavideod Additional content N/A MarkusTegelane+ . 1 /channel_db_lite/web/thumbs/187.jpg N/A /channel_db_lite/web/json/187.json N/A N/A