Advertisement
AoD_Talons

base/lua

Feb 19th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.21 KB | None | 0 0
  1.  
  2. local cfg = {}
  3.  
  4. -- mysql credentials
  5. cfg.db = {
  6. host = "http://localhost/phpmyadmin/db_structure.php?server=1&db=vrpfx", -- inserted trough ZAP
  7. database = "vrpfx", -- inserted trough ZAP
  8. user = "root", -- inserted trough ZAP
  9. password = "", -- inserted trough ZAP
  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. cfg.ping_timeout = 5 -- number of minutes after a client should be kicked if not sending pings
  22.  
  23.  
  24. -- SET YOUR LANGUAGE HERE - MAKE SURE IT'S INSIDE THE ""
  25. cfg.lang = "en" -- en / fr / it / ger / pt / ru / lith / dan / ar / pl / es / swe / fin / cn / ro
  26. -- English/Français/Italiano/Deutsche/Português/Pусский/Lietuvių/Dansk/العربية/Polskie/Español/Svenska/Suomalainen/中文/Română
  27. cfg.debug = false
  28.  
  29.  
  30. return cfg
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement