Advertisement
Guest User

Untitled

a guest
May 19th, 2019
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.33 KB | None | 0 0
  1. [vRP/C#] connection vRP not found
  2. [vRP/C#] connection vRP not found
  3. [vRP/C#] connection vRP not found
  4. [vRP/C#] connection vRP not found
  5. [vRP/C#] connection vRP not found
  6. im just using remote host and this is the server .lua down
  7.  
  8.  
  9. local cfg = {}
  10.  
  11. -- mysql credentials
  12. cfg.db = {
  13. host = "82.137.112.171", -- database ip (default is local)
  14. database = "vrpfx", -- name of database
  15. user = "root", -- database username
  16. password = "" -- password of your database
  17. }
  18.  
  19. cfg.save_interval = 30 -- seconds
  20. cfg.whitelist = false -- enable/disable whitelist
  21. cfg.ignore_ip_identifier = true -- This will allow multiple same IP connections (for families etc)
  22.  
  23. -- delay the tunnel at loading (for weak connections)
  24. cfg.load_duration = 5 -- seconds, player duration in loading mode at the first spawn
  25. cfg.load_delay = 0 -- milliseconds, delay the tunnel communication when in loading mode
  26. cfg.global_delay = 0 -- milliseconds, delay the tunnel communication when not in loading mode
  27.  
  28.  
  29. -- SET YOUR LANGUAGE HERE - MAKE SURE IT'S INSIDE THE ""
  30. cfg.lang = "en" -- en / fr / it / ger / pt / ru / lith / dan / ar / pl / es / swe / fin / cn / ro
  31. -- English/Français/Italiano/Deutsche/Português/Pусский/Lietuvių/Dansk/العربية/Polskie/Español/Svenska/Suomalainen/中文/Română
  32. cfg.debug = false
  33.  
  34.  
  35. return cfg
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement