The Pitts Special S1 from Addictive Simulations - We promise you everything but the G-Forces!
If you are looking for the ultimate in high performance aerobatic aircraft then look no further than our Pitts Special S1. Developed for FS2004 and from the ground-up for FSX, this little aircraft is like no other that you have ever flown!
Featuring a raft of special features including:-
- Flight model verified by active Pitts pilots to ensure absolute realism.
- Custom high-poly, low frame rate modelling techniques that bring the aircraft to life without impacting your performance!
- The FSX model features full bump mapping and specular lighting bringing every joint and rivet to life in vivid detail!
- An accurate facsimile of a real Pitts Special that was made available to us for the life of product development to ensure ultimate realism, right down to the pilot!
- Custom animations including an operable canopy, chocks and ties!
- Three animated pilots, 2 male and 1 female!
- Installer provides both FS2004 and FSX unique versions
- An integral configuration manager that allows you to change animations on the fly without having to reload the aircraft
- Six custom liveries and artwork crafted by industry supremo artist Daniel Dunn!
- Custom smoke trails let you paint the sky as you loop and roll!
- Purists will welcome the detailed performance charts and checklists. Yes, our Pitts flies by the book, so we give you the important pages of the book!
- Spin, loop and twist as you achieve aerobatic heaven flying the Pitts Special S1 - the nimble aircraft that has won more aerobatic awards than any other!
"Its an amazing, beautiful, funny, and realistic aircraft to fly, its flight model is almost like the real plane."
- Callsign "Freak", Dutch Air Force F-16 fighter pilot and Pitts Special aerobatic display pilot.
"It's really a masterpiece."
- MS, customer.
"Overall it’s a beautiful simulation of the Pitts. You have developed a great add on with this project."
- ML, customer.
"Don't hesitate to pick it up if you're into this sort of flying."
- Ryan Maziarz
"I was impressed, so impressed in fact, that I fully expect it to become one of those 'legendary' FS aeroplanes when the word spreads"
- Alan Bradbury, reviewer, writer and pilot
"It's immersive, exciting, challenging and, above all, incredibily realistic."
- Adam Cotton, reviewer, aviation historian and pilot.
"At 3'o'clock this morning my wife came down and shut off my computer. You are to be named as 'co-respondant' in the divorce, lol. "
- DT, customer.
"Having had the pleasure of flying both[real and model], it is my humble opinion that the Addictive Pitts is the most accurate representation of any aircraft model ever produced for MS flight simulator let alone FSX."
- Salocin - Avsim Forums, pilot
"I’m absolutely not joking when I say this is the best bit of flight modeling I’ve ever come across for FS. It really is that good."
- Alan Bradbury, reviewer, writer and pilot
- Secure payments by PayPal. Use your credit card or PayPal
balance to make your payment securely. Visa, Mastercard,
Maestro, Amex or direct debit. You do not need a PayPal account
to use PayPal.
Page Hits:
<%
' Graphical Hit Counter Example By www.PowerASP.com
' Declare variables
Dim ObjCounterFile, ReadCounterFile, WriteCounterFile
Dim CounterFile
Dim CounterHits
Dim FixedDigitCount
Dim DigitCount
Dim DigitCountLength
Dim DigitZerosToAdd
Dim DigitZeroCount
Dim ShowDigits
Dim DigitPath
' (FixedDigitCount) will add zeros to the front of your count
' if the count is less then the (FixedDigitCount)
' just like "frontpage" counters let you do
FixedDigitCount = 6
DigitPath = "http://www.vc10.com/pub/digits/smooth"
On Error Resume Next
Set ObjCounterFile = Server.CreateObject("Scripting.FileSystemObject")
CounterFile = "d:\web\vc10.com\www\pub\pittsadvert.txt"
Set ReadCounterFile= ObjCounterFile.OpenTextFile (CounterFile, 1, True)
If Not ReadCounterFile.AtEndOfStream Then
CounterHits = Trim(ReadCounterFile.ReadLine)
If CounterHits = "" Then CounterHits = 0
Else
CounterHits = 0
End If
ReadCounterFile.Close
Set ReadCounterFile = Nothing
CounterHits = CounterHits + 1
Set WriteCounterFile= ObjCounterFile.CreateTextFile (CounterFile, True)
WriteCounterFile.WriteLine(CounterHits)
WriteCounterFile.Close
Set WriteCounterFile = Nothing
Set ObjCounterFile = Nothing
DigitCountLength = Len(CounterHits)
If DigitCountLength < FixedDigitCount Then
DigitZerosToAdd= FixedDigitCount - DigitCountLength
DigitZeroCount = 1
For DigitZeroCount = DigitZeroCount to DigitZerosToAdd
ShowDigits = ShowDigits & ""
Next
End If
DigitCount = 1
For DigitCount = DigitCount to DigitCountLength
ShowDigits = ShowDigits & ""
Next
%>
<% =ShowDigits %>