Advertisement
Guest User

Untitled

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