Guest User

Untitled

a guest
Nov 6th, 2012
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.09 KB | None | 0 0
  1. //==verbose mode?==
  2.  
  3. //ShowWarnings = true
  4.  
  5.  
  6.  
  7. //Quality=4 //0=very low,1=low,2=normal,3=high,4=very high
  8.  
  9.  
  10.  
  11.  
  12.  
  13. //==Distortions==
  14.  
  15. //Distortions = false // force distortions? (you can force it on, too!)
  16.  
  17. //DistortionUpdateSkip = 0 // must be larger zero (larger := better performance)
  18.  
  19. //DistortionCopyDepthBuffer = true // do depthtest? (can increase performance if turned off)
  20.  
  21.  
  22.  
  23.  
  24.  
  25. //==Force Card Detection==
  26.  
  27. //Vendor = "NVIDIA Corporation"
  28.  
  29.  
  30. //Renderer= "GeForce 7600"
  31.  
  32.  
  33.  
  34.  
  35.  
  36. //==Deactivate Specific Classes==
  37.  
  38. //DisableFX= {
  39.  
  40. // ShockWave = true,
  41.  
  42. // UnitCloaker = true,
  43.  
  44. // UnitJitter = true,
  45.  
  46. //}
  47.  
  48.  
  49.  
  50.  
  51.  
  52. //==NanoTower FXs==
  53.  
  54. // NanoFxType[0..FACTIONS_COUNT-1] : determines the used particle class
  55.  
  56. // (only NanoLasers and NanoParticles possible)
  57.  
  58. // (Note: NanoParticles doesn't work on all PCs)
  59.  
  60. // NanoFx[0..FACTIONS_COUNT-1] : fx config
  61.  
  62. // note: if you want to make a param dependent on the nano density,
  63.  
  64. // then you can put " " around the param and put any lua code
  65.  
  66. // in it (see core example fx)
  67.  
  68. // (any lua function except math.random(),random(),r() are prohibited)
  69.  
  70. // allowed variables to use are:
  71.  
  72. // count (nano density/strength)
  73.  
  74. // limcount (count scaled between 0..1)
  75.  
  76. // and inverse (->reclaim)
  77.  
  78.  
  79.  
  80. NanoFx = {
  81.  
  82. // EXAMPLE CUSTOM ARM NANOFX (freaky!)
  83.  
  84. //arm = {
  85.  
  86. // fxtype = "NanoParticles",
  87.  
  88. // alpha = 0.25,
  89.  
  90. // size = 3,
  91.  
  92. // sizeSpread = 5,
  93.  
  94. // sizeGrowth = 0.35,
  95.  
  96. // rotSpeed = 0.1,
  97.  
  98. // rotSpread = 360,
  99.  
  100. // texture = "bitmaps/Other/Poof.png",
  101.  
  102. // particles = 1.75, // -> count*2.5 particles
  103.  
  104. //}
  105.  
  106.  
  107.  
  108. // DEFAULT CORE ONE
  109.  
  110. //core = {
  111.  
  112. // fxtype = "NanoLasers",
  113.  
  114. // alpha = "0.2+count/30",
  115.  
  116. // corealpha = "0.7+count/15",
  117.  
  118. // corethickness = "limcount",
  119.  
  120. // streamThickness = "1+4*limcount",
  121.  
  122. // streamSpeed = "(inversed)and(70-count) or (120-count*3)",
  123.  
  124. //}
  125.  
  126. }
Advertisement
Add Comment
Please, Sign In to add comment