Jump to content



Photo
* * * * * 1 votes

Gottlieb BUCCANEER (Custom-Physic) [Future Pinball]

Recreation Future Pinball EM Custom Physic

  • Please log in to reply
23 replies to this topic

#1 pincade

pincade

    Enthusiast

  • Members
  • PipPipPip
  • 257 posts

  • Flag: Italy

  • Favorite Pinball: tom

Posted 24 April 2015 - 01:35 AM

Posted Image


File Name: Gottlieb BUCCANEER (Custom-Physic)

File Submitter: pincade

File Submitted: 23 Apr 2015

File Category: Future Pinball

Author(s): monnezza
Manufacturer: Gottlieb
Year: 1976
Permission to MOD?: Yes, with approval


GOTTLIEB BUCCANEER
June 1976 - ipdb info link
 
First of All I would like to Thank the Master tables builder Popotte for all the info about the Rules and for the adjustment of the Wheel\Spin System.
A Special Thank to Allknowing2012 (that owns real table) for all the instructions
 
Posted Image
 
 
This is the second Custom-Physic table released, with a huge physic improvement.
Table has:
-my new Dynamic Flipper Shadows (hopefully bugfree)
- the Highest-Score Post-it (a simple paper on the apron)


Click here to download this file



#2 plrmaker7

plrmaker7

    Neophyte

  • Members
  • Pip
  • 4 posts

  • Flag: United States of America

  • Favorite Pinball: Star Trek

Posted 27 April 2015 - 02:46 PM

Amazing table, thanks for all your hard work!



#3 atarian

atarian

    Enthusiast

  • Members
  • PipPipPip
  • 345 posts

  • Flag: France

  • Favorite Pinball: EMs

Posted 17 October 2015 - 10:55 PM

Wow - this table looks gorgeous. Wonderful lighting. But the best is the physics. I cannot believe this is Future Pinball.

For anyone (like me) who uninstalled FP long ago, just check out the video of this table. To me this plays like a real EM.

Edited by atarian, 18 October 2015 - 05:39 AM.


#4 Outhere

Outhere

    Pinball Wizard

  • Platinum Supporter
  • 4,720 posts

  • Flag: United States of America

  • Favorite Pinball: M M

Posted 18 October 2015 - 03:38 AM

If I change it to 3 Balls per game, It starts on the 3rd ball and The Game Over light is on all the time, What else needs to be done?



#5 pincade

pincade

    Enthusiast

  • Members
  • PipPipPip
  • 257 posts

  • Flag: Italy

  • Favorite Pinball: tom

Posted 18 October 2015 - 03:38 PM

Wow - this table looks gorgeous. Wonderful lighting. But the best is the physics. I cannot believe this is Future Pinball.

For anyone (like me) who uninstalled FP long ago, just check out the video of this table. To me this plays like a real EM.

Thanx atarian

If only 1 table changed your mind about FP and make you reinstall it is the most appreciated fulfilment

 

If I change it to 3 Balls per game, It starts on the 3rd ball and The Game Over light is on all the time, What else needs to be done?

you've probably changed the ball per game in the FP editor (under Table info menu) and this is not the right way, you need to change it in the script nvBallsPerGame



#6 Outhere

Outhere

    Pinball Wizard

  • Platinum Supporter
  • 4,720 posts

  • Flag: United States of America

  • Favorite Pinball: M M

Posted 18 October 2015 - 03:50 PM

 

Wow - this table looks gorgeous. Wonderful lighting. But the best is the physics. I cannot believe this is Future Pinball.

For anyone (like me) who uninstalled FP long ago, just check out the video of this table. To me this plays like a real EM.

Thanx atarian

If only 1 table changed your mind about FP and make you reinstall it is the most appreciated fulfilment

 

If I change it to 3 Balls per game, It starts on the 3rd ball and The Game Over light is on all the time, What else needs to be done?

you've probably changed the ball per game in the FP editor (under Table info menu) and this is not the right way, you need to change it in the script nvBallsPerGame

 

The script is where I changed it  -- nvballspergame=3



#7 Outhere

Outhere

    Pinball Wizard

  • Platinum Supporter
  • 4,720 posts

  • Flag: United States of America

  • Favorite Pinball: M M

Posted 18 October 2015 - 04:47 PM

