Jump to content
  • What's Next?

     

     

  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. #

167 files

  1. Atlantis (Bally) Pup Pack

    Peace Y'all,
     
    "Come on Crew!"
     
    Unzip and place the atlantis folder in your pup folder. 
     
    This pup pack is designed for a three screen setup and it works with Flex-DMD, so you'll need it to move the score around.
     
    I'd like to give a shout out to @hauntfreaks for allowing me to use his backglass.  When playing you might forget this isn't a real b2s.  This is not a static Pup Backglass.  The jackpot lights work, are accurate and the backglass lights go out during multiball just like the real b2s.
     
    The more I messed around with making this, the more I liked how it turned out.  I went through several movies before I settled on the ones I used.  Can you guess what they are?  What I thought going in to making this Pup Pack and what I ended up with were two different things completely.  I learned more making this pup pack than all the other before this, combined.  This was a labor of love, very frustrating at times but very rewarding now that it's done.
     
    Most of these Alpha Numeric tables were the pinballs I played in college.  They bring back fond memories.  This is why I plan to do pups and mini-pups for them.
     
    I will make upgrades to all my Pup Packs when necessary and as my understanding of this craft increases.  Otherwise....... Enjoy!
     
    Precise
     
    All Logos, Copyrights and Trademarks are property of their respective owners.
     
    PROVIDED STRICTLY FOR PERSONAL / HOME USE AND NOT FOR COMMERCIAL SALE / RE-SALE OR DISTRIBUTION!

    VIRTUAL PINBALL ALWAYS HAS AND ALWAYS WILL BE FREE TO ANYONE!!!!

    314 downloads

       (3 reviews)

    14 comments

    Updated

  2. 1960s Beach PUP-pack

    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. This PUP-pack brings you beach-themed music from the era in some videos. After all, it's an enhanced sound mod.
     
    Songs:
    Beach Boys - Don't Worry Baby Beach Boys - Surfin USA Beach Boys - Surfer Girl Beach Boys - California Girls Bobby Freeman - C'mon and Swim Four Seasons  -  Sherry Jan & Dean - Ride The Wild Surf Jan & Dean - Surf City Ronny & The Daytonas - G.T.O. The Chantays - Pipeline The Hondells -  Little Honda The Rivieras - California Sun - 1964 The Surfaris - Wipe Out The Ventures - Walk, Don't Run Add your own videos as you see fit. It should not come as a surprise that the video material from that era lacks in resolution, so sorry for that. Some of the videos feature the original artist, while others are cover versions or just show footage of the era. 
     
    Tables:
    There are several tables that have similar themes. The PUP-pack "1960s Beach" is meant to be used with tables from the sixties that deal with beaches and surfing.
    It can be used with the tables 
    Aloha (Gottlieb 1961) Beach Bums (Original 2018) Smart Set (williams 1969) Surf Side (Gottlieb 1967) Tropic Fun (Williams 1973) 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.
     
    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 and continue reading at the section "PUP-pack instructions:".
    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 = "60sBeach" ' 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 with applying the code manually! Test-play and remember to save the table ;-).
     
    PUP-pack instructions:
    Download the package and unblock it if applicable Extract the folder "60sBeach" 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 and do so. You can follow the .url files in the zip archive to accomplish that or the links below:  Aloha (Gottlieb 1961) 1.1 Beach Bums 1.0 Smart Set (Williams 1969) 1.00 Surf Side (Gottlieb 1967) 1.0d Tropic Fun (Williams 1973) 1.06  
    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:
    Video on backglass, no overlay Video on backglass with overlay-frame Video on fullDMD, no overlay Video on fullDMD with overlay-frame Video on topper, no overlay 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\60sBeach).

    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:
    For reasons of laziness and lacking coding skills I've removed the LUT code that came with Tropic Fun that was triggered with the Magnasave buttons to selfishly accomplish my little greedy needs. Anyone who's ready to fix that to make both work is welcome.
    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 "1960sBeach" within the PUPVideos folder. Create two instead and name them "1960sBeachFulldmd" and "1960sBeachTopper" or similar and refer to that name in the code section in the variable definition for cPuPPack.
     
    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

    164 downloads

       (0 reviews)

    2 comments

    Submitted

  3. Jumanji Pup Pack

    Cheers VPUniverse!
     
    - Tested and works with VPX 10.7.4, 10.8
    - unzip and select the pupoption you need
    - Make sure to check out the "expansion clip" folder and add all the clips from movies 2 and 3 you would like to cut and paste to the appropriate        folder...... and yes, that includes all "The Rock" clips except for ONE which I left in as a teaser.  Who doesn't want the Rock on your pinball table?! If ya smellllllllllll!!!!
    - Trying to gather info on what might be causing toppers to spam "ball lost " for certain users/setups......   its kinda behaving as if pupevent 100 pupevent 101 are in the wrong spot on table file, but i'm pretty sure that is correct..... its gotta be something else..... trying to poinpoint it.....you could temporarily disable the ball lost callouts on the toppers for a quick fix i think until resolved..... you MIGHT have to disable the looping mission start callouts also tho possibly, because ball lost doubles as one of 2 killswitch clips for the looping toppers.  gathering info, bear with me.  It's a problem for me to fix tho because I can't reproduce the issue..... they all fire properly for me.... just for info i load my tables from d: and popper is on d:...... i'm hearing it may be happening for people loading a table from c:........ need more info.  If you are still having issues with the pup send me a message, trying to get an estimate how extensive the issue is and how many users it is effecting still.
     
    Major Thanks to @balutito for this amazing table.  Another masterpiece and a pleasure to work with him on this creation once again! 
    Major Thanks to @Jagandy82for his amazing alternate overlay and all the text callouts he put together for this pup!
    Major Thanks to @Nesta78for this really awesome animated video backglass he put together for this, was really a missing piece that was the cherry on top to complete it!
    Major Thanks to the VPUniverse community!  Pinball is Forever my friend!
     
    If any creators need a pup discreetly made for a table hit me up,  I've been slowing down my pace of doing pups recently until a project inspires me. I literally only talk to a few creators, love yall man.   Got a few ideas for the next project, but detours are always welcome!  Unlock the key to imagination!
     
    Grab the updated table file, this one has a minor change added
    https://vpuniverse.com/files/file/17224-jumanji/
     
     
    All Logos, Copyrights and Trademarks are property of their respective owners.
     
    PROVIDED STRICTLY FOR PERSONAL / HOME USE AND NOT FOR COMMERCIAL SALE / RE-SALE OR DISTRIBUTION!

    VIRTUAL PINBALL ALWAYS HAS AND ALWAYS WILL BE FREE TO ANYONE!!!!  
     
     

    3384 downloads

       (6 reviews)

    25 comments

    Updated

  4. Phantom of the Opera Mini-Pup

    Peace Y'all,
     
    Grasshopper or Scorpion?
     
    Unzip and place the poto_a32 folder in your pup folder. 
     
    This Mini-Pup Pack is defaulted for a 3 screen setup with the Pup on the DMD.  This pup works with Flex-DMD, so you'll need it to move the score around.
     
    I'd like to give a big thanks and shout out to @hauntfreaks for allowing me to use his beautiful backglass for this project.
     
    This is the first in my collection of Mini-Pups.  These are designed for the 3rd (DMD Screen) of a cabinet setup.  These will be on older tables (mainly EM tables and early Solid State).  You can switch the screens around in the editor if you don't have a third screen or if you want to use the DMD as a backglass.  The Pup on the backglass is not the intended purpose but works just fine (I tried it).
     
    After much testing I'll say this pup works better with the rom audio.  Too much clashing going on with the altsound files.
     
    I've noticed a random video here and there and I'll fix it as soon as I can isolate what's causing it.
     
    Otherwise enjoy this.  It makes a nice addition to the just released table by @TastyWasps
     
    I will make upgrades to all my Pup Packs when necessary and as my understanding of this craft increases.  Otherwise....... Enjoy!
     
    Precise
     
    All Logos, Copyrights and Trademarks are property of their respective owners.
     
    PROVIDED STRICTLY FOR PERSONAL / HOME USE AND NOT FOR COMMERCIAL SALE / RE-SALE OR DISTRIBUTION!

    VIRTUAL PINBALL ALWAYS HAS AND ALWAYS WILL BE FREE TO ANYONE!!!!

    301 downloads

       (2 reviews)

    1 comment

    Updated

  5. 4 Aces (Williams 1970) music video PUP-pack

    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.
     
    I've created a small PUP-pack for the 1970 Williams table "4 Aces" with some music videos (mainly from the 1960s) that are more or less go-go dancer themed. It should not come as a surprise that the video material from that era lacks in resolution, so sorry for that. Some of the videos feature the original artist, while others are cover versions or just show footage of the era. The intro features a song that was well-known in Germany for being the trailer for tv show "Musikladen" that ran between mid-seventies and mid-eighties. 
     
    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. Holding down the left magnasave button enables the LUT selector that the original table came with. The gameplay itself doesn't have any impact on video playback.
     
    The original version of the table 1.0.2 was released in August 2023 at VPF and is being used with kind approval by table author @jpsalas JP Salas. The table doesn't have a plunger; you launch the ball from the drain.
    The PUP-pack videos can be positioned on topper, backglass or full DMD screen, with or without an overlay. It comes with these options:
    Video on backglass, no overlay Video on backglass with overlay-frame Video on fullDMD, no overlay Video on fullDMD with overlay-frame Video on topper, no overlay To preserve the score display it's advisable to use the b2s file that originally came with the table or to combine it with the full DMD b2s file:
    If you're short on screens I recommend hiding the backglass portion of the full DMD b2s and playing the videos on the backglass instead.
     
    There is a PDF that comes with the package that explains the PUP-pack options. If you only want the music and not the videos, just play the pup-pack in the background hidden behind your backglass.
     
    I'd appreciate comments if you find PUP-packs like this one usefull; I have some other video PUP-pack ideas on my mind for older, music or dancing-themed EM tables. Proposals would be welcome.
    Thanks
     
    Joachim

    196 downloads

       (3 reviews)

    2 comments

    Submitted

  6. Starship Troopers (English) Pup Pack

    Peace Y'all,
     
    Do you get me?!
     
    Unzip and place the startrp2 folder in your pup folder. 
     
    This pack is defaulted for a 3 screen setup.  If using a 2 screen setup please take the files from the screens folder (2 screen subfolder) and place them in the main startrp2 folder, overwriting the files already there.  This pup works with Flex-DMD, so you'll need it to move the score around.
     
    I'd like to give a shout out to @harrykoseck and @DeathInc for their prior Pup Pack submissions for this table.  They inspired me to make my own.
     
    This Pup Pack was made from scratch and is completely done in English.  It was a labor of love because of my affinity to the vpx table, movie and franchise.  This Pup Pack was made for me, but because I'm such an awesome individual, I'm sharing it with the community. 😉
     
    Much to see here with surprises around every corner.  Like the rest of my Pup Packs, I wanted it to be busy.
     
    I will make upgrades to all my Pup Packs when necessary and as my understanding of this craft increases.  Otherwise....... Enjoy!
     
    Precise
     
    All Logos, Copyrights and Trademarks are property of their respective owners.
     
    PROVIDED STRICTLY FOR PERSONAL / HOME USE AND NOT FOR COMMERCIAL SALE / RE-SALE OR DISTRIBUTION!

    VIRTUAL PINBALL ALWAYS HAS AND ALWAYS WILL BE FREE TO ANYONE!!!!

    558 downloads

       (5 reviews)

    10 comments

    Submitted

  7. The Exorcist Puppack

    * Download the File
    * Unzip it
    * Put it inside YOur Pupvideos FOlder
    * Open the exorcist Folder
    * Chose YOur screen option read the txt file
    * Run the Bat file
     
    * download the Table again with the new update if  YOu didn t already !!!
        if YOu dont have the lastet version from the Table the Puppack Will not Work
     
    * Open the table script , look at the line  204  
    0 - will use the original music table while YOu playing
    1 - will use the OST from the Movie directly from the PUP (BEST OPTION)
     
     or CHANGE  IT TO WHATEVER YOU WANT
     
    Table  by Joe Picasso and REMDWAAS1986  here :
     
     
    Theres a folder named ExtraOverlays 
    inside theres some green Backglass overlays  i did .. use them IF U want!!
     
    Enjoy
     
    Thanks to :
     
    Tuga PEdro Peres
    Tuga MArio Paulo
    Joe Picasso
    REMDWAAS1986
    Balutito
    Darrin Chamberlin
    Ray Pritchard
    TheLivingArcade
    AND many Others
     
    Thaks to All VP Community
     
     
    **All Logos, Music,  Copyrights and Trademarks are property of their respective owners.
          PROVIDED STRICTLY FOR PERSONAL / HOME USE AND NOT FOR COMMERCIAL SALE / RE-SALE OR DISTRIBUTION!
     
     

    1149 downloads

       (8 reviews)

    11 comments

    Updated

  8. John Wick (BabaYaga Pinball Edition )

    *********************John Wick Puppack*************************
     
    Hi Everyone
     
    *Download the Zip File 
    *Unzip it
    *Run the Bat file You want and You are ready to play
    *Set the volume for the videos and the music  to  whatever You want inside the Pup - Editor
     
    **** YOU DONT KNOW HOW TO PLAY - RULES ARE INSIDE  , READ IT ****
     
     
    *If You are a DOF user download the Gif Images here : 
     
     
     **If the link asks for a decrypt key, use a different browser than chrome. Place the SD gif image in your directoutput folder containing the ini files. Be sure to update your ini files if you haven't recently.
    If you have a HD matrix, copy the code from the back effects HD section and paste over the normal back effects section then save and update. Use the HD gif instead of the SD gif.
    This only applies if you have a MX LED back matrix.
    Thanks 🙏
     
    Darrin Chamberlain
     
    https://mega.nz/file/nvA0FJyJ#mlXRqcv3nxZqkIUwAN23_sS3_5KjfSxFmGWeFYWe0uo
     
     
    **************************************************************************
     
    *New Updated Table version 1.2
     
    Table here : 
     
      https://vpuniverse.com/files/file/16522-john-wick-babayaga-pinball-edition/
     
    **************************************************************************
     
    *PF Loading  video by Nesta78 here :
     
     https://mega.nz/file/mz5VlBpA#GiJ_QOXxyf23n_HOE4x-8C_DhHr-QOqiJY77hIt_oKc
     
    **********CREDITS******************
     
    Thanks to Ludo Balutito for this amazing  REskin
    Thanks To Joe Picasso for provide the Amazing JOhn Wicks Car 3D
    THanks To DArrin and Jim (DOf Masters)
    Thanks To the MAster JP Salas 
    Thanks Toni - The_ Living_ Arcade 
    Thanks NEsta78 for the Amazing PF loading Video 
    and Finally none of this will be possible without my TeamTuga' s MAtes :
    MArio PAulo and Pedro Peres.
     
    THANKS TO ALL VPX COMMUNITY
     
    ******ALL OF THIS IS FREE DONT BUY IT******* 
     
    ENJOY IT

    **All Logos, Music,  Copyrights and Trademarks are property of their respective owners.
          PROVIDED STRICTLY FOR PERSONAL / HOME USE AND NOT FOR COMMERCIAL SALE / RE-SALE OR DISTRIBUTION!

    3781 downloads

       (11 reviews)

    24 comments

    Updated

  9. 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.

    3670 downloads

       (3 reviews)

    15 comments

    Updated

  10. Johnny Mnemonic Pup Pack

    Peace Y'all,
     
    Hit me!
     
    Unzip and place the jm_12r folder in your pup folder. 
     
    This pack is defaulted for a 3 screen setup.  If using a 2 screen setup please take the files from the screens folder (2 screen subfolder) and place them in the main jm_12r folder, overwriting the files already there.  This pup works with Flex-DMD, so you'll need it to move the score around.  There is no video or trigger for REPLAY or SPECIAL.  I changed the settings in the rom so that they both award Extra Ball.  If you really want me to include the SPECIAL and REPLAY, let me know.  If I get enough call for them, I'll include them in an update.
     
    I will make upgrades to all my Pup Packs when necessary and as my understanding of this craft increases.  Otherwise....... Enjoy!
     
    Precise
     
    All Logos, Copyrights and Trademarks are property of their respective owners.
     
    PROVIDED STRICTLY FOR PERSONAL / HOME USE AND NOT FOR COMMERCIAL SALE / RE-SALE OR DISTRIBUTION!

    VIRTUAL PINBALL ALWAYS HAS AND ALWAYS WILL BE FREE TO ANYONE!!!!

    643 downloads

       (3 reviews)

    8 comments

    Submitted

  11. JP's Ghostbusters Slimer Dual Table Pup

    Use this link for pup, https://drive.google.com/drive/folders/1pZLi3Ql7tHGyu_kL1hxOifGbMGAtLWw3?usp=drive_link
     
    Use VPX 10.8 for the 10.8 table file
    Use VPX 10.7.4 64 bit for the 10.7.4 table file
     
    Pup ONLY works with the 2 included table files, this table is pupevent only, pupcapture is impossible for this pup.
     
    This pup is still a lil bit of a work in progress, a few triggers are still disabled because I can't find the right spot for a few triggers such as multipliers, jackpots, 2x 3x jackpots and multipliers, super jackpots.  Spots you think would work, just don't.... lol.   This would be SIMPLE if pupcapture was possible but it is not for this DMD.  Pupevent only.  I will update this if i can get a lil help with some pupevent locations that need to be moved around.  Slimer clips are ONLY triggered when slimer Appears or when Slimer is defeated.  I might have to adjust location of pupevent for ball lock also.
     
    Major Thanks to @jpsalas  for creating these epic tables and being super cool to let me make pups for them.  You're a legendary creator, we love you man.  Thank you
    Major Thanks to @Jagandy82 for making the amazing overlays for this,  you rule my guy.  Thank you
    Major Thanks to @Nesta78 for his epic ghostbusters loading screen. Thank you
    Major Thanks to @marcobus2005 for his sweet Slimer wheel.  Thank you 
    Major Thanks to @Cliffy aka desktop master for testing this out for me on 10.8 when i was initially having issues with the installation, all is well now!!! He also showed me how to do .bat pupoptions, will try to implement that from here on!  Thank you
    Major Thanks to @nagaidevil for playtesting and creative input, you rule man! Thank you
    Major Thanks to All !
     
    Angry Video Game Nerd clips are Optional, copy the clips from the AVGN to the "temporary folder" to add them to the playfield triggers.

    Default Attract is currently the Angry Video Game Nerd Attract, change the attract to the 1080p attract trailer if you prefer it instead. Do so by changing all file selections in triggers of pupeditor located underneath the ***Attract*** seperator
     
     
     
     
    All Logos, Copyrights and Trademarks are property of their respective owners.
     
    PROVIDED STRICTLY FOR PERSONAL / HOME USE AND NOT FOR COMMERCIAL SALE / RE-SALE OR DISTRIBUTION!

    VIRTUAL PINBALL ALWAYS HAS AND ALWAYS WILL BE FREE TO ANYONE!!!!  
     
     
     
     
     

    1383 downloads

       (7 reviews)

    9 comments

    Updated

  12. 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)

    970 downloads

       (3 reviews)

    44 comments

    Updated

  13. Terminator 3 pup_DarkPhoenix Mod V2.00.7z

    This is a Terminator 3 (term3) pup with remastered pupcapture triggers. The origional pup did not work with the latest V4 of the rom.
    Fixed pupcapture triggers (majority)
    Fixed videos popping up and obscuring playfield
    I do not know the origional aurthor of this pup pack, possibly PEandS1Ws, Trochjochel. If so, Thank you for this development, seems the ROM it was based on is not around. The font in the pack and in the v4 of the ROM internal DMDs are different. so it will not trigger. If any origional author wants the pack removed the request will be honored.
    With that said, We recaptured the DMD based on the v4 ROM, this will now work on the BIGUS MODs and SIGGI MOD tables.  Mod and testing credits to Tim Waugh, Alain Fortier, Dave Dee, Sadha Miyahira  ENJOY...
    T3 information.txt

    1158 downloads

       (1 review)

    17 comments

    Updated

  14. Megaman Pup & Table

    Use this link for  pup, https://drive.google.com/drive/folders/1ABtQU1V81XneNTA2ql3z0lBmJLEtsex2?usp=drive_link
     
    Major Thanks to @sebastiendelf for makin this killer table, takes us back to the past man thank you.  Thank you for lettin me make a pup for it, it's been fun and can't wait for you to get back from vacation to check it out!  
    Major Thanks to @Jagandy82 for this absolutely fantastic overlay set AND spot on perfect animation FullDMD, 10 stars man thank you so much.    So glad you're an 80s gamer too man, great taste!
    Major Thanks to @nagaidevil for invaluable advise/knowledge & good taste with what would be cool. Also helping fix bugs and quirks on these pups, and being an awesome dude, seriously man ty so much.  Can't thank ya enough!  Willy's Wonderland it is!!
    Major Thanks to @marcobus2005 for his sweet Popper wheel for megaman, love it man thx for letting me post it with the pup
    Major Thanks to Angry Video Game Nerd!!! I've watched EVERY SINGLE NES review you've ever done..... more than a few times.... LOL.  If I ever have any excuse to get you into a pinball table I will in the future.  If you happen to read this.... you need to get a virtual pinball cabinet made  Thank you, keep doing what you do bro!!! 
    Major Thanks to @SERGIOSOUZAfor his new megaman backglass this is perfect thank you so much!!!!!!!!!!!!! Throw him a like please!!!!!!
    Major Thanks to you for checking it out..... if you're not an 80s kid or NES Gamer, you just might not "get it"
     
     
    There's a few things I'd like to change out at some point, possibly the topper backglasses..... main screen backglass.....  If anyone happens to have any video links to something I could edit to be backglasses let me know and i'll pull them if it will be an upgrade visually.    
     
    1.  I'm very picky with music, i'm a guitarist and prefer only the tracks inside the pupmusic folder.   IF you want to change/add music check pupoptions folder for the other audio options.  Releasing it with the tracks that pump me up.  Thats the whole point of this pup to me, pump ya up for  a fast action cool table.
     
    2.  If anyone needs pulp fiction pup link message me or one of your friends
     
     
     
    All Logos, Copyrights and Trademarks are property of their respective owners.
     
    PROVIDED STRICTLY FOR PERSONAL / HOME USE AND NOT FOR COMMERCIAL SALE / RE-SALE OR DISTRIBUTION!

    VIRTUAL PINBALL ALWAYS HAS AND ALWAYS WILL BE FREE TO ANYONE!!!!  
     
     
    Cheers VPUniverse!!!!!!!
     
     
     

    729 downloads

       (5 reviews)

    16 comments

    Updated

  15. Maverick Pup Pack

    Peace Y'all,
     
    This is my first Pup Pack released to the public.
     
    First I'd like to give a strong shout out to hawkeyez88 and Jagandy82 for assisting with this project.  Both were a pleasure to work with.
     
    Unzip and place the mav_402 folder in your pup folder.  To get this Pup Pack to work with the VPW table, you'll need to change line 162 in the table script PuPHide = 1 --- you'll need to change it from 1 to 0
     
    This pack is defaulted for a 3 screen setup.  If using a 2 screen setup please take the files from the screen options folder (2 screen subfolder) and place them in the main mav_402 folder, overwriting the files already there.  This pup works with Freezy, so you'll need it to move the score around.
     
    If using a 3 screen setup and you want your DMD to look like mine, I suggest you download Daytona24's FULLDMD for this table.  It looks great and is featured in my video.
     
     
    I will make upgrades to all my Pup Packs when necessary and as my understanding of this craft increases.  Otherwise ante up and enjoy.
     
    PIPAllah
     
    All Logos, Copyrights and Trademarks are property of their respective owners.
     
    PROVIDED STRICTLY FOR PERSONAL / HOME USE AND NOT FOR COMMERCIAL SALE / RE-SALE OR DISTRIBUTION!

    VIRTUAL PINBALL ALWAYS HAS AND ALWAYS WILL BE FREE TO ANYONE!!!!

    699 downloads

       (4 reviews)

    15 comments

    Updated

  16. The Last Action Hero (Data East 1993) PUP Topper

    The Last Action Hero (Data East 1993) Interactive Topper 
    A Mini PuP Pack by @Migs (featuring 3D assets by @tomate)
     
    OVERVIEW:
    This mini Pup Pack is a recreation of the original LAH topper (3D model by @tomate for @VPinWorkshop's VR Room). The topper has been lit and retextured in Unreal Engine, and the lights mimic their real world triggers and functionality.
     
    INSTALLATION:
     
    [NOTE: This package only includes the topper. If you want Savage2B's full Pup Pack, you need to download it separately and follow the instructions below to patch it with this topper.]
     
    1) Unzip and copy the lah_113 folder to your PinUPSystem\PUPVideos folder.
    2) If you DO NOT have @Savage2b's PuP Pack for this table, available at VPUniverse, run "Option 1 - Topper Only.bat". This will add the topper as a standalone Pup Pack.
    3) If you have Savage2B's PuP Pack, run "Option 2 - PupPack on BG" or "Option 2 - PupPack on FullDMD", depending on where you want the videos to show. Both of these options will patch your existing Pup Pack with the new topper videos.
     
    Enjoy and please let me know if you have any feedback or ideas for improvement!
     
    CREDITS:
     
    Big thanks to Tomate for creating the original topper 3D model, and of course to VPW for the amazing table recreation and for permission to use the topper assets. 
    Also, thanks to Savage2b for the original LAH Pup Pack and to @yannielbory for translating it to English. Did I miss you? Please let me know!
     
    DISCLAIMER:
     
    ** FOR PERSONAL USE ONLY. DO NOT RESELL. ** This fan recreation contains unlicensed art assets. All IP is property of its respective owners and rights holders. Unauthorized monetization of these assets or any other commercial use may be in violation of copyright laws.

    266 downloads

       (5 reviews)

    2 comments

    Updated

  17. Bloodsport Pup Balutito Mod

    Use this link for pup, https://drive.google.com/drive/folders/1FuN-5jTcnO2CR6zdrz84uDHRxiwEoRuk?usp=drive_link
     
    Major Thanks to @balutitofor this amazing reskin of a cult classic, show this man some love for making this reskin its awesome.  Thank you very much for letting me make a pup for it, truly a pleasure as always. 
    Major Thanks to Pedro Pires from Team Tuga for stepping in and making an overlay set for this table.  Thank you so much man
     
    It took me about 20 seconds to decide to do the pup for this when @balutito mentioned it, thank you my guy.  Seriously, give him a like and review on all this stuff he put together.  Appreciate all of you  of the VPU community.
     
    1. Pup music is controlled by the music folder of the puppack, if you installed your own music in the visual pinball/music folder you may need to remove that or it will conflict with the pup most likely.
     
    EDIT:
     
    Add the Following to your triggers.pup file or redownload pupoptions.
    This will give you  a lower priority trigger on the playfield to restart the music after a multiball ball lost.  Otherwise music wont start until your next ball.  Can't believe I missed that, sry about that
     
    I reuploaded pupoptions in same link, this might need to be set to loop instead of normal, need to test more
     
    80,0,"***Restart music after multiball ball lost***",,0,,,,,,,,,0
    82,1,"Restart Music",E400,8,Music,,115,2,,,,normal,0
    83,1,"Restart Music",E401,8,Music,,115,2,,,,normal,0
    84,1,"Restart Music",E402,8,Music,,115,2,,,,normal,0
    85,1,"Restart Music",E403,8,Music,,115,2,,,,normal,0
    86,1,"Restart Music",E470,8,Music,,115,2,,,,normal,0
    87,1,"Restart Music",E471,8,Music,,115,2,,,,normal,0
     
     
     
     
     
     

    All Logos, Copyrights and Trademarks are property of their respective owners.
     
    PROVIDED STRICTLY FOR PERSONAL / HOME USE AND NOT FOR COMMERCIAL SALE / RE-SALE OR DISTRIBUTION!

    VIRTUAL PINBALL ALWAYS HAS AND ALWAYS WILL BE FREE TO ANYONE!!!!  
     
     
    Cheers VPUniverse!!!!!!!
     
     

    902 downloads

       (3 reviews)

    43 comments

    Updated

  18. IT Pinball Madness

    "It Pinball Madness" - It was time for us to present a PupPack for this incredible table.
    We spared no effort, utilizing scenes from both films and editing them to include plenty of action and frightening moments.
    Various screen options are available.
    Puppack created by TeamTuga.
    Special thanks to Joey for letting Us share His table with the Puppack , also Special thanks to JPSalas.
     
    You can find all the credits here:
     
    Note: Users with only one screen might not have the same experience; it's a compromise.
     
    ****** The Puppack  only Works with the table inside the download folder
     
    Thanks To all  VP Comunity 
    EnJoy It
     


    1728 downloads

       (16 reviews)

    48 comments

    Updated

  19. Yellow Submarine PUP

    Thanks to So Many for their help:
    Nailbuster: For showing me some really cool tricks.
    He makes all this happen for us.
    Hawkeyez88: "The Pup Master" I couldn't have done it without him,
    his help, coding and awesome advice.
    Dr.Nobody: For allowing me to rip his Oasis Pup.
    J.P.Salas: For allowing mod of his Speakeasy Table.
    NestorGian: For allowing use of his table and back glass mod. 
    Read the Readme.txt for options for pup and topper choices. 
    Default is Pup on back glass. 
    Pup will only work with the included table. Back glass is required.
    I have included the back glass for your convenience.
    Common Hold left magna and hit right magna to change the Lut.
    *** Use Magna keys to change between Videos. Left for previous
    video. Right for next video. True Previous / Next (Not Random)
    *** Hold left Flipper. Left magna will lower music volume and
    right magna will raise the volume.
    *** Courtesy of Nailbuster himself.
    I do not ask or accept donations. Please donate to your favorite
    charity or to some of the talented names listed above. This is a hobby for me.
    Have Fun
    Justthebest

    582 downloads

       (3 reviews)

    8 comments

    Updated

  20. JP's Captain Fantastic Pup

    Thanks to So Many for their help:
    Nailbuster: For showing me some really cool tricks and coding.
    He makes all this happen for us.
    Hawkeyez88: "The Pup Master" I couldn't have done it without him and
    his help, coding and awesome advice.
    Dr.Nobody: For allowing me to rip his Oasis Pup.
    J.P.Salas: For allowing to use his Table.
    Akiles50000: For allowing use of his table artwork.
    Hauntfreaks: For allowing use of back glass. His is the best one.
    Read the Readme.txt for options for pup and topper choices. 
    Default is Pup on back glass. 
    Pup will only work with the included table. Back glass is required.
    I have included Haunkfreaks for your convenience.
    Common Hold left magna and hit right magna to change the Lut.
    *** Use Magna keys to change between Videos. Left for previous
    video. Right for next video. True Previous / Next (Not Random)
    *** Hold left Flipper. Left magna will lower music volume and
    right magna will raise the volume.
    *** Courtesy of Nailbuster himself.
    I do not ask or accept donations. Please donate to your favorite
    charity or to some of the names listed above. This is a hobby for me.
    Have Fun
    Justthebest

    1311 downloads

       (4 reviews)

    21 comments

    Updated

  21. The Thing Pup Balutito Mod

    Use this link for pup, https://mega.nz/folder/yywzBLpY#h4plrjufehoXZBy2F_DLUg
     
    Use VPMAlias thething,ali
     
    VPX 64-Bit works great with this

    Major Thanks to @balutito for this cool reskin of the ali table and to all others involved!  It's always a pleasure sir, Thank you!!! Killer Clowns eh? lol
    Major Thanks to @Jagandy82 for his sick overlay set he made for this!! Always top-notch graphics work!
    Major Thanks to @Growat for his FUllDMD Creation!!
    Major Thanks to @Cliffy for playtesting and bein the man!
     
     
     
    Just a little attempt to bring the movie to the table! 
    The request Lines are now open!! At least until my pool finally opens up for the Summer....
     
     

    Cheers VPUniverse!!!!

    1164 downloads

       (2 reviews)

    13 comments

    Updated

  22. Game of Thrones (Dragon Mod)

    TEAMTUGA - GAME OF THRONES DRAGON MOD PUPPACK
                                 
                                     ********************************************************************
                                     *                                                                                18+                                                                                            *
                                     *                                                               Barbie Warning                                                                                    *        
                                     *            THIS PUPPACK CONTAINS CONTENT THAT SOME MAY FIND DISTURBING            *
                                     *                              Please do not play this with Your Kids in the Room                                             *
                                     *                                                                                                                                                                                   *
                                     ********************************************************************              
                              ***************** Before YOU START to do Anything Please READ this *********************
                              
    * The Download Folder only contains the Puppack and the Dif file to use with the VPU Patch (WE do not share the original Table)
     
    * First , You need the original table(not modify) from VPW v1.0.2 here :
     
     
      Option 1 - Use the GOT_Tuga_Script txt file- Copy all the text and substitute the table script, save and play.
     
      Option 2 - (Best Option) - Vpuniverse Patch - this option gives you more extras like Apron Screens Etc...
     
    * Step 1 - Download the Patch from here:
     
     
     
    * Step 2 - How to it works?? Watch and follow the video here :
     
      https://www.youtube.com/watch?v=uD3SLqSoAVM   (Thanks to Pedro Peres for the Tutorial Video)
    _________________________________________________________________________________________________________________________________________
     
    * After You done the Patch instalation 
     
      Open Your Game of Thrones Puppack Folder, then chose and run the Bat File You want for Your Set Up
     
    ***************** Option1 >>>>>> Run Bat File
    * Ideal for 4 Screens
      PupPack On FullDMD With Topper separate
      
      with this option you need to have a B2S or a loop video Playing in the BG
      just search for the one you like the most
     
    ***************** Option2 >>>>>> Run Bat File
    * Ideal for 3 Screens
      PupPack on FullDMD
      
      with this option you need to have a B2S or a loop video Playing in the BG
      just search for the one you like most
     
    ***************** Option3 >>>>>>> Run Bat File
    * Ideal for 4 Screens
      PupPack On Backglass Topper and DMD separate
     
    ***************** Option4 >>>>>>> Run Bat File
    * Ideal for 3 Screens
      PupPack and Topper on Backglass, DMD separate
     
    ***************** Option5 >>>>>>> Run Bat File
    * Ideal for 3 Screens
      PupPack and DMD on Backglass Topper Separate
      You Need to change the top of the Script iScreenCnt = 2
     
    ***************** Option6 >>>>>>>> Run Bat File
    * Ideal for 2 Screens
      PupPack, Topper and DMD on Backglass
      You Need to change the top of the Script iScreenCnt = 2
     
    *******ONLY FOR DESKTOP USERS*********
     
     Run the bat file ( option)  You want
     
    Open You Puppack editor and Turn Off the 17 , 18 and 19 screens --- save it
     
    Open the Table Script and Turn Off the Pupscreens  here :
     
      ***tuga mod****
     
       Show PupFlasher:  1=ON , 0=OFF
     
       134 Const ApronVideos = 0
       135 Const PlayfieldVideos = 1
       136 Const FPS = 0     ' 1= fast PCs 0= Slow PCs
     
        Run the Table 
     
       **If you don't have the necessary files to run PupPacks in one screen make sure you download it from here :
     
      https://www.nailbuster.com/wikipinup/doku.php?id=pup_desktop&fbclid=IwAR1DHMmS3UIW4yZaZDhvoOD-x_C67V79y8nI5TSsBq85BjtfLlsdKapM744

    ____________________________________________________________________________________________________________________________________________ 
     
    * Apron Pupscreens and the Dragon Flying over the PF are ON by default
     
    * Option for Slow Pcs are OFF by default
     
      If You do Not use those or just want to change it, just open the script table and go here :
     
       ***tuga mod****
     
       Show PupFlasher:  1=ON , 0=OFF
     
       134 Const ApronVideos = 1
       135 Const PlayfieldVideos = 1
       136 Const FPS = 0     ' 1= fast PCs 0= Slow PCs
    _____________________________________________________________________________________________________________________________________________                      _______________________________________________ 
                     ________CUSTOM LED EFFECTS_________________________
     
    Darrin Chamberlain’s Custom LED Effects
     
    ---- Download the vbs-file and put it in your Table folder.
     
    ----Name it the same as the Table, and you are ready to go.
     
    ----This only works when you have used VPU-patcher to update to the PUP-script.     Here is the link:
     
    https://mega.nz/file/bWR11YwB#Gkw9GIn1p135Sqn5s1DBnVE1XIbDDw01j18v__jDzj8
     
                                                     
                                        All credits go to Darrin Chamberlain 
     
                                                      Thanks Cor van den Ber
     
                            
     
    _____________________________________________________________________________________________
     
     
    * PS - TILT (Jon Snow) -If You don´t want to see the video completely just press/push the Plunger or enter in Your Keyboard,the Tilt video will Stop.
     
         For those with Mechanical Tilt I don´t know if it works, if not just press Enter in Your Keyboard , or just try not to Tilt !!!!
     
         visit Red MEDUSA Youtube channel here : https://www.youtube.com/@RedMEDUSAofficial 
     
                                                                                      ***********************************      
         *And if you don´t Know, there's a Midnight Madness on the Table, so wait for Midnight and Enjoy!!!

                                                                                                           Thanks and Enjoy
                               *********************************************************************
                           *******************************   Credits   **********************************
                                            
                                                                                                                    VPW
                                                                                                   All VP COMMUNITY  
                                                                                     and All the Barbies in this World!!
     
                                                                                        Special Thanks to John Furlong
                                                                                          and Tony (TheLivingArcade)
                                                         
                                                                                              **** TEAMTUGA ****
                                                                                                           Pedro Peres 
                                                                                                           Pedro Pires 
                                                                                                          Mario Paulo 

    1885 downloads

       (8 reviews)

    50 comments

    Updated

  23. Transformers G1 PUP Pack

    My first PUP pack release.
    I am proud to share this labor of love with the community.
    Special thanks to Nailbuster for PinUp Player and the entire PinUp ecosystem.
    Also thanks to Terry Red for allowing me to Mod his original Transformers PUP Pack.
    This PUP pack is designed to be played using the Transformers Marcade MOD Edition table found here:
    https://www.vpforums.org/index.php?app=downloads&showfile=16211
     
    Features:
    2 or 3 screen support
    Letterbox 16:9 or framed overlays
    Transforming overlays and images based on your side selection
    26 unique ball drain videos. (For the players that only look at a pup pack when the ball drains)
    Credits:
    Author - Meatballsaucey
    PUP Capture - Terry Red
    Video Cuts - Terry Red & Meatballsaucey
    Triggers - Terry Red & Meatballsaucey
    Text Display - Terry Red
    Attract Videos - Smaug
    Testing:
    hawkeyez88
    Smaug
    H3RBSKIx
    Paladin
    ED209
    Piratepwnsninja
    Dr.Nobody 
    Burt Macklin

    4082 downloads

       (6 reviews)

    12 comments

    Submitted

  24. Nirvana PUP PACK v2.0

    Hello,
    Small creation a PUP-PACK of the magnificent painting "NIRVANA"
     
    I would like to thank the creators below because this would not have been possible without them
    darthwhat
    Destruck
    Goldchicco
    Hawkeyez
     
    To retrieve the PUP-PACK you must click "download this file" and not on the mega link below
     
     
     

     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     

    525 downloads

       (0 reviews)

    13 comments

    Updated

  25. Lord of the Rings PupPack

    Reupload from my Lord of the Rings PupPack version 1.0.1. 
     
    Don't know why the link is not working. Please try this mega links as backup resource:
    https://mega.nz/file/7BdSXbQJ#ReZzIrRvpYc2nyHMQjZSp2s91fZ7ly5YOVy5c12zg4U

    1549 downloads

       (7 reviews)

    24 comments

    Updated




×
  • Create New...