- 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
Download KISS (Bally 1979)_Bigus(MOD) 5.0
45 Votes
This fast and fun table is from jbg4208.
5.0 has a new playfield and physics plus new bumpers.
Enjoy
5.0 has a new playfield and physics plus new bumpers.
Enjoy
What's New in Version 5.0 (See full changelog)
- Change log -
- 1.2 - Complete rebuild in VPX - Thanks to 32assassin for the scripting the table the table start. Also thanks to Batch for the rom suggestion. kissc rom needed, or just comment out and use one of the other roms options listed in the script. Thanks to JP for allowing me to use his plastic images and misc other thins from his VP9 table.
- 1.3 - Added DOF script per arngrim
- 1.4 - Increased ball rolling sound and light reflections on the ball. Also, some minor physics adjustments to make the gameplay better.
- 1.5 - Corrected play field lettering to match original table. Thanks to gregh43 for pointing this out and for further testing physics.
- 1.6 - Pop bumper height adjustments also desktop view updates. All minor visual things.
- 1.7 - Few Minor plastics update.(A little bit higher res.)
- 1.8 - Corrected drop target actions by Borgdog. Physics tweeks.
- 2.0 - Added wrd1972's LFHM physics tweeks and Rothbauerw's EOS flipper settings. Added ball shadow routine by Ninuzzu. Adjusted other table physics.
- 2.1 Reworked lights
- 2.2 New bright lights, playfield tweaks and physics
- 2.3 New playfield, lights, lighting, ball
- 4.0 Sound, layout fixes, lighting
- 5.0 Playfield, physics, layout, lighting, script
Switch to the kissb 7-digit rom if you use the DT background for the digits to display properly after updating to PinMAME 3.5
You need to edit the line with the solenoids and stuff after kissc. Just change kissc to kissb on that line because commenting it will disable all the other items on the line.
![]()
Hi Bigus 1, I can't get the music of this board to work........there is some mp3 to load?
Hi Bigus 1, I can't get the music of this board to work........there is some mp3 to load?
Hi Haran,
I'm certainly no expert but I think I can answer this for you. The 1979 KISS table doesn't have any music - it was an early solid state table. But if you want Kiss music to play (or any music you like), you can do the following (this works on my setup with this table from Bigus - and as far as I can tell this works with about any table, just change the relevant detail to suit other tables and other music).
1. Open the table in the VPX editor
2. Open the script editor
3. Find the section for 'Plunger Code' - you can just do a search for plunger code, and make yours look like this:
'********************************************************************************************************** 'Plunger code '********************************************************************************************************** Sub Table1_KeyDown(ByVal KeyCode) If KeyDownHandler(keycode) Then Exit Sub If keycode = PlungerKey Then Plunger.Pullback:PlaySoundAt "plungerpull",Plunger If keycode = RightMagnaSave Then MusicOn If keycode = LeftMagnaSave Then EndMusic End Sub
------------
NOTE: the lines we're adding here are the last two If statements assigning the magnasave keys to the MusicOn and EndMusic subroutines.
4. Go to the end of the script (anywhere you like really, but I put mine at the end because this is something I'm adding to the script).
5. Pick a spot after the last bit of code and paste in the following:
'***********************
' Added myself to add music
'***********************
Sub MusicOn
Dim FileSystemObject, folder, r, ct, file, musicPath, myMusicFolder
myMusicFolder = "KISS" ' the directory name where your mp3 files are stored, 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
'***********************
' Got this from Playboy 1978 - it repeats the song selection subroutine once the song finishes
'***********************
Sub Table1_MusicDone
MusicOn
End Sub
6. save everything and exit out of VPX
7. in File Explorer on your PC go to ../Visual Pinball/Music
8. Create a folder in there called KISS
9. copy all your KISS mp3 files into that folder
10. Load up the table, and to begin the music playing (or skip to the next track), hit your right magna save (or Right CTRL key). If you want the music to stop playing, hit your left magna save (or Left CTRL key).
11. You should find that the script will select a song in that folder at random and play it, and when it has exhausted the entire playlist, it should start over automatically
That all works for me, I hope it works for you too.
Disclaimer, I don't know if posting this here violates any rules or goes against the spirit of this forum, but if so I apologise. Just trying to help. Also, I'm sorry but I can't remember where I got this code from (certainly wasn't me). I think I got it from the author of the 1978 Playboy table I have.
Cheers.
Tres belle réalisation. Merci Bigus
Thank You bigus1!
Mad703
ohhh thank you very very much for this !
Thank's the Update.
Trés realiste & beau travail !!
Bravo!
This is my review of the Bigus1 table. I choose to compare updated tables to previous versions or versions done by other authors to do a fair comparison to what is available and what makes them better or worse in my opinion. For this review, it's Bigus1 vs UnclePaulie's version.
1. Bigus1 version: This is a mod of jbg4208's table, because as far as I know, Bigus1 doesn't create tables, he mods tables that are already available and that's totally fine.
Right off the bat, I noticed this table does not have Nfozzy physics and Fleep sound. Nfozzy and Fleep are the latest and greatest standards for physics and sound in VPX. Without them, the ball feels light, floaty and does not move around the table like a real, weighted pinball. Sadly, that is exactly the case with the Bigus1 version.
UnclePaulie's version is built from scratch. He creates tables. His version does have Nfozzy and Fleep, which makes his table feel very close to a real pinball table. In my view, there is no comparison as to which table plays more like a real table. Fleep sound also takes his version to the next level.
I could stop this review right here because in my view, I want a pinball table to play like the real thing and UnclePaulie's version clearly takes the win in my opinon.
Other things I've noticed while comparing the two tables is UnclePaulie's version seems to have a higher resolution playfield and in my opinion better looking plastics, flippers, spinners, apron, and targets. He also baked the GI and interior wood walls. UnclePaulie's version also is loaded with options in the F12. Various balls, ball brightness, flippers, screw caps, spinners, targets, aprons, pegs, plastic edge colors, LUTs (for selecting different lighting/brightness options) and also Dip settings, which the Bigus1 version lacks.
This is my take on these 2 tables. My suggestion is to try them both out for your playing pleasure and keep the one YOU like better. It's nice to have options. In the end, we just want to have fun with a digital pinball table. Thank you to Bigus1 and UnclePaulie for helping out the community with their efforts.
Unfortunately, Bigus1 took my original post negatively. My original post just asked if Bigus1 was aware that UnclePaulie had already released an incredible table with Nfozzy physics and Fleep sounds. I brought this up because I said he's a busy guy updating tables and that if he wasn't aware, he could save a lot of wasted time updating tables that are already pretty much perfect... He wrote me back asking if I was a f*cking idiot and that he told me already not to mention other authors tables in reviews of his tables. I don't normally go back to posts I have done, so I was not aware of his comments. I know I did ask if he was aware of another table that already was near perfect in another of his table reviews, I can't remember what that table was... Again, this was to save him from the effort of updating tables that already had an awesome version out.
He called me a troll and implied I was involved with a group of trolls who don't like his updates or him...perhaps both. I am not a troll. Does a troll tell him a table he did is great? I don't think so. On April 16, 2026 (less that 2 months ago) I left a comment for his Volcano table, on page 2, saying and I quote, "Hey, great table Bigus1"
On March 28, 2026, I once again praised him for his Flight 2000 table, saying, and I quote, "Great job Bigus1" it's on page 2 of his table reviews on here. At that point in time, I had tried all the other versions available and his were the best versions for these 2 tables. He earned my respect and I praised him for them.
Does that sound like I'm a troll??
Bigus1 threatened me to "go public" with this and that he already knew who the community would back. I don't know what he thinks I would fear from "going public with this" as I did not do anything wrong and all I asked him in my post was if he was aware that there is already a great version of Kiss with Nfozzy Physics and Fleep sound. What is there to "go public" with? Absolutely nothing.
I mentioned that he was very hostile and he was unwarranted in asking if I was a "f*cking idiot and a troll... but he did not apologize. I have every right to do a review as I see fit and if I like to compare his table with another authors table, that is my choice. Going into a rage, calling people names and saying they are a troll is not how things are handled by civil people. I would suggest Bigus1 seek anger management.
I do not typically respond or look at my reviews/comments and this will be the same. Bigus1 will surely try to spin this to make me look like the bad guy. From his very hostile message to me, I can expect how he will respond. Not with an apology, which I definitely deserve but with more nonsense that has formed in his mind from trolls he says he's had to deal with in the past. I'm sorry to you Bigus1 if you've had to deal with trolls and negative people in the past.
He stated he's taken on trolls before but I'm clearly not a troll. Trolls don't praise a person for their work on a table, which I did, twice.
I will not be caught up in a fight that I did not start. I will not respond to Bigus1 moving forward and I've blocked him. Again, trolls like this kind of drama and want it to continue... I do not like it one bit and have taken steps so this is the end of it.
Other files you may be interested in ..
- 18,405 Total Files
- 57 Total Categories
- 874 Total Authors
- 25,510,816 Total Downloads
- Special Force (Bally 1986)_Bigus(MOD) Latest File
- bigus1 Latest Submitter
user(s) are online (in the past 15 minutes)
members, guests, anonymous users












are all trademarks of VPFORUMS.
thanks