Advertisement
Guest User

Untitled

a guest
Aug 16th, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1.  
  2. local cfg = {}
  3.  
  4. cfg.db = {
  5. host = "127.0.0.1",
  6. database = "***",
  7. user = "***",
  8. password = "***"
  9. }
  10.  
  11. cfg.save_interval = 60 -- seconds
  12. cfg.whitelist = false
  13.  
  14. -- delay the tunnel at loading (for weak connections)
  15. cfg.load_duration = 30 -- seconds, player duration in loading mode at the first spawn
  16. cfg.load_delay = 60 -- milliseconds, delay the tunnel communication when in loading mode
  17. cfg.global_delay = 0 -- milliseconds, delay the tunnel communication when not in loading mode
  18.  
  19. cfg.ping_timeout = 5 -- number of minutes after a client should be kicked if not sending pings
  20.  
  21. cfg.lang = "fr"
  22. cfg.debug = false
  23.  
  24. return cfg
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement