- 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
Back To the Future VP911 FS
Started By
jpsalas
, Mar 05 2011 05:33 PM
35 replies to this topic
#22
Posted 06 March 2011 - 11:55 AM
Nice one JP
Who thought your tables could get any better.
Who thought your tables could get any better.
#30
Posted 23 April 2012 - 09:23 AM
QUOTE (ICPjuggla @ Apr 23 2012, 02:20 AM) <{POST_SNAPBACK}>
This is an awesome table, I seem to be having a problem setting up the UVP for this one! I have a 3 screen set up and I've set it up like all the other tables and they work but for some reason I can't seem to get this one working! Anyone have any ideas?
You need to be more specific. This is a non-dmd table so you need to add a bit of code to the table script and add a timer to the table.
Have you done this?
#31
Posted 23 April 2012 - 03:25 PM
QUOTE (JohnnyDoe @ Apr 23 2012, 05:23 AM) <{POST_SNAPBACK}>
QUOTE (ICPjuggla @ Apr 23 2012, 02:20 AM) <{POST_SNAPBACK}>
This is an awesome table, I seem to be having a problem setting up the UVP for this one! I have a 3 screen set up and I've set it up like all the other tables and they work but for some reason I can't seem to get this one working! Anyone have any ideas?
You need to be more specific. This is a non-dmd table so you need to add a bit of code to the table script and add a timer to the table.
Have you done this?
Yes, like I said I've set it up like other tabes that are working with UVP in and out of hyperpin! This is the only table I can't seem to get working with UVP! The table loads but the UVP doesn't. also, the UVP window pops up on my main screen in the top left corner! I do get some type of error but I'm not home to load it up at the moment! I'll load it up when I get home from work! I just figured other people ran into this problem b/c this is the only one I can't get to work, so as far as I know I'm setting the UVP code and timer correct!
#32
Posted 23 April 2012 - 03:37 PM
Probably the naming of the UVP or backglass is your issue.
Here is mine and it works fine...
visual pinball.xml entry:
<game name="Back_to_the_Future_VP911_v1.0FS">
<description>Back To The Future (Data East 1990)</description>
<manufacturer>Data East</manufacturer>
<year>1990</year>
<type>SS</type>
</game>
Filename of UVP: Back To The Future (Data East 1990).uvp
Backglass: Back To The Future (Data East 1990).png
Table Image: Back To The Future (Data East 1990).png
VP Table: Back To The Future (Data East 1990).vpt
Script changes:
' Set Controller = CreateObject("VPinMAME.Controller") (notice this is commented out)
Set Controller = CreateObject("UltraVP.BackglassServ")
In the init section:
.Hidden = 1
At the end of the script:
Sub Leds_Timer()
Dim ChgLED
ChgLED = Controller.ChangedLEDs(&Hffffffff, &Hffffffff)
End Sub
And of course a timer on the table entitled LEDs and set for 50ms
You need to be more specific. This is a non-dmd table so you need to add a bit of code to the table script and add a timer to the table.
Have you done this?
Yes, like I said I've set it up like other tabes that are working with UVP in and out of hyperpin! This is the only table I can't seem to get working with UVP! The table loads but the UVP doesn't. also, the UVP window pops up on my main screen in the top left corner! I do get some type of error but I'm not home to load it up at the moment! I'll load it up when I get home from work! I just figured other people ran into this problem b/c this is the only one I can't get to work, so as far as I know I'm setting the UVP code and timer correct!
Here is mine and it works fine...
visual pinball.xml entry:
<game name="Back_to_the_Future_VP911_v1.0FS">
<description>Back To The Future (Data East 1990)</description>
<manufacturer>Data East</manufacturer>
<year>1990</year>
<type>SS</type>
</game>
Filename of UVP: Back To The Future (Data East 1990).uvp
Backglass: Back To The Future (Data East 1990).png
Table Image: Back To The Future (Data East 1990).png
VP Table: Back To The Future (Data East 1990).vpt
Script changes:
' Set Controller = CreateObject("VPinMAME.Controller") (notice this is commented out)
Set Controller = CreateObject("UltraVP.BackglassServ")
In the init section:
.Hidden = 1
At the end of the script:
Sub Leds_Timer()
Dim ChgLED
ChgLED = Controller.ChangedLEDs(&Hffffffff, &Hffffffff)
End Sub
And of course a timer on the table entitled LEDs and set for 50ms
QUOTE (ICPjuggla @ Apr 23 2012, 11:25 AM) <{POST_SNAPBACK}>
QUOTE (JohnnyDoe @ Apr 23 2012, 05:23 AM) <{POST_SNAPBACK}>
QUOTE (ICPjuggla @ Apr 23 2012, 02:20 AM) <{POST_SNAPBACK}>
This is an awesome table, I seem to be having a problem setting up the UVP for this one! I have a 3 screen set up and I've set it up like all the other tables and they work but for some reason I can't seem to get this one working! Anyone have any ideas?
You need to be more specific. This is a non-dmd table so you need to add a bit of code to the table script and add a timer to the table.
Have you done this?
Yes, like I said I've set it up like other tabes that are working with UVP in and out of hyperpin! This is the only table I can't seem to get working with UVP! The table loads but the UVP doesn't. also, the UVP window pops up on my main screen in the top left corner! I do get some type of error but I'm not home to load it up at the moment! I'll load it up when I get home from work! I just figured other people ran into this problem b/c this is the only one I can't get to work, so as far as I know I'm setting the UVP code and timer correct!
#33
Posted 23 April 2012 - 03:51 PM
QUOTE (luvthatapex @ Apr 23 2012, 11:37 AM) <{POST_SNAPBACK}>
Probably the naming of the UVP or backglass is your issue.
Here is mine and it works fine...
visual pinball.xml entry:
<game name="Back_to_the_Future_VP911_v1.0FS">
<description>Back To The Future (Data East 1990)</description>
<manufacturer>Data East</manufacturer>
<year>1990</year>
<type>SS</type>
</game>
Filename of UVP: Back To The Future (Data East 1990).uvp
Backglass: Back To The Future (Data East 1990).png
Table Image: Back To The Future (Data East 1990).png
VP Table: Back To The Future (Data East 1990).vpt
Script changes:
' Set Controller = CreateObject("VPinMAME.Controller") (notice this is commented out)
Set Controller = CreateObject("UltraVP.BackglassServ")
In the init section:
.Hidden = 1
At the end of the script:
Sub Leds_Timer()
Dim ChgLED
ChgLED = Controller.ChangedLEDs(&Hffffffff, &Hffffffff)
End Sub
And of course a timer on the table entitled LEDs and set for 50ms
You need to be more specific. This is a non-dmd table so you need to add a bit of code to the table script and add a timer to the table.
Have you done this?
Yes, like I said I've set it up like other tabes that are working with UVP in and out of hyperpin! This is the only table I can't seem to get working with UVP! The table loads but the UVP doesn't. also, the UVP window pops up on my main screen in the top left corner! I do get some type of error but I'm not home to load it up at the moment! I'll load it up when I get home from work! I just figured other people ran into this problem b/c this is the only one I can't get to work, so as far as I know I'm setting the UVP code and timer correct!
Here is mine and it works fine...
visual pinball.xml entry:
<game name="Back_to_the_Future_VP911_v1.0FS">
<description>Back To The Future (Data East 1990)</description>
<manufacturer>Data East</manufacturer>
<year>1990</year>
<type>SS</type>
</game>
Filename of UVP: Back To The Future (Data East 1990).uvp
Backglass: Back To The Future (Data East 1990).png
Table Image: Back To The Future (Data East 1990).png
VP Table: Back To The Future (Data East 1990).vpt
Script changes:
' Set Controller = CreateObject("VPinMAME.Controller") (notice this is commented out)
Set Controller = CreateObject("UltraVP.BackglassServ")
In the init section:
.Hidden = 1
At the end of the script:
Sub Leds_Timer()
Dim ChgLED
ChgLED = Controller.ChangedLEDs(&Hffffffff, &Hffffffff)
End Sub
And of course a timer on the table entitled LEDs and set for 50ms
QUOTE (ICPjuggla @ Apr 23 2012, 11:25 AM) <{POST_SNAPBACK}>
QUOTE (JohnnyDoe @ Apr 23 2012, 05:23 AM) <{POST_SNAPBACK}>
QUOTE (ICPjuggla @ Apr 23 2012, 02:20 AM) <{POST_SNAPBACK}>
This is an awesome table, I seem to be having a problem setting up the UVP for this one! I have a 3 screen set up and I've set it up like all the other tables and they work but for some reason I can't seem to get this one working! Anyone have any ideas?
You need to be more specific. This is a non-dmd table so you need to add a bit of code to the table script and add a timer to the table.
Have you done this?
Yes, like I said I've set it up like other tabes that are working with UVP in and out of hyperpin! This is the only table I can't seem to get working with UVP! The table loads but the UVP doesn't. also, the UVP window pops up on my main screen in the top left corner! I do get some type of error but I'm not home to load it up at the moment! I'll load it up when I get home from work! I just figured other people ran into this problem b/c this is the only one I can't get to work, so as far as I know I'm setting the UVP code and timer correct!
I'll take a look when I get home but I'm pretty sure I have it set up the exact same way as you!
#34
Posted 29 July 2013 - 05:43 PM
I have a 3 screen cabinet and set this table up and it plays great. Does anyone know if the displays on the apron can be moved to the DMD screen? Thanks.
I've been able to move the alphanumeric display, but not the "Twin Jackpots". Curious if anyone else was able to solve. I'll start digging into it.
#35
Posted 15 May 2015 - 06:11 PM
better later than never... my son did just noticed that the bonus multipler inserts are all wrong, instead of a "X" you've putted a "K" JP... ![]()
++
Aliens 2, Area 51, Asterix, Bally Tribute, ET, Evel Knievel, Frontier, Galaxian, Inspector Gadget, Lilo & Stitch, Looney Tunes, Lost World, Mata Hari, Night Mission, Power Play, Rayman, Rolling Stones 2, Stalker, Santa Odyssey, Tempest, Timon & Pumbaa, Williams Tribute, World Cup 2002, Zombie
Tanx to (alphabetical order) : BLACK, CUTTER, DESTRUK, EALA, JP, JOE ENTROPY, KINSEY, KRISTIAN, LOSERMAN, LUVTHATAPEX, RANDY, SCAPINO, SHIVA, STRANGELEO (hope i did not forget someone... )



Top















.png)


















are all trademarks of VPFORUMS.