The DMD is just a text box, it has no real DMD
This looks like one of ghosts many unfinished tables
It does not appear to have a finished ruleset, and it's missing like half of the goings on of the real spookshow table.
The table has no ROM, hence no F1
No mame ROM exists for Spookshow, and even if we had one, i dont think Vpinmame presently supports it.
Spookshow was not programed with the same tool set as america's most haunted.
So with out a rom, we need an ass load of scripting and an ass loaded of talented art and animation work for the DMD
If you want it to have a DMD easy, like right now
Add this to the table script
Sub Table1_init
FlexINIT
End Sub
then at the very end of the table script add this (If you want ultraDMD instead, i can post an ultraDMD init)
Dim FlexDMD
Dim UltraDMD
Sub FlexINIT
Set FlexDMD = CreateObject("FlexDMD.FlexDMD")
UseColoredDMD = true
If FlexDMD is Nothing Then
MsgBox "No UltraDMD found. This table will NOT run without it."
Exit Sub
End If
FlexDMD.GameName = cGameName
FlexDMD.RenderMode = 2
FlexDMD.Show = 1
Set UltraDMD = FlexDMD.NewUltraDMD()
UltraDMD.Init
If Not UltraDMD.GetMajorVersion = 1 Then
MsgBox "Incompatible Version of UltraDMD found."
Exit Sub
End If
UltraDMD.DisplayScene00Ex " ", "Rob Zombie's", 30, -1, "SpookShow", 30, -1, 14, 1, 14
End Sub
Ok lastly find Sub AddScore, and change it to this
Sub AddScore(points) 'we also need to Dim Score in the beginning of script. all Variables should go in the beginning of script.
Score = Score + points ' This adds your score + the points in the (Brackets) when something is hit & it contains AddScore(#)
ScoreText.Text = FormatNumber(Score, 0, -1, 0, -1) 'this Displays the points added in scoretext.Text box on the backdrop
UltraDMD.DisplayScene00Ex " ", "SCORE ", 30, -1, cstr (Score), 30, -1, 14, 1, 14
End Sub
Ok, now you got a DMD, all it is going to do is show a pointless score though, as this table is unfinished, it just bats around a never ending stream of balls
into scoring objects with fixed points, and no rules or game modes.
But this is an entirely unfinished table, it really does nothing but play bat a ball, eternally.
You can not even lose
This table needs someone like JP to have mercy on it
And an ass ton of study of the real workings of the real life table
Edited by wiesshund, 01 November 2020 - 12:44 AM.