Advertisement
Guest User

Untitled

a guest
May 25th, 2018
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. ## MySQL Configuration
  2. db.hostname=127.0.0.1
  3. db.port=3306
  4. db.username=root
  5. db.password=fuckoff
  6. db.name=rp
  7. db.type=MySQL
  8.  
  9. ## MySQL pooling setup (controls amount of connections)
  10. db.pool.minsize=1
  11. db.pool.maxsize=3000
  12.  
  13. ## Game TCP/IP Configuration
  14. game.tcp.bindip=127.0.0.1 #If it is localhost leave this, if you're using a VPS change it to the VPS IP
  15. game.tcp.port=30000
  16. game.tcp.conlimit=11000
  17. game.tcp.conperip=100
  18. game.tcp.enablenagles=true
  19. game.tcp.port.proxy=30000
  20.  
  21. ## MUS TCP/IP Configuration
  22. mus.tcp.bindip=30000
  23. mus.tcp.port=30001
  24. mus.tcp.allowedaddr=127.0.0.1
  25.  
  26. ## Client configuration
  27. client.ping.enabled=1
  28. client.ping.interval=20000
  29. client.maxrequests=300
  30.  
  31. ## Developer Settings
  32. Debug=false
  33.  
  34. ## Language System
  35. system.lang=english
  36.  
  37. ## Console Clear Timer
  38. console.clear.enabled=false
  39. console.clear.time=60000
  40.  
  41. ## Bots Settings
  42. game.roomswithbotscolor=0
  43. game.botdefaultcolor=31
  44. game.botbadge=BOT
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement