Spigot added a feature allowing for server to automatically restart on crashes,
as well as when authorized user executes /restart
command.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import javafx.application.Application; | |
import javafx.beans.binding.Bindings; | |
import javafx.beans.property.*; | |
import javafx.event.ActionEvent; | |
import javafx.event.EventHandler; | |
import javafx.geometry.Pos; | |
import javafx.scene.Scene; | |
import javafx.scene.control.*; | |
import javafx.scene.input.KeyEvent; | |
import javafx.scene.layout.*; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Jobs configuration. | |
# | |
# Stores information about each job. | |
# | |
# NOTE: When having multiple jobs, both jobs will give the income payout to the player | |
# even if they give the pay for one action (make the configurations with this in mind) | |
# and each job will get the respective experience. | |
# | |
# e.g If player has 2 jobs where job1 gives 10 income and experience for killing a player | |
# and job2 gives 5 income and experience for killing a player. When the user kills a player |