Advertisement
Guest User

Untitled

a guest
Sep 20th, 2019
192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.90 KB | None | 0 0
  1. {
  2. "pufferd": {
  3. "type": "java",
  4. "display": "Bungeecord - Minecraft",
  5. "install": {
  6. "commands": [
  7. {
  8. "files": "http://ci.md-5.net/job/BungeeCord/lastSuccessfulBuild/artifact/bootstrap/target/BungeeCord.jar",
  9. "type": "download"
  10. },
  11. {
  12. "type": "writefile",
  13. "text": "listeners:\n- query_port: ${port}\n host: ${ip}:${port}\n motd: '${motd}'\n",
  14. "target": "config.yml"
  15. }
  16. ]
  17. },
  18. "run": {
  19. "stop": "end",
  20. "pre": [{"commands": ["perl -pi -e s/\\bhost:.*/host:\\x20${ip}:${port}/g config.yml"], "type": "command"}],
  21. "post": [],
  22. "arguments": [
  23. "-Xmx${memory}M",
  24. "-Xms${memory}M",
  25. "-jar",
  26. "BungeeCord.jar"
  27. ],
  28. "program": "java"
  29. },
  30. "environment": {
  31. "type": "standard"
  32. },
  33. "data": {
  34. "port": {
  35. "value": "25577",
  36. "required": true,
  37. "desc": "What port to bind the server to",
  38. "display": "Port",
  39. "internal": false,
  40. "type": "integer"
  41. },
  42. "motd": {
  43. "value": "A BungeeCord Server &9hosted on SpaceCore",
  44. "required": true,
  45. "desc": "Это сообщение, которое отображается в списке серверов клиента под именем. MOTD поддерживает <a href='https://minecraft.gamepedia.com/Formatting_codes' target='_blank'> коды цвета и форматирования</a>.",
  46. "display": "Описание Вашего сервера",
  47. "internal": false
  48. },
  49. "extraArgs": {
  50. "value": "-server -XX:+UseG1GC -Xmx${memory}M -Dfile.encoding=UTF-8 -jar ${jar}",
  51. "required": false,
  52. "desc": "Extra JVM arguments to add to the server",
  53. "display": "JVM Arguments",
  54. "internal": false
  55. }
  56. }
  57. }
  58. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement