Advertisement
Guest User

Untitled

a guest
Jul 15th, 2018
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1.  
  2. local cfg = {}
  3.  
  4. -- mysql credentials
  5. cfg.db = {
  6. host = "localhost",
  7. database = "hyperion",
  8. user = "root",
  9. password = ""
  10. }
  11.  
  12. cfg.save_interval = 30 -- seconds
  13. cfg.whitelist = true -- enable/disable whitelist
  14.  
  15. -- delay the tunnel at loading (for weak connections)
  16. cfg.load_duration = 5 -- seconds, player duration in loading mode at the first spawn
  17. cfg.load_delay = 0 -- milliseconds, delay the tunnel communication when in loading mode
  18. cfg.global_delay = 0 -- milliseconds, delay the tunnel communication when not in loading mode
  19.  
  20. cfg.ping_timeout = 5 -- number of minutes after a client should be kicked if not sending pings
  21.  
  22. -- identify users only with steam or ros identifiers (solve same ip issue, recommended)
  23. -- if enabled, steam auth should be forced in the FiveM server config
  24. cfg.ignore_ip_identifier = true
  25.  
  26. cfg.lang = "da"
  27. cfg.debug = false
  28.  
  29.  
  30. return cfg
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement