Jump to content



Photo
- - - - -

Panthera [VP 9.x Desktop MOD]

Terminator T1 T2 Arnold Schwarzeneggar Terminator 2

  • Please log in to reply
5 replies to this topic

#1 batch

batch

    VPFroggie

  • Members
  • PipPipPipPipPip
  • 2,152 posts
  • Location:Center of France

  • Flag: France

  • Favorite Pinball: Anyone if gaming and appearence are great

Posted 11 June 2015 - 03:14 AM

Posted Image


File Name: Panthera

File Submitter: batch

File Submitted: 25 May 2015

File Category: VP/VPinMAME 9.x - MOD Tables

Author(s): JP Salas (Original table PANTHERA 5.1 VP8)

SERPIKO
Manufacturer: Gottlieb
Year: 1980
ROM: Link to ROM
Permission to MOD?: Yes, with approval


1.1 : changed table ratio  (Y Scale = 1.3 x X Scale) thanks to StevOz for the information
 
 
1.0 : This is a DT version of Gottlieb's Panthera with permission from JP Salas and Serpiko
 
I did a new Apron, cleaned the playfield and plastics and added a "look like" Night MOD effect
 
And I did a new backdrop using a backglass image
 
I too join a file with alternate versions of Apron


Click here to download this file


signature_11042026.jpg          DIRECT LINK TO MY TABLES http://www.vpforums....loads&mid=30858    

                                               LINK TO MY 204 BACKDROPS : Design Resources/ Main Resources/Table Templates/Table Resources/Backdrops for VPX Tables (DT 16/9)  2.0 


#2 jpsalas

jpsalas

    Grand Schtroumpf

  • VIP
  • 7,300 posts
  • Location:I'm Spanish, but I live in Oslo (Norway)

  • Flag: Norway

  • Favorite Pinball: I like both new and old, but I guess I prefer modern tables with some rules and goals to achieve.



Posted 25 October 2015 - 12:44 AM

I see the animation of the bumper rings is wrong. And before someone says that it is because the rings (which are made with walls) have their Top Height lower than their Bottom Height, that's right. That's how we made a wall "non collidable" in those days :)

 

Now the ring animation is longer than needed. It starts by showing the lowest ring, move up and then down again (!?). So this part of the script (starting at line 273):

 

Sub Bumper1_Hit:vpmTimer.PulseSw 24:playsound "bumperg2":Bump1 = 0:Bumper1.TimerEnabled = 1:Bumper1_Timer:End Sub
Sub Bumper1_Timer
    Select Case Bump1
        Case 0:Ring1a.IsDropped = 0:Ring1b.IsDropped = 1:Ring1c.IsDropped = 1
        Case 1:Ring1a.IsDropped = 1:Ring1b.IsDropped = 0
        Case 2:Ring1b.IsDropped = 1:Ring1c.IsDropped = 0
        Case 3:Ring1c.IsDropped = 1:Ring1b.IsDropped = 0
        Case 4:Ring1b.IsDropped = 1:Ring1a.IsDropped = 0
        Case 5:Ring1a.IsDropped = 1:Bumper1.TimerEnabled = 0
    End Select

    Bump1 = Bump1 + 1
End Sub
Sub Bumper2_Hit:vpmTimer.PulseSw 24:playsound "bumperg2":Bump2 = 0:Bumper2.TimerEnabled = 1:Bumper2_Timer:End Sub
Sub Bumper2_Timer
    Select Case Bump2
        Case 0:Ring2a.IsDropped = 0:Ring2b.IsDropped = 1:Ring2c.IsDropped = 1
        Case 1:Ring2a.IsDropped = 1:Ring2b.IsDropped = 0
        Case 2:Ring2b.IsDropped = 1:Ring2c.IsDropped = 0
        Case 3:Ring2c.IsDropped = 1:Ring2b.IsDropped = 0
        Case 4:Ring2b.IsDropped = 1:Ring2a.IsDropped = 0
        Case 5:Ring2a.IsDropped = 1:Bumper2.TimerEnabled = 0
    End Select

    Bump2 = Bump2 + 1
End Sub

 

