Advertisement
Guest User

Untitled

a guest
Oct 19th, 2017
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1.  
  2. local cfg = {}
  3.  
  4. -- mysql credentials
  5. cfg.db = {
  6. host = "127.0.0.1", -- database ip (default is local)
  7. database = "vrpfx", -- name of database
  8. user = "root", -- database username
  9. password = "" -- password of your database
  10. }
  11.  
  12. cfg.save_interval = 30 -- seconds
  13. cfg.whitelist = false -- 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. cfg.lang = "en" -- en / fr / it / ger / pt (English/Français/Italiano/Deutsche/Português)
  23. cfg.debug = false
  24.  
  25.  
  26. return cfg
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement