Guest User

Untitled

a guest
Feb 3rd, 2019
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. local cfg = {}
  2.  
  3. -- mysql credentials
  4. cfg.db = {
  5. host = "127.0.0.1", -- database ip (default is local)
  6. database = "vrpfx", -- name of database
  7. user = "root", -- database username
  8. password = "" -- password of your database
  9. }
  10.  
  11. cfg.save_interval = 30 -- seconds
  12. cfg.whitelist = false -- enable/disable whitelist
  13. cfg.ignore_ip_identifier = true -- This will allow multiple same IP connections (for families etc)
  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.  
  21. -- SET YOUR LANGUAGE HERE - MAKE SURE IT'S INSIDE THE ""
  22. cfg.lang = "en" -- en / fr / it / ger / pt / ru / lith / dan / ar / pl / es / swe / fin / cn / ro
  23. -- English/Français/Italiano/Deutsche/Português/Pусский/Lietuvių/Dansk/العربية/Polskie/Español/Svenska/Suomalainen/中文/Română
  24. cfg.debug = false
  25.  
  26.  
  27. return cfg
Add Comment
Please, Sign In to add comment