Advertisement
Guest User

Untitled

a guest
Sep 5th, 2017
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.81 KB | None | 0 0
  1.  
  2. local cfg = {}
  3.  
  4. -- mysql credentials
  5. cfg.db = {
  6.   host = "127.0.0.1", --ip
  7.   database = "vrpfx",   -- name of database
  8.   user = "root",    --  name of user
  9.   password = ""   -- password of you database i'm use xampp and no password
  10. }
  11.  
  12. cfg.save_interval = 60 -- seconds
  13. cfg.whitelist = false -- enable/disable whitelist
  14.  
  15. -- delay the tunnel at loading (for weak connections)
  16. cfg.load_duration = 30 -- seconds, player duration in loading mode at the first spawn
  17. cfg.load_delay = 60 -- 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 / pt-br
  23. cfg.debug = false
  24.  
  25.  
  26. return cfg
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement