Jump to content



Submitter

SUPPORT TOPIC File Information

  • Submitted: Apr 03 2016 10:28 AM
  • Last Updated: Apr 04 2026 04:03 AM
  • File Size: 92.59MB
  • Views: 77695
  • Downloads: 21,981
  • Author(s): jpsalas
  • Permission to MOD?: No

Previous Versions

  • 12 Sep 2025 Download Gargamel Park 6.0.1
  • 07 Sep 2025 Download Gargamel Park 6.0.0
  • 07 Sep 2025 Download Gargamel Park 6.0.0

Download Gargamel Park 6.0.2

* * * * * 106 Votes



Screenshots
Rules? What rules?

The Story:
Gargamel has decided to use another strategy to capture the smurfs.
In the middle of the forest he has built an amusement park for the smurfs.
And pretending to be nice he will try to capture them all.
The smurfs are having too much fun, unaware of Gargamel and his intentions.

The Game:
The goal of the game is to become a master of the 6 main rides/attractions.
You'll find skillshots, ball savers, extra balls, mystery awards, highscores and much more.
When you are a master of an attraction the each time you complete the attraction you get a jackpot. This jackpot increases each time you get a jackpot.

The Attractions:
- The Mirror Maze: a maze where you may end on the Azrael Shooting gallery, the bumper cars or simply back to the entrance.
- The Azrael Shooting gallery: just drop all the targets, don't forget to nudge!
- The Haunted House: hit all the targets and be careful of the ghosts.
- Bumper Cars: hit those 100 times to advance your status.
- Freefall: help your smurf friends to ride the freefall. Shoot the spinners.
- Ferry's Wheel: Papa smurf will help you to get you to the top playfield. Here you may ride the Main Center Ride or the Insane Ride.
- Insane Ride: hit the targets to increase the value of the ride, and get your three smurf friends and get your ride!

The Music:
Some Swedish smurfs singing some disco songs, typical for any smurf amusement park :)
 

What's New in Version 6.0.2 (See full changelog)

  • 6.0.2 Updated 04.04.2026
  • - Added two center ramps instead of only one, removing the diverter and the lower targets. (to stop the ball from draining from a weak shot to the ramp)
  • - The spin wheel light turns on all the inlanes, shoot the Ice Cream to collect, and also by hitting the top yellow targets.
  • - Changed the pop bumpers to a transparent cap.
  • - New backdrop for the desktop and FS version (I don't remember who made the FS backdrop, sorry)
  • - Updated the flashers using a linked light instead of timers (VPX8)
  • - For cabinet user: remember to turn on the FlexDMD in the F12 menu.
  • - Added two Cyclone sounds to the spinning wheel. Thanks fourbanks for your help with these sounds and for testing the table.
  • 6.0.1 Updated September 2025
  • - fixed FlexDMD display
  • - fixed ball getting stuck under the left droptargets.
  • 6.0.0 Updated September 2025
  • - Moved LUT to User Options (F12)
  • - Added some extra options to the User Options (F12)
  • - Updated physics to my latest rev 4.3.1. mostly bouncier rubbers and harder flippers.
  • 5.5.0 Updated 12.12.2024
  • - New playfield mesh to avoid the ball getting stuck on top of the flippers.
  • - Fixed my ball spin control, which were too aggressive, and it killed the ball's acceleration, making the ball too slow, getting stuck on ramps, and also being unable to climb the ramps on many tables.
  • 5.0.1 Updated 06.12.2024
  • - New playfield mesh to stop the ball stuck on top of the flippers.
  • 5.0.0 Updated 14.07.2024
  • - Updated for VPX8 release version (adjusted reflections, equirectangular ball)
  • - some graphical changes (playfield mesh with holes, incandescent lights)
  • - added a screenshot for scutters file explorer handler
  • - Updated physics to my Rev3. Including physics materials, flipper code and slingshot shapes.
  • - Updated LUT images and display system, 10 darker shades and 10 warmer shades.
  • 4.0.2 Updated 29.11.2022
  • - Fixed a bug when restarting a new game, two songs were playing at the same time.
  • 4.0.1 Updated 27.11.2022
  • - Fixed LUT not loading when starting the table.
  • - Fixed ball stuck on the rollersoaster ramp.
  • - Added the Start key to enter highscores
  • - Added some extra ball droping sounds from the ramps.
  • 4.0.0 Updated 22.11.2022
  • - Updated to my latest VPX7 physics
  • - Added support for FlexDMD
  • - and a lot of small changes here and there.
  • 1.2.1 Update 07.01.2017
  • - Fixed UltraDMD using too much CPU when running in FS mode
  • 1.2.0 updated 31.12.2016
  • - updated for VPX 10.2
  • 1.1.1 Updated 10 April 2016
  • - FS backdrop by hauntfreaks
  • 1.1 Updated 10 April 2016
  • - DOF by arngrim
  • - Rotated DMD for FS mode
  • 1.0.0 3 April 2016
  • Initial release


Screenshots

Screenshots


Photo
ManWorkingHere
Apr 22 2021 02:53 AM

VPinball.com is now closed.   :-(     [as of April 2021]

 

Any other places to download the Music pack?

 

VPinball.com is now closed.   :-(     [as of April 2021]

 

Any other places to download the Music pack?

 

Bump.   I REALLY want to play this table also but missed the boat since I'm new here.

 

I´m loking for the music , too

hi JP i have any music an i can't run the table ; i have the vpx 10.6 . i'm so sad it's such a great table ! thanks a lot

If you wish to play this table without any music (or error messages), load the table into the Visual Pinball Editor, and then open the script editor using the 'scroll' button on the main toolbar.  A window will appear showing the code for the table.

Either scroll to around line 450, or use CTRL-F and search for 'mp3'.  You're looking for 'Sub PlaySong' and 'Sub Table1_MusicDone'
 

Sub PlaySong 'random
    If bMusicOn Then
        song = "bgout_Gargamel-Park-" &INT(20 * RND(1) ) + 1& ".mp3"
        PlayMusic Song
    End If
End Sub

Sub Table1_MusicDone
    If bMusicOn Then
        PlaySong
    End If
End Sub

In this portion of code, put an apostrophe ' in front of each of the code lines inside the two 'Subs', as below:

Sub PlaySong 'random
    'If bMusicOn Then
    '    song = "bgout_Gargamel-Park-" &INT(20 * RND(1) ) + 1& ".mp3"
    '    PlayMusic Song
    'End If
End Sub

Sub Table1_MusicDone
    'If bMusicOn Then
    '    PlaySong
    'End If
End Sub

(So you're changing lines 457 - 460 and lines 464-466)

 

You will see the lines have turned green (Ignore the colouring on the examples above)

 

This removes any reference to the music files from the code, and stops the table from trying to play them.

I checked all 3 downloads and there is no music files and I'm getting errors when starting the table, its looking for the music files. Please add them to download or add a link.

download: Gargamel_Park_v1.2.1 VR1.0.0 1.0.0 it with music pack

Hey, Just curious where can i download the music files from? as it is stating it is missing.

Would you add this as a possible Next for your Upgrades to 4.0 please???

Yes!!, Been waiting for this update, Love this table. Thanks so much JP for all you do!


Other files you may be interested in ..





user(s) are online (in the past 15 minutes)

members, guests, anonymous users