- 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: Jun 23 2023 07:32 PM
- Last Updated: Jun 28 2023 01:05 AM
- File Size: 77.14MB
- Views: 8194
- Downloads: 1,208
- Author(s): Schlabber34 and previous
- Media Pack: Link to Media Pack
- Permission to MOD?: Yes, without approval
Previous Versions
Download Bella Dama 1.3
12 Votes
hot tip williams pinup mod girls
Mod to Schlabber34 'Hot Tip' (Williams 1977) table using that and earlier author work https://www.vpforums...&showfile=14485
Thanks to the previous authors. Visual layout changes only. Some pinup girls from artists Gil Elvgren, Alberto Vargas and Edward Runci with accompanying background music at media pack link (unzip to Music/hottip folder, right magnasave = next song, left magnasave = stop music). Backglass included in updated media pack link.
Rom link below for httip_l1 also needed
https://www.vpforums...ds&showfile=766
Several of the included music tracks by William King https://pixabay.com/..._king-33448498/
#v1.1
Fixed issue with music playlist going back to 1st song before end of playlist.
Added back original table graphics and scoring info near drop targets.
#v1.2
Graphic edge jaggies cleanup, thanks aldiode!
#v1.3
adjusted chime and solenoid volumes lower, individual element volume adjustments can be made further in the table editor under Table->Sound Manager
Media pack updates
#06/24
Removed old backglass illumination snippet L62 and reposition illumination snippets for 3rd,4th player indicators L59,L60. Added wheel to media zip.
#06/25
Show 'Bella Dama' title replacing 'Hot Tip' on the backglass and wheel images. Music files are still kept under folder 'hottip'
#06/27
Added 'no_DMD' backglass(DMD png image removed) for people having issues with the DMD still showing when trying to remove
Thanks to the previous authors. Visual layout changes only. Some pinup girls from artists Gil Elvgren, Alberto Vargas and Edward Runci with accompanying background music at media pack link (unzip to Music/hottip folder, right magnasave = next song, left magnasave = stop music). Backglass included in updated media pack link.
Rom link below for httip_l1 also needed
https://www.vpforums...ds&showfile=766
Several of the included music tracks by William King https://pixabay.com/..._king-33448498/
#v1.1
Fixed issue with music playlist going back to 1st song before end of playlist.
Added back original table graphics and scoring info near drop targets.
#v1.2
Graphic edge jaggies cleanup, thanks aldiode!
#v1.3
adjusted chime and solenoid volumes lower, individual element volume adjustments can be made further in the table editor under Table->Sound Manager
Media pack updates
#06/24
Removed old backglass illumination snippet L62 and reposition illumination snippets for 3rd,4th player indicators L59,L60. Added wheel to media zip.
#06/25
Show 'Bella Dama' title replacing 'Hot Tip' on the backglass and wheel images. Music files are still kept under folder 'hottip'
#06/27
Added 'no_DMD' backglass(DMD png image removed) for people having issues with the DMD still showing when trying to remove
Begs for a B2s
Thanks for the feedback, I'll try to work up and post a backglass this weekend.
Using the below code from an earlier forum post for the music tracks, but keeps going back to the 1st song after any song completes. Will update with fix once I know what the issue is.
'******************************
'* HiRez00: Music Mod *
'******************************
Dim musicNum
musicNum = 0
Sub NextTrack
If musicNum = 0 Then PlayMusic "hottip/TheGirlFromIpanema.ogg" End If
If musicNum = 1 Then PlayMusic "hottip/gypsy-jazz-guitar.ogg" End If
If musicNum = 2 Then PlayMusic "hottip/lo-fi-dreams.ogg" End If
If musicNum = 3 Then PlayMusic "hottip/carnival.ogg" End If
If musicNum = 4 Then PlayMusic "hottip/same-bossa.ogg" End If
'musicNum = (musicNum + 1) mod 5
musicNum = musicNum+1
If musicNum = 5 Then
musicNum = 0
End If
End Sub
Sub Table1_MusicDone
NextTrack
End Sub
'*****************************
'* End Music Mod *
'*****************************
I haven't tried it myself, but just looking at the code I wonder if it would work changing this:
If musicNum = 5 Then
musicNum = 0
End If
To this code:
If musicNum = 4 Then
musicNum = 0
End If
Or try this maybe?
If musicNum = 5 Then PlayMusic "hottip/TheGirlFromIpanema.ogg"
musicNum = 0
End If
I hope any of that helps! I'm not too experienced with coding myself, but I've changed/modified/analyzed enough code in my life that I can at least understand functions and its intended outcomes fairly well. Also, I use chatGPT quite a bit to help me with coding, debugging, and understanding code. Just throwing it out there if you don't do that already or haven't tried it yet! It's extremely well at assisting with coding, understanding a script or functions, and creating detailed scripts from scratch using your ideas and guidance, or have it come up with its own ideas and scripts. I like to do that after training it a bit on a single task or project, like VPX table scripting. I've gotten one open thread now on chatGPT that is trained fairly well on only VPX, pinball, virtual pinball, DOF, etc. After a while of trying ideas and correcting chatGPT when it was wrong, its now at a point where it can create a complete VPX table script that actually works amazingly well. Depending on how thorough and in depth your table will be it varies obviously. But I can already tell for someone like myself who doesn't know much about coding, at the very least chatGPT can help you INCREDIBLY well with starting table scripts and using them for a reference. Or you can copy and paste a chunk of code and just ask chatGPT "What does this code snippet below actually mean? And what will it execute when its ran?" Most of the time it will give you a very detailed and thorough answer that is correct as well. I'm planning on trying to create my first VPX table soon, using chatGPT as much as possible to help me. Kind of as an experiment to see what it can do and how far I can push it. Then I plan on posting a detailed thread about the entire experience, documenting the process. Then if it works fairly well and actually helps a lot, other creators who have considered doing this can see how I did it, and what's actually possible for chatGPT to assist you with.
Back to your topic at hand, let me know if you figure out the music problem or if my suggestions helped. Great table by the way! Great artwork and look
Keep on pinballing!
Zuxif
No expert but Should it not be picking a randon number for the track ?
Function RndNbr(n) 'returns a random number between 1 and n
Randomize timer
RndNbr = Int((n * Rnd) + 1)
End Function
Thanks folks for the coding suggestions, turned out I had some earlier code I was experimenting with with random song selections that I forgot to comment out(doh!). I work with software(python,R,javascript/HTML,perl,C) and databases(SQL) for work and Visual Basic makes sense other than getting used to the language syntax. Thanks Zuxif for the tip on chatGPT, I wholly agree and have used it for some boilerplate and starting code and interesting following where those AI efforts take us, while at the same time recognizing the need to proof the AI work for 'hallucinations' and blind spots. Looking forward to reskinning some other easier-to-mod SS or earlier tables, if folks have suggestions on tables and/or themes let me know.
Thanks for this mod.
FYI, in order for the custom backglass to display properly (graphics from the original backglass were popping into view), I removed the following illumination frames from my copy of the backglass:
L57 L58 L59 L60 IL62
(I'm using B2S Server 2.0.2)
I would love to see an update for a VP9 table that as far as I know has not been made or converted to VPX yet. Its a funny name, Mach Two 2.0, if you search for it you'll find the one I'm talking about. Not sure if that is out of your skillset to convert it, but the VP9 version didn't look too bad. Also I would really like to see an update to an older 32assassin table called Spy Hunter, it's a very fun and underrated table IMO. A very weird and unique playfield layout as well. It still holds up nice and looks great, but it could use a lighting and physics refresh at the least. Just some suggestions that came to mind quick! Take care
Thanks for the notes on the backglass illuminations, first time working with the backglass designer tool version 1.27 and mostly made sense although I didn't seem able to delete snippets in the resources window and some other issues with snippet frame edits in the designer tool saving/exporting properly.
Other files you may be interested in ..
- 18,369 Total Files
- 57 Total Categories
- 872 Total Authors
- 25,422,226 Total Downloads
- Shark (Hankin 1980) (no art) Latest File
- anthias Latest Submitter
user(s) are online (in the past 15 minutes)
members, guests, anonymous users











are all trademarks of VPFORUMS.
ALGUN B2S PARA ESTA MESA YA QUE EL B2S DE LA TABLA ORIGINAL NO CORRESPONDE
GRACIAS