Advertisement
gradio

Untitled

Feb 14th, 2019
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 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 = "vrp", -- name of database
  7. user = "root", -- database username
  8. password = "75915300R" -- password of your database
  9. }
  10.  
  11. cfg.save_interval = 30 -- seconds
  12. cfg.whitelist = false -- enable/disable whitelist
  13.  
  14. -- delay the tunnel at loading (for weak connections)
  15. cfg.load_duration = 5 -- seconds, player duration in loading mode at the first spawn
  16. cfg.load_delay = 0 -- milliseconds, delay the tunnel communication when in loading mode
  17. cfg.global_delay = 0 -- milliseconds, delay the tunnel communication when not in loading mode
  18.  
  19. cfg.ping_timeout = 5 -- number of minutes after a client should be kicked if not sending pings
  20.  
  21. -- identify users only with steam or ros identifiers (solve same ip issue, recommended)
  22. -- if enabled, steam auth should be forced in the FiveM server config
  23. cfg.ignore_ip_identifier = true
  24.  
  25. cfg.lang = "dan"
  26. cfg.debug = false
  27.  
  28.  
  29. return cfg
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement