Guest User

options.lua

a guest
Jul 23rd, 2014
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.51 KB | None | 0 0
  1. options = {
  2.     ["difficulty"] = {
  3.         ["birds"] = 0,
  4.         ["cockpitLanguage"] = "russian",
  5.         ["cockpitVisualRM"] = false,
  6.         ["easyCommunication"] = false,
  7.         ["easyFlight"] = false,
  8.         ["easyRadar"] = false,
  9.         ["externalViews"] = false,
  10.         ["fuel"] = false,
  11.         ["geffect"] = "realistic",
  12.         ["iconsTheme"] = "nato",
  13.         ["immortal"] = false,
  14.         ["labels"] = true,
  15.         ["map"] = true,
  16.         ["miniHUD"] = false,
  17.         ["optionsView"] = "optview_all",
  18.         ["padlock"] = false,
  19.         ["permitCrash"] = true,
  20.         ["radio"] = true,
  21.         ["reports"] = false,
  22.         ["setGlobal"] = false,
  23.         ["tips"] = true,
  24.         ["units"] = "metric",
  25.         ["userSnapView"] = true,
  26.         ["weapons"] = false,
  27.     },
  28.     ["graphics"] = {
  29.         ["HDR"] = 0,
  30.         ["MSAA"] = 0,
  31.         ["OculusRift"] = false,
  32.         ["TranspSSAA"] = false,
  33.         ["aspect"] = 1.3333333333333,
  34.         ["civTraffic"] = "",
  35.         ["clutterMaxDistance"] = 0,
  36.         ["cockpitShadows"] = false,
  37.         ["color"] = "32",
  38.         ["disableAero"] = true,
  39.         ["effects"] = 3,
  40.         ["fullScreen"] = false,
  41.         ["haze"] = 1,
  42.         ["heatBlr"] = 0,
  43.         ["height"] = 768,
  44.         ["lights"] = 2,
  45.         ["multiMonitorSetup"] = "1camera",
  46.         ["preloadRadius"] = 100,
  47.         ["scenes"] = "low",
  48.         ["shadowTree"] = false,
  49.         ["shadows"] = 0,
  50.         ["sync"] = true,
  51.         ["textures"] = 0,
  52.         ["treesVisibility"] = 1500,
  53.         ["visibRange"] = "Low",
  54.         ["water"] = 0,
  55.         ["width"] = 1024,
  56.     },
  57.     ["miscellaneous"] = {
  58.         ["Coordinate_Display"] = "Lat Long Decimal",
  59.         ["accidental_failures"] = true,
  60.         ["f10_awacs"] = true,
  61.         ["f11_free_camera"] = false,
  62.         ["f5_nearest_ac"] = false,
  63.         ["force_feedback_enabled"] = false,
  64.         ["headmove"] = true,
  65.         ["synchronize_controls"] = true,
  66.     },
  67.     ["plugins"] = {
  68.         ["Ka-50"] = {
  69.             ["altTrimmingMethod"] = true,
  70.         },
  71.         ["Mi-8MTV2"] = {
  72.             ["Mi8RudderTrimmer"] = false,
  73.             ["altMi8TrimmingMethod"] = true,
  74.             ["controlHelperMi8"] = false,
  75.             ["weapTooltipsMi8"] = false,
  76.         },
  77.         ["P-51D"] = {
  78.             ["assistance"] = 0,
  79.             ["autoRudder"] = false,
  80.         },
  81.         ["TF-51D"] = {
  82.             ["assistance"] = 0,
  83.         },
  84.         ["UH-1H"] = {
  85.             ["UHRudderTrimmer"] = false,
  86.             ["UHTrackIRAiming"] = true,
  87.             ["altUHTrimmingMethod"] = true,
  88.             ["autoPilot"] = true,
  89.             ["weapTooltips"] = false,
  90.         },
  91.     },
  92.     ["sound"] = {
  93.         ["GBreathEffect"] = false,
  94.         ["cockpit"] = -100,
  95.         ["gui"] = -100,
  96.         ["headphones"] = -100,
  97.         ["music"] = -100,
  98.         ["radioSpeech"] = false,
  99.         ["subtitles"] = true,
  100.         ["volume"] = -100,
  101.         ["world"] = -100,
  102.     },
  103.     ["views"] = {
  104.         ["cockpit"] = {
  105.             ["avionics"] = 0,
  106.             ["mirrors"] = true,
  107.             ["reflections"] = false,
  108.             ["russianHud"] = false,
  109.         },
  110.     },
  111. }
Advertisement
Add Comment
Please, Sign In to add comment