Jump to content
  •  

     

    31d68d9f-35f1-43cb-8cda-ec967dd60421.jpg

Pinup Popper Files

Sub Category  

Pinup Popper Files

No files in this category yet.

  1. All
  2. A
  3. B
  4. C
  5. D
  6. E
  7. F
  8. G
  9. H
  10. I
  11. J
  12. K
  13. L
  14. M
  15. N
  16. O
  17. P
  18. Q
  19. R
  20. S
  21. T
  22. U
  23. V
  24. W
  25. X
  26. Y
  27. Z
  28. #

Files From Subcategories

  1. Star Trek TOS PUP-pack

    Star Trek (The Original Series) PUP-Pack
    This PUP-pack adds a video jukebox to Star Trek themed tables.
     
    What does it do?
    Music mods or sound mods are something that I really enjoy a lot. Ideally, the music adds to the pinball machine's theme and brings back the feeling of the bar where the pinball machine often was located near the jukebox. Especially for EM machines that only had chimes and bells, the added music can be nice. There are already several puck packs out there that have video snippets of the TV series and the Star Trek movies. This PUP-pack features songs from the 60s and 70s with video cut scenes. The focus is on giving you some background music.
     
    Tracks:
    There are 11 tracks that come with this PUP-pack. Add your own videos as you see fit.  
     
    Tables:
    There are several tables that have similar themes. The PUP-pack "Star Trek (The Original Series)" is meant to be used with tables that deal with the TV series featuring Kirk, Spock, McCoy, Scotty, Uhura, Zulu and Chekov.
    It can be used with the tables 
    Star Trek (Gottlieb 1971) Star Trek (Bally 1979) Star Trek Mirror Universe (Bally 1978) Star Trek 25th Anniversary (Data East 1991) Bigus MOD 1.1 Star Trek 25th Anniversary (Data East 1991) versins77 1.0 Star Trek Spock Tribute (Original 2022) Iceman and any other table that you want to use it with (if you are ready to tweak the table code).
    You can apply the PUP-pack for all or some of the above tables or just for one of them.
    Technically, the 1971 Gottlieb tables doesn't deal with the TV series, but has just "borrowed" the name.
     
    Controls:
    To accomplish the PUP-pack as a video jukebox I had to add some controls to the table script. During game play, you can go to another random track with the right magnasave button. Pressing the left magnasave button stops the playback. The gameplay itself doesn't have any impact on video playback.
     
    Patching:
    I didn't want to go through a long approval request communication with all the table authors, so I've come up with a dif file for each table that you need to apply using VPU's patching system "VPURemix". This way, the original author's work doesn't get touched; think of the patching systems as an easy way to keep you from adding code snippets to the tables manually.

    Manual coding:
    If you don't want to use the patching system or if you want to apply the code to another table that isn't listed above, here are the instructions for manually applying the code. All who don't want to apply code manually should skip this section:
    At the top of the table code, add:
    '****** PuP Variables ****** Dim usePUP: Dim cPuPPack: Dim PuPlayer: Dim PUPStatus: PUPStatus=false ' dont edit this line!!! '*************************** PuP Settings for this table ******************************** usePUP   = true      ' enable Pinup Player functions for this table.  cPuPPack = "StarTrekTOS" ' name of the PuP-Pack / PuPVideos folder within PinUPSystem\PUPVideos for this table '//////////////////// PINUP PLAYER: STARTUP & CONTROL SECTION ////////////////////////// ' This is used for the startup and control of Pinup Player Sub PuPStart(cPuPPack)     If PUPStatus=true then Exit Sub     If usePUP=true then         Set PuPlayer = CreateObject("PinUpPlayer.PinDisplay")         If PuPlayer is Nothing Then             usePUP=false             PUPStatus=false         Else             PuPlayer.B2SInit "",cPuPPack 'start the Pup-Pack             PUPStatus=true         End If     End If End Sub Sub pupevent(EventNum)     if (usePUP=false or PUPStatus=false) then Exit Sub     PuPlayer.B2SData "E"&EventNum,1  'send event to Pup-Pack End Sub ' ******* How to use PUPEvent to trigger / control a PuP-Pack ******* ' Usage: pupevent(EventNum) ' EventNum = PuP Exxx trigger from the PuP-Pack ' Example: pupevent 102 ' This will trigger E102 from the table's PuP-Pack ' DO NOT use any Exxx triggers already used for DOF (if used) to avoid any possible confusion '************ PuP-Pack Startup ************** PuPStart(cPuPPack) 'Check for PuP - If found, then start Pinup Player / PuP-Pack '*************************************************************************************** Usually, somewhere between the declaration of constants (lines starting with "Const") and the variable dimensions (lines starting with "Dim") is a good place to add that code.
    After doing that, run the table to see if it is playable without throwing errors. The videos should be playing, but you won't be able to pause/skip, as we haven't added yet the corresponding code. Stop playing and go back to the editor, will ya?
    Next, add the Magnasave controls by searching the existing code for the term "magnasave". If it's NOT there, we're fine and can savely add our magnasave button definition into a new line of it's own right within the definition of the function "Sub Table1_KeyDown". Add this code:
        If keycode = LeftMagnaSave Then         PuPevent 801     End If     If keycode = RightMagnaSave Then         PuPEvent 800     End If We're done! Test-play, remember to save the table.
    If your above search has found Magnasave code, you'll have to integrate that with the new code. For tables using JP's LUT code like Pit Stop, use something like this:
        If keycode = LeftMagnaSave Then         bLutActive = True         SetLUTLine "Color LUT image " & table1.ColorGradeImage         PuPevent 801     End If     If keycode = RightMagnaSave Then         If bLutActive = True Then              NextLUT         Else             PuPEvent 800         End If     End If
    Instructions:
    Download the package and unblock it if applicable Extract the folder "StarTrekTOS" into your PUP-pack folder (usually something like C:\vPinball\PinUPSystem\PUPVideos) Extract the dif files into a temporary folder (e.g. C:\temp) If you don't have it, download VPU's patching system "VPURemix" and expand it to any folder on your PC, e.g. C:\vPinball\VPPatch64 Download the original tables that you want to apply the patch to. You can follow the .url files in the zip to accompish that or just copy and paste the URLs below into the address bar of your browser: 
    Star Trek (Gottlieb 1971) 1.2 BorgDog
    Star Trek (Bally 1979) 2.1.1 rothbauerw
    Star Trek Mirror Universe (Bally 1978)
    Star Trek 25th Anniversary (Data East 1991)_Bigus(MOD) 1.1
    Star Trek 25th Anniversary (Data East 1991) 1.0.0 versins77
    Star Trek Spock Tribute 1.0.0 Iceman Apply the patch for the desired table(s): as a result, you should obtain a modified VPX file. Put those files into your tables folder (e.g. C:\vPinball\VisualPinball\Tables)  
    PUP-pack options:
    The PUP-pack videos can be positioned on topper, backglass or full DMD screen, with or without an overlay. It comes with these options:
    1-Video on backglass, no overlay
    2-Video on backglass with overlay-frame
    3-Video on fullDMD, no overlay
    4a-Video on fullDMD,overlay-screen
    4b-Video on fullDMD,overlay-bridge
    4c-Video on fullDMD,overlay-sickbay
    4d-Video on fullDMD,overlay-tricorder
    5-Video on topper, no overlay
    6-Video on backglass with B2S (supplied by @Justthebest, thank you)
    To apply any of them, execute the corresponding batch file in the PUP-folder (e.g. C:\vPinball\PinUPSystem\PUPVideos\StarTrekTOS).

    Table authors: 
    I hope that all table authors are OK with this PUP-pack. I'd be more than happy if you would add the code to your next release as a sort of backport. My edits are trivial and most of it was blatantly taken from @Nailbuster's code. Some tables use the Magnasave buttons for LUT, so the interfering code needs to be adapted accordingly.
     
    Known Issues:
    If you want the PUP-pack video to play on the fullDMD for one table and on the topper for another table for example, you can't get away with just one folder "StarTrekTOS" within the PUPVideos folder. Create two instead and name them "StarTrekTOSFullDMD" and "StarTrekTOSTopper" or similar and refer to that name in the code section in the variable definition for cPuPPack.
     
    For reasons of laziness and lacking coding skills I've removed the LUT code that came with Star Trek 25th Anniversary (Data East 1991) from versins77 that was triggered with the Magnasave buttons to selfishly accomplish my little greedy needs. I'd appreciate code donations to re-add the LUT selector to accomplish both LUT at well as video jukebox functionality.
     
    The table Star Trek 25th Anniversary (Data East 1991) came with ROM music. To silence only that music without muting the ROM sounds completely I've modified the altsound package found on http://altsound.vpin24.com/. To enable that option, copy the folder trek_201 from the package that resides in the folder "Altsound Star Trek 25th Anniversary (Data East 1991)" into the altsound folder on your hard drive (usually C:\vPinball\VisualPinball\VPinMAME\altsound). Then start the game, hit [F1] and change the value of the field "Alt Sound Mode (0-3)" from 0 to 1. Hit OK to return to the game, quit the game and close VPX to restart vpinmame. 
     
    The Mirror Universe table is a very unofficial and work-in-progress project that gains a lot with the fun backglass by CarnyPriest.
    I hope that some will find this PUP-pack fun and apologize for the long read. More PUP-packs coming if you're interessted; all reviews and comments are welcome.
     
    Enjoy
     
    Joachim

    512 downloads

       (1 review)

    2 comments

    Submitted

  2. Star God (Zaccaria 1980) FULL DMD Animated MP4

    Star God (Zaccaria 1980) FULL DMD Animated MP4. 

    136 downloads

       (0 reviews)

    1 comment

    Submitted

  3. SpongeBob's Bikini Bottom - Vídeo DMD

    SpongeBob's Bikini Bottom - Vídeo DMD

    213 downloads

       (0 reviews)

    0 comments

    Submitted

  4. Simpsons Treehouse of Horror PuPPack

    Reupload from VPinball
     
    This one was a lot of fun to do!! Modeled after a handful of the Halloween episodes. Thanks to Apophis for his table and the pupoverlays!!!
     
    Grab both links and use the included muted rom if you want. Create an alias for this puppack so you can play the original table and pup as well! 
     
    If you're using the muted rom rename the MUTEDROM.zip to simpprty.zip and place into your vpinmame/roms folder
    simpprtyh goes into your pupvideos folder - run the bat file for your setup - again create an alias for this. https://www.youtube.com/watch?v=6NhWvUN9_so&t=6s
    If you don't want the music, use the included editthispuppack.bat file and set screen 4 to "off"!
     
    This is for Fun DO NOT SELL or Redistribute.

    5059 downloads

       (3 reviews)

    16 comments

    Updated

  5. Star Wars Bounty Hunter - Vídeo DMD

    Star Wars Bounty Hunter - Vídeo DMD

    77 downloads

       (0 reviews)

    1 comment

    Submitted

  6. Street Fighter 2 Starlion MoD - Vídeo DMD

    Street Fighter 2 Starlion MoD - Vídeo DMD

    101 downloads

       (0 reviews)

    0 comments

    Submitted

  7. Stranger Things - Vídeo DMD

    Stranger Things - Vídeo DMD

    208 downloads

       (1 review)

    0 comments

    Submitted

  8. Sleepwalkers - Vídeo DMD

    Sleepwalkers - Vídeo DMD

    93 downloads

       (0 reviews)

    0 comments

    Submitted

  9. Scarface Pup-pack

    New version Thanks to Gman77. 
    Press download button for the good version  (Scarface-20230817T201908Z.rar)(2,16 gbs).
    Or download the other link for the last BETA version...you will find down above this comments 
    Or you can download my first  one (ScarfacePuP-Pack.zip... 1,39 gbs) THIS IT`S NOT RECOMENDED.
     
    Now..the  ball- lost and launch-ball videos are running fine.
    The quality videos has been upgrading...and everything thanks to gman77.
     
    I put more videos for every game-mode (11 game.modes and the easter egg) and if you have completed or not completed the game-mode it`s displayed on the screen ..(only on BETA development version)
     
    There are videos for ball-locked and multiball and extra-ball..
     
    Added more videos for randomize all the videos when you are playing the table..
     
    The table music and the volume videos now has been fixed.. thanks to gman77..
     
    This version it`s thanks to gman77, but this table it`s so difficult for pup-pack (no rom=no PUPCapture) and our project continues in BETA version in gdrive, if you want to join us for help ..you will be welcome..
     
     A new version will come , stay tune ( now i have to add texts in one topper screen and quit all texts from the videos...and i have to build more good-looking overlays, maybe ball saved will work in a future (not now).
     
    This it`s my version not approved by gman77, but the last version we will continue developing...
    Everything we are able to do at this point, it`s here.. 
     
    https://drive.google.com/drive/folders/1SGaLmnxJQjMVcqepplU53Tt4pA31sz5d?usp=sharing
     
     
    I want to thank to JpSalas and Gman77...and the Terry Red tutorials...and everybody in this world (i want to remember Manofwar,Chispamaster, Lord Hiryu, Akiles, Mcfly, etc etc etc etc)

    1603 downloads

       (3 reviews)

    47 comments

    Updated

  10. Shovel Knight Full DMD Video

    Shovel Knight apron/DMD/3rd screen attract video.
     
     

    155 downloads

       (1 review)

    3 comments

    Updated

  11. Space Cadet Loading

    This is an Image only No Animation. Yes, the extension is MP4 as I have had issues with mixed media and popper if works for you you can change it back to a .PNG file not sure if that will affect transparency. I may do more of these but depends on the interest in non-animated. Apologies for uploading under animated but I didn't see a section for non-animated loading.
     Hopefully, someone will enjoy it. 

    138 downloads

       (1 review)

    0 comments

    Submitted

  12. Speed Racer Full DMD Video

    Speed Racer apron/DMD/3rd screen attract video.
     
    Features the original credit-less ending.
     
     
     
     

    153 downloads

       (0 reviews)

    4 comments

    Updated

  13. Sands of the Aton - Vídeo Full DMD

    Sands of the Aton - Vídeo  Full DMD

    135 downloads

       (0 reviews)

    1 comment

    Updated

  14. Sands of the Aton Full DMD Video

    Full DMD Video for JPSalas-Dea Tee Table Sands of the Aton
    16 x 9 Video
     

    Full DMD 720p 30f.mp4

    114 downloads

       (0 reviews)

    0 comments

    Updated

  15. snoopy Fulldmd

    snoopy Fulldmd, Table 146, PINBALL FX

    71 downloads

       (0 reviews)

    0 comments

    Submitted

  16. Snoopy Pinball - Pinball FX centered FULLDMD video. 

    Snoopy Pinball - Pinball FX centered FULLDMD video.
     
    table_146

    88 downloads

       (0 reviews)

    1 comment

    Submitted

  17. Star Wars Death Star Assault - Galactic Edition (FullDMD Video)

    A pastice of table attract mode videos, all courtesy of @TerryRed

    178 downloads

       (0 reviews)

    0 comments

    Updated

  18. Starship Troopers FullDMD

    Hi ! 😃
    2 files: FullDMD and without DMD for Starship Troopers 1920x1080 FHD.
    Enjoy !


    457 downloads

       (1 review)

    0 comments

    Submitted

  19. Scooby Doo Full DMD Video

    Scooby Doo apron/DMD/3rd screen attract video.

    308 downloads

       (0 reviews)

    2 comments

    Updated

  20. Simpsons Treehouse of Horror Full DMD

    Simpsons Treehouse of Horror apron/DMD/3rd screen attract video.

    196 downloads

       (0 reviews)

    0 comments

    Submitted

  21. Spiderman Vault Edition PupPack

    Here a reupload from my Spiderman Vault Edition PupPack. 
    This PupPack comes with a muted rom ,that turned off the original table Sound and  you can enjoy high Quality sound from the PupPack.
    Choose one of the ...bat files that match your setup and have fun

    2656 downloads

       (5 reviews)

    20 comments

    Submitted

  22. Star Wars Bad Batch fulldmd video

    Fulldmd video for the 2022 table "Star Wars-The Bad Batch" by topper2k

    240 downloads

       (0 reviews)

    1 comment

    Submitted

  23. Scott Pligrim fulldmd video

    Fulldmd video for the 2023 PUP-pack "Scott Pilgrim vs The World PupPack" by dunriwikan45

    80 downloads

       (0 reviews)

    0 comments

    Submitted

  24. Super Mario T-Arc For Themed Cab

    Super Mario T-Arc For Themed Cab

    98 downloads

       (0 reviews)

    1 comment

    Submitted

  25. Stranger Things T-Arc

    T-Arc for themed Cab

    90 downloads

       (0 reviews)

    0 comments

    Submitted

×
  • Create New...