Make sure you have the latest vbscripts from the downloads. Can you play JP's VP9.1.5 version of this table?If so, then are you using db2s backglass. I already changed the script for this, maybe try doing UVP or back to "controller".
If someone else can add to the conversation please do. That's all I can think of at the moment.
what about a night version for desktop?what about a night version for desktop settings/version?
Truth be told, I really don't know how to properly make a desktop table. If someone wants to mod this to a desktop, message me.
Hey Aaron, still having trouble getting this to work. Downloaded both versions and neither work for me. (Attack_From_Mars_NIGHT MOD_FS_vp914_v2.4FS.vpt, Attack_From_Mars_NIGHT MOD_VP915_v2.0_FS.vpt)
So what is it you mean by "try doing UVP or back to "controller"" ?
JP's version (AFM_vp914_v2.4FS.vpt) works fine for me.
I am using version 9.1.5.
FYI: I am playing this on a desktop pc, turning the monitor 90°, so I can see no backglass, if the issue is related to the backglass somehow *shrug*.
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Ok, i think i know what the small problem is.
In Visual Pinball program, open the script up, and look at the beginning of the script.
Change the script from :
' Attack from Mars / IPD No. 3781 / December, 1995 / 4 Players
' VP914+ 2.4 by JPSalas 2013
Option Explicit
Randomize
LoadVPM "01560000", "WPC.VBS", 3.26
Sub LoadVPM(VPMver, VBSfile, VBSver)
On Error Resume Next
If ScriptEngineMajorVersion <5 Then MsgBox "VB Script Engine 5.0 or higher required"
ExecuteGlobal GetTextFile(VBSfile)
If Err Then MsgBox "Unable to open " & VBSfile & ". Ensure that it is in the same folder as this table. " & vbNewLine & Err.Description
Set Controller = CreateObject("B2S.Server")
If Err Then MsgBox "Can't Load VPinMAME." & vbNewLine & Err.Description
If VPMver> "" Then If Controller.Version <VPMver Or Err Then MsgBox "VPinMAME ver " & VPMver & " required."
If VPinMAMEDriverVer <VBSver Or Err Then MsgBox VBSFile & " ver " & VBSver & " or higher required."
On Error Goto 0
End Sub
TO :
' Attack from Mars / IPD No. 3781 / December, 1995 / 4 Players
' VP914+ 2.4 by JPSalas 2013
Option Explicit
Randomize
LoadVPM "01560000", "WPC.VBS", 3.26
Sub LoadVPM(VPMver, VBSfile, VBSver)
On Error Resume Next
If ScriptEngineMajorVersion <5 Then MsgBox "VB Script Engine 5.0 or higher required"
ExecuteGlobal GetTextFile(VBSfile)
If Err Then MsgBox "Unable to open " & VBSfile & ". Ensure that it is in the same folder as this table. " & vbNewLine & Err.Description
Set Controller = CreateObject("VPinmame.Controller")
If Err Then MsgBox "Can't Load VPinMAME." & vbNewLine & Err.Description
If VPMver> "" Then If Controller.Version <VPMver Or Err Then MsgBox "VPinMAME ver " & VPMver & " required."
If VPinMAMEDriverVer <VBSver Or Err Then MsgBox VBSFile & " ver " & VBSver & " or higher required."
On Error Goto 0
End Sub
I left it as B2S.Server, because I use an animated backglass, and it sounds like you do not.