Advertisement
Guest User

bade3xd

a guest
Apr 14th, 2019
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 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. cfg.ignore_ip_identifier = true -- This will allow multiple same IP connections (for families etc)
  15.  
  16. -- delay the tunnel at loading (for weak connections)
  17. cfg.load_duration = 5 -- seconds, player duration in loading mode at the first spawn
  18. cfg.load_delay = 0 -- milliseconds, delay the tunnel communication when in loading mode
  19. cfg.global_delay = 0 -- milliseconds, delay the tunnel communication when not in loading mode
  20.  
  21.  
  22. -- SET YOUR LANGUAGE HERE - MAKE SURE IT'S INSIDE THE ""
  23. cfg.lang = "en" -- en / fr / it / ger / pt / ru / lith / dan / ar / pl / es / swe / fin / cn / ro
  24. -- English/Français/Italiano/Deutsche/Português/Pусский/Lietuvių/Dansk/العربية/Polskie/Español/Svenska/Suomalainen/中文/Română
  25. cfg.debug = false
  26.  
  27.  
  28. return cfg
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement