Advertisement
PlatinKinggg

config.lua

May 29th, 2025 (edited)
753
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.87 KB | Gaming | 0 0
  1. local config = {}
  2.  
  3. config.language = 1
  4. config.updateInterval = 2
  5. config.timeFormat = 1
  6. config.dateFormat = 1
  7. config.energyForceStart = true
  8. config.energyForceStop = true
  9. config.mBPerBlade = 25
  10. config.energyStartThreshold = 0.1
  11. config.energyStopThreshold = 0.95
  12. config.errorResetTime = 60
  13. config.flowEfficiencyLimit = true
  14. config.rotorMinSpeed = 1300
  15. config.rotorMaxSpeed = 1800
  16. config.referenceMass = 300
  17. config.referenceRPMThreshold1 = 240
  18. config.referenceRPMThreshold2 = 160
  19. config.referenceRPMThreshold3 = 80
  20. config.headerBackground = colors.brown
  21. config.headerText = colors.black
  22. config.buttonWindowColor = colors.orange
  23. config.buttonBackgroundColor = colors.black
  24. config.buttonTextColor = colors.white
  25. config.infoBackgroundColorA = colors.gray
  26. config.infoBackgroundColorB = colors.lightGray
  27. config.infoTextColor = colors.white
  28. config.debug = true
  29.  
  30. return config
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement