SHOW:
|
|
- or go back to the newest paste.
| 1 | local cfg = {}
| |
| 2 | ||
| 3 | -- mysql credentials | |
| 4 | cfg.db = {
| |
| 5 | host = "dreamlandrp.it", --ip | |
| 6 | - | host = "", --ip |
| 6 | + | database = "vrpfx", -- name of database |
| 7 | - | database = "", -- name of database |
| 7 | + | user = "vrpfxdatabase", -- name of user |
| 8 | - | user = "", -- name of user |
| 8 | + | password = "xY24tp7~" -- password of you database i'm use xampp and no password |
| 9 | - | password = "" -- password of you database i'm use xampp and no password |
| 9 | + | |
| 10 | ||
| 11 | cfg.save_interval = 60 -- seconds | |
| 12 | cfg.whitelist = false -- enable/disable whitelist | |
| 13 | ||
| 14 | -- delay the tunnel at loading (for weak connections) | |
| 15 | cfg.load_duration = 30 -- seconds, player duration in loading mode at the first spawn | |
| 16 | cfg.load_delay = 60 -- 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 | cfg.lang = "en" -- en / fr / pt-br | |
| 22 | cfg.debug = false | |
| 23 | ||
| 24 | ||
| 25 | return cfg |