-
Posts
503 -
Joined
-
Last visited
Everything posted by Projektion
-
Worst Ride Replacements/Downgrades
Projektion replied to Pyrozooka0's topic in Theme Parks, Roller Coasters, & Donkeys!
Dragon Khan getting trimmed. -
Best B&M and Best Intamin
Projektion replied to grsupercity's topic in Theme Parks, Roller Coasters, & Donkeys!
B&M - Dragon Khan Intamin - Furius Baco. The only other Intamin I've been on is Inferno at Terra Mitica which ... meh. -
PortAventura Discussion Thread
Projektion replied to Shockwave's topic in Theme Parks, Roller Coasters, & Donkeys!
^ I remember hearing something like that. As said in the article (assuming I translated it right), in the coming 2 and half months, they should announce the exact location of park, and I'd expect the stats for the coaster would come around the same time. On a side note, I've just booked my PA trip for early April, so I should get to see some of the construction. -
PortAventura Discussion Thread
Projektion replied to Shockwave's topic in Theme Parks, Roller Coasters, & Donkeys!
^It's like I said, they are doing it so they don't have to take away the "Europe's tallest coaster" title from Shambhala, like they're trying to make something up so they could have 2 separate "Europe's tallest" rides. -
PortAventura Discussion Thread
Projektion replied to Shockwave's topic in Theme Parks, Roller Coasters, & Donkeys!
A News article was posted on PA-Community about Ferrari Land. Not sure about the source, the user on PA-Community said they found the article on Facebook (Translation) I left out the "Esperant BCN World"/Waiting for BCN World section just because there is quite a bit in that section don't quite understand. Also, in recent interviews, the head of PA has been trying to advertise the new giga/strata as a Vertical Accelerator, not a rollercoaster (Which also explains why in all articles, it has never been referred to as a roller coaster), so that way they don't have to take the "Europe's tallest coaster" title away from Shambhala. It's also been reported the ride is going to be At least 100m tall, people are speculating that it will be around 110m. -
Your 5 year plan and predictions for any park
Projektion replied to adamd's topic in Theme Parks, Roller Coasters, & Donkeys!
Refurb What? The 2015 Refurb is something that's been confirmed by the park. They're fixing up/painting Stampida and Diablo for the 2015 season. The 2019 Refurb is mostly something I put as I can see that as when the paint will start to look faded on some of the coasters and scenery from the sun, so it would just be a general refurb of the park/repainting more faded ones.. -
Weirdest Things The 'GP' Have Said
Projektion replied to maliboomer's topic in Theme Parks, Roller Coasters, & Donkeys!
^Yeah, they're definitely trolling now -
Your 5 year plan and predictions for any park
Projektion replied to adamd's topic in Theme Parks, Roller Coasters, & Donkeys!
Portaventura: 2015: Refurbishments around the park 2016: Ferrari Land 2017: Retrofit Hurakan Condor with a Falcon's Fury style system 2018: RMC Stampida (Iron Stampede?) 2019: Refurb The last 2 could be switched around. -
Weirdest Things The 'GP' Have Said
Projektion replied to maliboomer's topic in Theme Parks, Roller Coasters, & Donkeys!
I saw those comments, they have to be trolling. -
Longest coasters you've been on
Projektion replied to Angle O. Descent's topic in Theme Parks, Roller Coasters, & Donkeys!
5. Smiler, Alton Towers @ 3839 ft 4. Dragon Khan, Portaventura @ 4165 ft 3. Coaster Express, Parque Warner @ 4574 ft 2. Shambhala, Portaventura @ 5131 ft 1. Big One, Blackpool Pleasure Beach @ 5497 ft -
Weirdest Things The 'GP' Have Said
Projektion replied to maliboomer's topic in Theme Parks, Roller Coasters, & Donkeys!
^^ Not that I recall, though there was the girl who had one (or both? I can't remember the details) of her feet amputated after a cable snap on a drop tower. -
Probably El Diablo at Portaventura. Even though it has kind of received the nickname of "Lift Hill: The Ride" it still holds a special place for me, being my first true "big" coaster, so I always try to get a good few rides in whenever I go to PA. After that, it's probably Furius Baco, mostly due to my marathon riding of it during the closing hours of the park. Plus it's probablyy one of my favourite coaster, despite it being rough.
-
Once again, I'm having more scripting trouble: import com.nolimitscoaster.*; import nlvm.math3d.*; public class Station extends Script implements TrackTriggerListener { private static final String sSoundFile = "StationClick.ogg"; StaticSound sSound; private static final String sCoastername = "Zeus"; Coaster cMyCoaster; private TrackTrigger Trig1; private TrackTrigger Trig2; private TrackTrigger Trig3; private TrackTrigger Trig4; private TrackTrigger Trig5; private TrackTrigger Trig6; private TrackTrigger Trig7; private TrackTrigger Trig8; public bool onInit() { cMyCoaster = sim.getCoaster(sCoastername); TrackTrigger Trig1 = cMyCoaster.getTrackTrigger("Trig1"); TrackTrigger Trig2 = cMyCoaster.getTrackTrigger("Trig2"); TrackTrigger Trig3 = cMyCoaster.getTrackTrigger("Trig3"); TrackTrigger Trig4 = cMyCoaster.getTrackTrigger("Trig4"); TrackTrigger Trig5 = cMyCoaster.getTrackTrigger("Trig5"); TrackTrigger Trig6 = cMyCoaster.getTrackTrigger("Trig6"); TrackTrigger Trig7 = cMyCoaster.getTrackTrigger("Trig7"); TrackTrigger Trig8 = cMyCoaster.getTrackTrigger("Trig8"); Trig1.addTrackTriggerListener(this); Trig2.addTrackTriggerListener(this); Trig3.addTrackTriggerListener(this); Trig4.addTrackTriggerListener(this); Trig5.addTrackTriggerListener(this); Trig6.addTrackTriggerListener(this); Trig7.addTrackTriggerListener(this); Trig8.addTrackTriggerListener(this); sSound = StaticSound.loadFromFile(sSoundFile, StaticSound.E_ENVMODE_GLOBAL); sSound.setPosition(new Vector3f(-263.0f, 12.0f, -207.35f)); sSound.setGain(10.0f); if(Trig1 == null) { System.err.println("Trigger not found"); return false; } if(sSound == null) { System.err.println("Sound file not found"); return false; } return true; } public void onTrainEntering(TrackTrigger trigger, Train train) { if (trigger == Trig1 || trigger == Trig2 || trigger == Trig3 || trigger == Trig4 || trigger == Trig5 || trigger == Trig6 || trigger == Trig7 || trigger == Trig8) { sSound.play(); } } public void onTrainLeaving(TrackTrigger trigger, Train train) { if (trigger == Trig1 || trigger == Trig2 || trigger == Trig3 || trigger == Trig4 || trigger == Trig5 || trigger == Trig6 || trigger == Trig7 || trigger == Trig8) { sSound.play(); } } } I just doesn't work. I get no errors, the script finds all the triggers, coaster and sound file fine, it just doesn't play the sounds in the game. Edit: Nevermind, I found a work around and got it working now.
-
The NL/NL2 Preview Thread
Projektion replied to mcjaco's topic in Roller Coaster Games, Models, and Other Randomness
Thanks, hopefully going to get one up of Zeus before long. -
Iceman Thesis - Return To Harmony
-
The NL/NL2 Preview Thread
Projektion replied to mcjaco's topic in Roller Coaster Games, Models, and Other Randomness
A small park I've been working on that I've been randomly adding coasters into. Contains a B&M hyper (Poseidon), a B&M sitdown multilooper (Kratos) and a B&M Giga (Zeus). Pretty much turning into a B&M paradise. -
Six Flags question
Projektion replied to grsupercity's topic in Theme Parks, Roller Coasters, & Donkeys!
It always amuses me when people think the park has no room. You are thinking two dimensionally, think three. They can build over, around and through stuff. Like a coaster held up high in the air on multiple columns/poler coasters ... hmm ... *Opens Nolimits 2*. -
Maka Albarn from SoulEater
-
When they cancelled the US tour, I think pretty much everyone in Europe was expecting them to cancel the EU tour as well. Really enjoyed it though, especially the Maiden medley they played. My next shows are Slipknot, Korn and King 810 in January and Download Festival in June. As you can tell, I don't go to many shows.
-
Weirdest Things The 'GP' Have Said
Projektion replied to maliboomer's topic in Theme Parks, Roller Coasters, & Donkeys!
Surely you should know, never say anything that will make a GP think they are right. -
What's New for 2015
Projektion replied to larrygator's topic in Theme Parks, Roller Coasters, & Donkeys!
Interesting. I didn't know vekoma was still building this layout of SLC. When had the last one been built? Not counting relocations, 2008.