Can anyone tell me what I need to do for getting rid of the dot matrix display on the DMD? I'm also looking to increase the music volume as well.
Thank you all in advance!
So you do not want the DMD stuff at all?
The options are in the table script, all of them, same place you turned it on at.
Just chose mode 1 (no ultra DMD and no FLexDMD)
As for the music, mine plays back loud.
You could load the mp3's in audacity and increase their volume, just beware of going too high or they will clip
'*************************************
'Player Options
'You have to set these and set UserOptionsSet from 0 to 1
'Or the table is going to keep tossing you out
'*************************************
' Set this to 1 to acknowledge you have set your user options
' Sorry, this is to avoid people not setting them and then saying Why dont this work
UserOptionsSet = 1
' Do you have a backglass? set 0 for no, 1 for yes
' If you dont want to run a backglass for any reason, the will stop VPX from loading it, even if the B2S file exists
Usebackglass = 1
' Are you using FSS (full screen, single screen mode?)
' If you are using FSS, you probably want to also set UseBackglass to 0
' Unless you actually want a backglass running for some reason
FSS = 0
' Do you want PinMAME to display? 1 for yes, 0 for no
HidePinMAME = 1
' What Mode do you with to run the table in?
' 0 = Stock with NO music
' 1 = Stock with music
' 2 = UltraDMD
' 3 = FlexDMD (recommended)
mode = 3
' Do you want the Apron FlexDMD displays to SHOW? Set to 0 for Yes, 1 for no
'If you play desktop mode and only have 1 screen, or even play cabinet mode but dont have a backlass monitor, you may want to set these On
' And set ShowFledDMD to 0, and it will display the DMD content on the table Apron for you.
ApronDMDShow = 1
' If using FlexDMD do you want to Show the large DMD display? Useful for single screen with only the Apron DMD's showing 1 for Yes, 0 for No
ShowFlexDMD = 1
' If using UltraDMD do you want to Show the secondary virtual DMD? 1 for Yes, 0 for No
ShowUltraVirtual = 0
' Do you want to display the LIGHT LEDs? This would mostly be for if you are playing in Desktop mode on a single screen but not FSS
' Set to 1 to show the LEDs, set to 0 to hide them
LedShow = 1
' Do you want to show the desktop mode backbox Items? (Game Over, High Score, etc, the backglass Lights) 1 for Yes, 0 for No
' If you are playing desktop mode but using a Backglass monitor, you probably want these off, Same if you are using FSS
' or rotated in a cabinet.
DesktopBackBox = 0
' ************************* MUSIC NOTE *****************************
' If you want everything but music, but some chance, go to sub Jukebox and look for the line
' Set this to 1 and it will do everything else you asked above, even play DMD, but it will skip the music.
' not very fun, but you're the one playing not me so, the option was asked for so here it is
iDunWanMuzak = 0
' *************************************************