To make it 3 Balls per Game - You need to do this

In the script change this to a 3   -  nvballspergame=5

 

Then change this

Sub Balllights()

    if BallsRemaining(CurrentPlayer)=0 then ball5.State = BulbOff:Gameover.State = BulbOn:'OverlayBalls.fadeout
    
    if BallsRemaining(CurrentPlayer)=1 then ball5.State = BulbOn: ball4.State = BulbOff:OverlayBalls.frame 5
    if BallsRemaining(CurrentPlayer)=2 then ball4.State = BulbOn: ball3.State = BulbOff:OverlayBalls.frame 4
    if BallsRemaining(CurrentPlayer)=3 then ball3.State = BulbOn: ball2.State = BulbOff:OverlayBalls.frame 3
    If BallsRemaining(CurrentPlayer)=4 then ball2.State = BulbOn: ball1.State = BulbOff:OverlayBalls.frame 2
    if BallsRemaining(CurrentPlayer)=5 then ball1.State = BulbOn: Gameover.State = BulbOff:OverlayBalls.frame 1
    
end sub

 

Changs TO --- Thanks miownkhan   -- http://www.gopinball...php?f=49&t=5983

Sub Balllights()

   if nvballspergame=5 then
      if BallsRemaining(CurrentPlayer)=0 then ball5.State = BulbOff:Gameover.State = BulbOn:'OverlayBalls.fadeout
      if BallsRemaining(CurrentPlayer)=1 then ball5.State = BulbOn: ball4.State = BulbOff:OverlayBalls.frame 5
      if BallsRemaining(CurrentPlayer)=2 then ball4.State = BulbOn: ball3.State = BulbOff:OverlayBalls.frame 4
      if BallsRemaining(CurrentPlayer)=3 then ball3.State = BulbOn: ball2.State = BulbOff:OverlayBalls.frame 3
      If BallsRemaining(CurrentPlayer)=4 then ball2.State = BulbOn: ball1.State = BulbOff:OverlayBalls.frame 2
      if BallsRemaining(CurrentPlayer)=5 then ball1.State = BulbOn: Gameover.State = BulbOff:OverlayBalls.frame 1
   end if

   if nvballspergame=3 then
      if BallsRemaining(CurrentPlayer)=0 then ball3.State = BulbOff:Gameover.State = BulbOn:'OverlayBalls.fadeout
      if BallsRemaining(CurrentPlayer)=1 then ball3.State = BulbOn: ball2.State = BulbOff:OverlayBalls.frame 3
      if BallsRemaining(CurrentPlayer)=2 then ball2.State = BulbOn: ball1.State = BulbOff:OverlayBalls.frame 2
      if BallsRemaining(CurrentPlayer)=3 then ball1.State = BulbOn: Gameover.State = BulbOff:OverlayBalls.frame 1
   end if

end sub
 

If you use FutureDMD and would like to make it a 4 Player

FutureDMD

http://www.vpforums....s&showfile=8222

Tutorial

http://www.gopinball...php?f=55&t=5050


Edited by Outhere, 19 October 2015 - 05:25 AM.


#8 pincade

pincade

    Enthusiast

  • Members
  • PipPipPip
  • 257 posts

  • Flag: Italy

  • Favorite Pinball: tom

Posted 18 October 2015 - 09:58 PM

I've seen Miownkhan solved in the other forum. Table as it is doesn't admit 3 balls and your problem is a matter of overlay ball indicator. Ok. ...i'll probably update this table adding a key to switch from 5 to 3 balls. Hope you enjoy this em

#9 Ben Logan

Ben Logan

    Pinball Wizard

  • Members
  • PipPipPipPipPip
  • 2,275 posts
  • Location:California

  • Flag: ---------

  • Favorite Pinball: System 11

Posted 19 October 2015 - 02:38 AM

Keep them coming, Pincade. Great work.

#10 Fulltilt

Fulltilt

    Proud VirtuaPin owner!

  • VIP
  • 274 posts
  • Location:Florida

  • Flag: United States of America

  • Favorite Pinball: AFM, T2 and World Cup Soccer I play alot of for REAL recreations but Scarface for an original creation is awesome! Recently I have been playing alot of Dozer316's tables. All table authors are awesome!!! Thank you all :)

Posted 20 October 2015 - 07:48 PM

Keep them coming, Pincade. Great work.

I agree .. thank you Pincade :D


42" VirtuaPin Cab

| AMD FX8150 CPU | ASUS Crosshair Formula IV Motherboard | 8gig Crucial Ballistix DDR3 1600 | EVGA Geforce GTX 1070 |

| 42" Commercial Grade 1080p LCD Playfield Monitor | Corsair RM750 PSU | Flipper Fidelity 2.1 Sound System |

| AOC LED 27" Monitor(Backglass) | Samsung 128gig SSD - Win7 |


#11 Ben Logan

Ben Logan

    Pinball Wizard

  • Members
  • PipPipPipPipPip
  • 2,275 posts
  • Location:California

  • Flag: ---------

  • Favorite Pinball: System 11

Posted 21 October 2015 - 03:56 AM

This one is absolutely beautifully looking. Gameplay is great. Thanks to Popotte, allknowing, monezza, and Pincade.

#12 pincade

pincade

    Enthusiast

  • Members
  • PipPipPip
  • 257 posts

  • Flag: Italy

  • Favorite Pinball: tom

Posted 21 October 2015 - 10:02 AM

I'm Monnezzas.


#13 atarian

atarian

    Enthusiast

  • Members
  • PipPipPip
  • 345 posts

  • Flag: France

  • Favorite Pinball: EMs

Posted 21 October 2015 - 04:52 PM

I'm Monnezzas.


The physics are so good you needed to be thanked twice ;)

#14 Ben Logan

Ben Logan

    Pinball Wizard

  • Members
  • PipPipPipPipPip
  • 2,275 posts
  • Location:California

  • Flag: ---------

  • Favorite Pinball: System 11

Posted 21 October 2015 - 05:53 PM

Yes - double thanks are in order!

#15 pincade

pincade

    Enthusiast

  • Members
  • PipPipPip
  • 257 posts

  • Flag: Italy

  • Favorite Pinball: tom

Posted 21 October 2015 - 11:23 PM

Thanx, you are too kind guys



#16 Ben Logan

Ben Logan

    Pinball Wizard

  • Members
  • PipPipPipPipPip
  • 2,275 posts
  • Location:California

  • Flag: ---------

  • Favorite Pinball: System 11

Posted 22 October 2015 - 02:04 AM

What's up next, Pincade? Any works in progress?

#17 pincade

pincade

    Enthusiast

  • Members
  • PipPipPip
  • 257 posts

  • Flag: Italy

  • Favorite Pinball: tom

Posted 22 October 2015 - 03:56 AM

Yes, too many...

...But first I need to complete the FP 2.0



#18 Ben Logan

Ben Logan

    Pinball Wizard

  • Members
  • PipPipPipPipPip
  • 2,275 posts
  • Location:California

  • Flag: ---------

  • Favorite Pinball: System 11

Posted 22 October 2015 - 04:50 AM

Nice. Exciting times for FP. Totally looking forward to 2.0. Enjoyed playing AutoRace with my son tonight. Great experience!

#19 philly80

philly80

    Hobbyist

  • Members
  • PipPip
  • 47 posts

  • Flag: Germany

  • Favorite Pinball: Terminator 2

Posted 30 October 2015 - 10:53 PM

thx for this beauty. great table with great physics.

 

but...i would like to play dektop version too..but needed a password for extracting the "BUCCANEER-cpm.zip"  ??



#20 pincade

pincade

    Enthusiast

  • Members
  • PipPipPip
  • 257 posts

  • Flag: Italy

  • Favorite Pinball: tom

Posted 30 October 2015 - 11:06 PM

??

I assume you've got a little confusion in your head about FP:

 

in FP there's no Desktop or Cabinet version, if you play in Arcade mode (Preferences/Video Rendering options)  and with screen rotated to 270 or 90 you have a Cabinet version, otherwise the table is in desktop mode (there's even a forced arcade mode in BAM to play in cabinet mode without rotating monitor or tv....press Q once in BAM and in his menu find this option)

 

The zip you are talking about is the physic file, there's nothing interesting for you in there and doesn't need to be extracted.

:)







Also tagged with one or more of these keywords: Recreation, Future Pinball, EM, Custom Physic