Advertisement
Guest User

Untitled

a guest
Jun 16th, 2015
461
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.65 KB | None | 0 0
  1. {
  2. "driver_default" "MySQL"
  3.  
  4. // When specifying "host", you may use an IP address, a hostname, or a socket file path
  5.  
  6. "default"
  7. {
  8. "driver" "default"
  9. "host" "localhost"
  10. "database" "sourcemod"
  11. "user" "root"
  12. "pass" ""
  13. //"timeout" "0"
  14. //"port" "0"
  15. }
  16.  
  17. "storage-local"
  18. {
  19. "driver" "sqlite"
  20. "database" "sourcemod-local"
  21. }
  22.  
  23. "clientprefs"
  24. {
  25. "driver" "sqlite"
  26. "host" "localhost"
  27. "database" "clientprefs-sqlite"
  28. "user" "root"
  29. "pass" ""
  30. //"timeout" "0"
  31. //"port" "0"
  32. }
  33.  
  34. "multi1v1"
  35. {
  36. "driver" "MySQL"
  37. "host" "public-ip-address" // localhost works too
  38. "database" "game_servers_database"
  39. "user" "mymulti1v1server"
  40. "pass" "**"
  41. "timeout" "10"
  42. "port" "3306" // whatever port MySQL is set up on, 3306 is default
  43. }
  44.  
  45. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement