Advertisement
Guest User

Untitled

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