Skip to content

CampHQmc/MinestomLauncher

 
 

Repository files navigation

THIS FORK IS NOT STABLE AND IT'S NOT PRECISE + IT CONTAINS JANK. BEWARE.


banner

Minestom Launcher

Java 17 GitHub license

Minestom Launcher is a Java software that runs a Minestom server like you would do with Bukkit/Sponge/Quilt.

alt text

Download & Installation

It's simple as installing a Bukkit server: you must download the jar from the tags section on this GitHub page and then run the jar like you would do with the bukkit one. Remember you can always clone the project and build it yourself.

Minestom Configuration

After the first start you will notice that a file named server.json will be created, this file is the equivalent of the server.properties for the Bukkit servers. You can change anything you need for your server, even the tps (ticks per second), but the value must be between 20 and 128.

{
  "network" : {
    "ip" : "127.0.0.1",
    "port" : 25565,
    "open_to_lan" : false
  },
  "proxy" : {
    "enabled" : false,
    "type" : "",
    "secret" : ""
  },
  "server" : {
    "ticks_per_second" : 20,
    "chunk_view_distance" : 8,
    "entity_view_distance" : 6,
    "online_mode" : false,
    "optifine_support" : true,
    "terminal" : false,
    "benchmark" : false
  }, 
  "instance": {
    "enabled": false, 
    "type": "flat"
  }
}

NOTE: The server.json on the repository only exists for testing purpose, the build script will ignore it!

Logger Configuration

The launcher will use a custom TinyLog configuration with many changes and different formatting, if you want to change the config go inside the jar and modify the file named tinylog.properties.

# this is the tinylog.properties inside the jar

# tinylog config
autoshutdown          = true
writingthread         = true

# logs to a console
writerConsole         = minestom console
writerConsole.level   = info
writerConsole.format  = [{date: HH:mm:ss} {level}] [{thread}] [{class-name}.{method}]: {message}
writerConsole.charset = UTF-8

# logs to a file
writerFile            = rolling file
writerFile.level      = info
writerFile.format     = [{date: HH:mm:ss} {level}] [{thread}] [{class-name}.{method}]: {message}
writerFile.file       = logs/{date:dd-MM-yyyy} - {count}.log
writerFile.latest     = logs/latest.log
writerFile.charset    = UTF-8
writerFile.buffered   = true
writer.policies       = startup, daily: 00:00, size: 1mb
writerFile.backups    = 100
writerFile.convert    = gzip

Roadmap

  • GitHub actions
  • Commands
  • Packs (add custom biomes, dimensions, modify blocks behavior)

License

This project is licensed under the General Public License 3.0.

About

Simple launcher for the Minecraft Minestom server using CHQMinestom.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • Java 93.7%
  • Kotlin 6.3%