- View New Content
-
Getting Started
-
Tutorials
Tutorial Categories
Tutorials Main Page Installation and Setup Downloadable TutorialsROM Adjustments
Number of Balls Adjustments Volume Adjustments
-
Visual Pinball Tables
VP 8 Desktop Tables
All VPM Recreations VP Recreations VP/VPM MODs VP Originals ROMsVP 9 Desktop Tables
All VPM Recreations VP Recreations VP/VPM MODs VP Originals ROMsVP9 Cabinet Tables
All Full Screen Cabinet Full Screen B2S Cabinet Spanned Cabinet Tables Media Packs ROMsVPX Tables
All VPinMAME Recreations VPX- - /VPinMAME - MOD Tables VPX Recreations VPX Originals Media Packs ROMs VR
-
Frontend Media & Backglass
Media Packs
Complete Media Packs Wheel Logos VideosBackglasses
dB2S Animated Backglasses UVP Animated Backglasses Topper Images
- Future Pinball Tables
-
Design Resources
Main Resources
Table Templates Playfield Images Image Library Sound Library Key CodesVP Guides
VP8 Guide - English VP8 Guide - Deutsch VP9 Guide - English VP9.1.x Guide - English VP Object Guide VPM DocumentationFuture Pinball Resources
Playfield Images 3D Model LibraryFuture Pinball Guides
FP Script Guide Big Draco Script Guide FP Table Design Guide FP DMD Guide
- Other Features
- Bug Tracker
- Image Gallery
- Blogs
-
More
Submitter
SUPPORT TOPIC File Information
- Submitted: Mar 21 2022 05:29 PM
- Last Updated: Apr 20 2022 04:26 PM
- File Size: 182.43MB
- Views: 9190
- Downloads: 2,065
- Author(s): Loloallo
- Permission to MOD?: Yes, with approval
Previous Versions
Download Bird Fly V0.9.0
11 Votes
Bird Fly Loloallo Spring DMD B2S 3D
Welcome to "Bird Fly" pinball.
This is the 0.9.0 late version under VPX10.7
This pinball is a DMD/B2S game but if you prefer a single screen version set "TwoScreens=True" to ""TwoScreens=False" in code.
All graphics and 3D are home made.
Sounds come from : https://lasonotheque.org/
Please visit this site to give good vibes to his creator.
Please download the second file Bird_Fly_Music_folder.zip and move it in the music folder.
These music ars bird songs or wind sound...., not really music.
Some players experienced bugs in music managment, so in this case you can modifiy the value MusicOn=True and setting it to False.
Now play and enjoy "Bird Fly".
Loloallo.
Note : Loop champion recording new feature make program crash on prior Bird Fly installations (non existing parameters on 0.8 versions)
Please, launch Bird Fly again and/or delete ../User/Bird_Fly.txt file first
This is the 0.9.0 late version under VPX10.7
This pinball is a DMD/B2S game but if you prefer a single screen version set "TwoScreens=True" to ""TwoScreens=False" in code.
All graphics and 3D are home made.
Sounds come from : https://lasonotheque.org/
Please visit this site to give good vibes to his creator.
Please download the second file Bird_Fly_Music_folder.zip and move it in the music folder.
These music ars bird songs or wind sound...., not really music.
Some players experienced bugs in music managment, so in this case you can modifiy the value MusicOn=True and setting it to False.
Now play and enjoy "Bird Fly".
Loloallo.
Note : Loop champion recording new feature make program crash on prior Bird Fly installations (non existing parameters on 0.8 versions)
Please, launch Bird Fly again and/or delete ../User/Bird_Fly.txt file first
What's New in Version V0.9.0 (See full changelog)
- V0.9.0 :
- - added sound on bird going to nest for advance and replacing
- - added RattAttack nice shot in a second
- - added RattAttack all targets down bonus
- - added teasers after Game Over
- - modified Ball rolling sound to hear ball rolling on ramps and platforms
- - added Flasher
- - point multiplier better managment
- - increased score to reach for free game
- - tilt managment
- - Top scores/name recording
- - Bird Fly champion score/name recording
- Note : this new feature make program crash on prior Bird Fly installations (non existing parameters)
- Please, launch Bird Fly again and/or delete ../User/Bird_Fly.txt file first
- - added animated eggs and chicks in nest
- - added some lights
- - new B2S with animation
- V 0.8.1
- - Added your solution or a value to avoid music for the Music folder bug (see code)
- - Added a default DMD scene in order to resolve the DMD "File not found" message
- - added the CAT challenge
- V 0.8.0
- - Initial version 20220321
Screenshots
lolloallo.
Did you test this script in VPX 10.7 or 10.6. It's still not working in 10.7. I have the folder structure exactly as you've described (no stranger to running music in tables), but keep getting "line 929. path not found".
Nursey
After trying a lot, trying everything, I think there is a problem. ![]()
Cool! Cant wait to try this. Thanks!
Those flippers are the most unique I have ever seen, or should we call them flappers? Certainly some clever effects in this table. Thankyou.
I watched this on Cse Pregi Ivan's You Tube channel and think it is very unique, but as he does not have the music files playing, the chirping of the birds alone would send me around the bend..... If only his video played with music so I could get into this table. Keep up the great work. Flappers (oops) I mean Flippers look cool....
line 929 path not found.
Can someone explain to me;
thank you in advance
Solved the problem. The music script had an error in it. Copy and paste this at line 924, overwriting what is there;
Dim FileSystemObject, folder, r, ct, file, musicPath, myMusicFolder
myMusicFolder = "\Bird_Fly" ' the directory name where your mp3 files are storied, must be a subfolder of Visual Pinball\music
Set FileSystemObject = CreateObject("Scripting.FileSystemObject")
musicPath = FileSystemObject.GetAbsolutePathName(".") ' get path to Visual Pinball\table
musicPath = Left(musicPath, Len(musicPath) - 6) + "music\" 'get path to Visual Pinball\music
Set folder = FileSystemObject.GetFolder(musicPath + myMusicFolder)
Randomize
r = INT(folder.Files.Count * Rnd + 1)
ct=1
For Each file in folder.Files 'get every file in myMusicFolder, for each one count it and see if the count matches the random number
if ct = r Then ' random file found
if (LCase(Right(file,4))) = ".mp3" Then ' can only play mp3 files
PlayMusic Mid(file, Len(musicPath) + 1, 1000) ' PlayMusic defaults to Visual Pinball\music\, need to get myMusicFolder\song name
End If
End If
ct = ct + 1
Next
End Sub
Or go to line 925 and put a backslash in front of the folder name so it reads "\Bird_Fly", as above.
If this had been tested then there would be no dramas.
Hello Greynurse.
I tried both solutions....but in both cases I got an error at line 929.
Anyway, thank you very much for looking for a solution.
Set folder = FileSystemObject.GetFolder(musicPath + myMusicFolder)
Did you tried to replace the line
Set folder = FileSystemObject.GetFolder(musicPath + myMusicFolder)
with
Set folder = FileSystemObject.GetFolder("C:\install_path\Music\Bird_Fly")
Both solutions are work on my Pc ?
Hello, after doing a lot of tests and reading the errors that came up, I found a solution.
I removed line 858 "jouer musique" and now the table works perfectly. ![]()
This is all very strange ![]()
Other files you may be interested in ..
- 18,368 Total Files
- 57 Total Categories
- 872 Total Authors
- 25,420,767 Total Downloads
- Riviera Pinball (Chicago Coin 1973) Latest File
- Flying Dutchman Latest Submitter
user(s) are online (in the past 15 minutes)
members, guests, anonymous users











are all trademarks of VPFORUMS.
Unzip Bird_Fly_Music_folder.zip which is the music zip file.
The resulting unziped folder "Bird_Fly_Music_folder" contains the Folder "Bird_Fly". Just paste this "Bird_Fly" folder in your VPX music folder.
So you finally get something like C:\VPX_Install_path\Music\Bird_Fly
This folder "Bird_Fly" contains Music_1.mp3 to Music_13.mp3 files.
Note : i experienced problems with path name containing letters like é ou (