Could be replaced with my original script for animating those rings:

 

 Sub Bumper1_Hit:vpmTimer.PulseSw 24:PlaySound "bumper":bump1=1:Me.TimerEnabled=1:End Sub
 Sub Bumper1_Timer()
    Select Case bump1
       Case 1:Ring1a.IsDropped=0:bump1=2
       Case 2:Ring1b.IsDropped=0:Ring1a.IsDropped=1:bump1=3
       Case 3:Ring1c.IsDropped=0:Ring1b.IsDropped=1:bump1=4
       Case 4:Ring1c.IsDropped=1:Me.TimerEnabled=0
    End Select
 End Sub
 
 Sub Bumper2_Hit:vpmTimer.PulseSw 24:PlaySound "bumper":bump2=1:Me.TimerEnabled=1:End Sub
 Sub Bumper2_Timer()
    Select Case bump2
       Case 1:Ring2a.IsDropped=0:bump2=2
       Case 2:Ring2b.IsDropped=0:Ring2a.IsDropped=1:bump2=3
       Case 3:Ring2c.IsDropped=0:Ring2b.IsDropped=1:bump2=4
       Case 4:Ring2c.IsDropped=1:Me.TimerEnabled=0
    End Select
 End Sub

 

Nice work on the desktop wallpaper :)

 

Greetings

JP


If you want to check my latest uploads then click on the image below:

 

vp.jpg

 

Next table? A tribute table to Stern's Foo Fighters


#3 batch

batch

    VPFroggie

  • Members
  • PipPipPipPipPip
  • 2,152 posts
  • Location:Center of France

  • Flag: France

  • Favorite Pinball: Anyone if gaming and appearence are great

Posted 25 October 2015 - 01:39 AM

Thanks for the information, JP

 

I'll try it a little bit later because now I have to go to sleep :)

 

It's the change of hour in France


signature_11042026.jpg          DIRECT LINK TO MY TABLES http://www.vpforums....loads&mid=30858    

                                               LINK TO MY 204 BACKDROPS : Design Resources/ Main Resources/Table Templates/Table Resources/Backdrops for VPX Tables (DT 16/9)  2.0 


#4 hauntfreaks

hauntfreaks

    Real 4K Tables Since 2013

  • VIP
  • 2,522 posts
  • Location:South Jersey

  • Flag: United States of America

  • Favorite Pinball: -<3<3<3 All Real Pins



Posted 25 October 2015 - 04:13 AM

you guys to that dumb daylight savings crap too?... i'm on the east coast of the US and we do it as well....  :(

 

oh great DT mod!


 26794541816_30ca1cca80_o.gif 43109635392_fc11af1a57_o.gif


#5 jpsalas

jpsalas

    Grand Schtroumpf

  • VIP
  • 7,300 posts
  • Location:I'm Spanish, but I live in Oslo (Norway)

  • Flag: Norway

  • Favorite Pinball: I like both new and old, but I guess I prefer modern tables with some rules and goals to achieve.



Posted 25 October 2015 - 04:51 AM

Yes, we do the same thing in Norway. I too should like to sleep, but I got a terrible cold and I have been coughing for a week now. I hope the penicillin will kill those streptococcus soon :)

 

This is one of my older tables that I never updated to VP9, so thanks again Serpiko, and Batch for the desktop version.


If you want to check my latest uploads then click on the image below:

 

vp.jpg

 

Next table? A tribute table to Stern's Foo Fighters


#6 batch

batch

    VPFroggie

  • Members
  • PipPipPipPipPip
  • 2,152 posts
  • Location:Center of France

  • Flag: France

  • Favorite Pinball: Anyone if gaming and appearence are great

Posted 25 October 2015 - 06:59 AM

You're welcome, JP, and take care of yourself !

 

I can't remember if I told you, but I've had this pinball in the real life when I was a young man

 

But it's been a long time, a long, long, long, long, long ti-ime :)

 

And thanks for the information about the change of hour, Hauntfreaks

 

I didn't think it was a worldwide problem !


signature_11042026.jpg          DIRECT LINK TO MY TABLES http://www.vpforums....loads&mid=30858    

                                               LINK TO MY 204 BACKDROPS : Design Resources/ Main Resources/Table Templates/Table Resources/Backdrops for VPX Tables (DT 16/9)  2.0 






Also tagged with one or more of these keywords: Terminator, T1, T2, Arnold, Schwarzeneggar, Terminator 2