Advertisement
PlatinKinggg

userConfig.lua

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