4 Commits

Author SHA1 Message Date
fbe40942fb Minor changes 2021-08-01 23:27:09 +02:00
cdba5e89ef Updated pom.xml 2021-08-01 22:36:21 +02:00
8e3e0ecb37 Updated pom.xml & ReadMe.md 2021-08-01 22:33:21 +02:00
e1afef427c Updated README.md & GIFs to local repo 2021-08-01 22:20:16 +02:00
10 changed files with 15 additions and 34 deletions

View File

@ -1,6 +1,6 @@
# SimplifyTools
### An 'All-in-one' helper plugin for Minecraft Spigot Servers.
| Build Status | ![ Build Status](https://ci.dit-services.tk/buildStatus/icon?job=DIT-System) |
| Build Status | [![Build Status](https://ci.dit-services.tk/job/SimplifyTools/badge/icon)](https://ci.dit-services.tk/job/SimplifyTools/) |
|:-------------:|:-----------------------------------------------------------------------------------------------------------------:|
| MC Version | ![ MC Version](https://ci.dit-services.tk/job/SimplifyTools/badge/icon?subject=MC&status=1.16.5&color=darkblue) |
| Lines of code | ![ Lines of code](https://tokei.rs/b1/github/LabodiDavid/SimplifyTools?category=code) |
@ -9,18 +9,18 @@
- **Tab Manager** - Allows you to specify colored texts, with animations on the tab window.
Also you can display the average ping, Server RAM statistics.
![Tab manager preview](https://ci.dit-services.tk/userContent/simplifytools/1.gif)
![Tab manager preview](docs/img/1.gif)
- **Automatic/command saving** - Allows you to schedule auto saving of the world/player data on your server, or you can initiate a save by a command.
- **Custom Connect/Disconnect messages** - Allows you to customize the message that is broadcasted when someone joins or leaves the server.
![Connect messages preview](https://ci.dit-services.tk/userContent/simplifytools/2.gif)
![Connect messages preview](docs/img/2.gif)
- **Plugin Manager** - Allows you to unload/load plugins without a server restart.
(Note: This may be removed in 1.17.x versions for security reasons)
- **Gameplay statistics** - You can check your gameplay statistics such as player/mob kills, etc.
(Note: The plugin just shows the stats not recording itself, so stats before installing this plugin are counted too.)
![Stats preview](https://ci.dit-services.tk/userContent/simplifytools/3.gif)
![Stats preview](docs/img/3.gif)
- **Custom Advancement Messages** - You can customize the advancement messages in three categories: advancement, goal, challenge.
(Note: The advancement names are currently only can be displayed in english. In future versions there will be a feature to translate to any languages.)
![Advancement Messages preview](https://ci.dit-services.tk/userContent/simplifytools/4.gif)
![Advancement Messages preview](docs/img/4.gif)
- **Logging** - A logger with fully customizable format for dis/connect, chat, commands actions.
### [Check the config file for more explanation and examples](https://github.com/LabodiDavid/SimplifyTools/blob/main/src/main/resources/config.yml)

View File

@ -9,8 +9,9 @@ You can use the following commands to use the features of SimplifyTools.
- **/st pmanager load** <PLUGIN-NAME>: Plugin loading.<br />Requires `st.pmanager.load (can be inherited from st.pmanager.*)`
- **/st pmanager unload** <PLUGIN-NAME>: Plugin unload.<br />Requires `st.pmanager.unload (can be inherited from st.pmanager.*)`
- **/st reload**: Plugin settings reload.<br />Requires `st.reload`
<br />
## SimplifyTools Wildcard Permissions
- **st.*** - Wildcard permission for all commands, permissions for this plugin.
- **st.pmanager.*** - Wildcard permission for the plugin manager commands.
- **st.admin** - A wildcard permission for admins. This is used for notify when update available, also grants usage for `st.save` and `st.pmanager.*`

BIN
docs/img/1.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 MiB

BIN
docs/img/2.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 948 KiB

BIN
docs/img/3.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 MiB

BIN
docs/img/4.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 MiB

View File

@ -74,17 +74,18 @@
</build>
<repositories>
<!--<repository>
<id>spigot-repo</id>
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
</repository>-->
<repository>
<id>sonatype</id>
<url>https://oss.sonatype.org/content/groups/public/</url>
</repository>
<repository>
<id>spigot-repo</id>
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
</repository>
</repositories>
<dependencies>
<!--For this version use BuildTools!-->
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot</artifactId>

View File

@ -40,9 +40,6 @@ public final class DITSystem extends JavaPlugin implements CommandExecutor, List
this.DIT_initialize();
this.tab = new TabManager(this,this.config);
this.dplug = new DitPluginManager(this);
System.out.println(this.getPrefix()+"Started running.");
}
@ -74,8 +71,6 @@ public final class DITSystem extends JavaPlugin implements CommandExecutor, List
}
public void initOptions(){
if (config.getBoolean("Saving.enabled") && config.getInt("Saving.interval")>0){
BukkitScheduler scheduler = getServer().getScheduler();
scheduler.scheduleSyncRepeatingTask(instance, new Runnable() {
@ -93,7 +88,6 @@ public final class DITSystem extends JavaPlugin implements CommandExecutor, List
}, 0L, Math.convert(Math.Convert.SECONDS,Math.Convert.TICKS,instance.config.getInt("Saving.interval")));
}
if (this.config.isSet("CustomAdvancement.enabled")) {
if(config.getBoolean("CustomAdvancement.enabled")){

View File

@ -30,12 +30,9 @@ public class DITTabCompleter implements TabCompleter {
}
}
}
List<String> idea = new ArrayList<>();
List<String> result = new ArrayList<>();
String curr_cmd = "";
//String[] vizsg_args = new String[args.length+1];
List<String> vizsg_list = new ArrayList<>();
boolean vizsg_2 = false;
if (args.length == 1) {
@ -79,8 +76,6 @@ public class DITTabCompleter implements TabCompleter {
}
}
return idea;
}
}
return null;

View File

@ -3,17 +3,12 @@ package tk.ditservices.commands;
import org.bukkit.Bukkit;
import org.bukkit.World;
import tk.ditservices.DITSystem;
import tk.ditservices.utils.Cooldown;
import org.bukkit.ChatColor;
import org.bukkit.command.*;
import org.bukkit.configuration.file.FileConfiguration;
import org.bukkit.entity.Player;
import java.util.HashMap;
import java.util.Map;
public class DitCmd implements CommandExecutor {
String noArgMsg;
DITSystem plugin;
@ -58,8 +53,8 @@ public class DitCmd implements CommandExecutor {
return true;
}else{
if (sender instanceof ConsoleCommandSender) {
ConsoleCommandSender konzoladmin = (ConsoleCommandSender) sender;
konzoladmin.sendMessage(this.noArgMsg);
ConsoleCommandSender consoleadmin = (ConsoleCommandSender) sender;
consoleadmin.sendMessage(this.noArgMsg);
return true;
}
}
@ -73,8 +68,8 @@ public class DitCmd implements CommandExecutor {
cd.Add(p);
}
sender.sendMessage(plugin.getPrefix()+ChatColor.GREEN+"Successfully reload!");
sender.sendMessage(plugin.getPrefix()+ChatColor.RED+"Notice: Restart your server if the settings didn't applied.");
}
//sender.sendMessage(plugin.getPrefix()+ChatColor.RED+" Ezt a verziót a "+ChatColor.YELLOW+"'/reload confirm'"+ChatColor.RED+" parancssal tudod csak újratölteni!");
}
if (command.getName().equalsIgnoreCase("st") && args[0].contains("pmanager")){
@ -95,7 +90,6 @@ public class DitCmd implements CommandExecutor {
}
return true;
}
if (args[1].equalsIgnoreCase("load")) {
PluginCmd.handleLoad(sender,args);
}
@ -134,14 +128,10 @@ public class DitCmd implements CommandExecutor {
cd.Add(p);
} return StatCmd.Run(sender);
}
}else{
cd.CDText(sender);
}
}
return true;
}