mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-24 22:26:46 +01:00
New: Rules= in vminecraft.properties
Changed: Comments to be better, Rules now uses vminecraft.properties, global messages on commands should no longer go off when the command doesn't do anything, Removed:onKick, onIpBan, onBan they weren't even used.
This commit is contained in:
parent
ff917a9532
commit
97385490f4
11
TODO
11
TODO
@ -1,12 +1,11 @@
|
|||||||
TODO:
|
TODO:
|
||||||
Improve logging
|
|
||||||
Fix existing bugs in /promote and /demote
|
Fix existing bugs in /promote and /demote
|
||||||
Add toggles to all features
|
Add toggles to all features
|
||||||
If vminecraft.properties doesn't exist make it be written
|
If vminecraft.properties doesn't exist make it be written and include default settings
|
||||||
Makes /rules use a txt file
|
Refine messages when admins use commands --Ready for testing
|
||||||
Refine messages when admins use commands
|
Change loading to happen when the plugin loads instead of having to wait for a player to speak
|
||||||
/whois doesn't update when someone's group is changed
|
Change everything else in settings to be a string like rules instead of booleans
|
||||||
Improve my comments on vminecraft.java
|
|
||||||
|
|
||||||
Ideas:
|
Ideas:
|
||||||
Mass teleport command
|
Mass teleport command
|
||||||
|
A personal muting system for players
|
@ -1,10 +1,9 @@
|
|||||||
//This doesn't do anything yet, eventually you will be able to toggle features by writing true or false in vminecraft-config.txt
|
|
||||||
//This is high up on my priority list
|
|
||||||
import java.io.*;
|
import java.io.*;
|
||||||
import java.util.*;
|
import java.util.*;
|
||||||
import java.util.logging.Level;
|
import java.util.logging.Level;
|
||||||
import java.util.logging.Logger;
|
import java.util.logging.Logger;
|
||||||
import net.minecraft.server.MinecraftServer;
|
import net.minecraft.server.MinecraftServer;
|
||||||
|
|
||||||
public class settings {
|
public class settings {
|
||||||
private final static Object syncLock = new Object();
|
private final static Object syncLock = new Object();
|
||||||
protected static final Logger log = Logger.getLogger("Minecraft");
|
protected static final Logger log = Logger.getLogger("Minecraft");
|
||||||
@ -20,15 +19,27 @@ public class settings {
|
|||||||
private boolean cmdWhoIs = false;
|
private boolean cmdWhoIs = false;
|
||||||
private PropertiesFile properties;
|
private PropertiesFile properties;
|
||||||
String file = "vminecraft.properties";
|
String file = "vminecraft.properties";
|
||||||
//Unfinished was interrupted in the middle of making this shit, where we can triggle toggles in a text file for commands
|
public String rules[] = null;
|
||||||
//example return true for greentext=true in vminecraft.properties file would disable that code
|
|
||||||
|
|
||||||
|
|
||||||
|
public void rules() {
|
||||||
|
try{
|
||||||
|
rules = properties.getString("rules", "Rules@#1: No griefing").split("@");
|
||||||
|
}
|
||||||
|
catch (Exception e) {
|
||||||
|
log.log(Level.SEVERE, "Vminecraft: "+ e.getMessage() );
|
||||||
|
rules = new String[]{"Rules@#1: No griefing"};
|
||||||
|
}
|
||||||
|
}
|
||||||
public void loadSettings()
|
public void loadSettings()
|
||||||
{
|
//Will create a file if it doesn't exist
|
||||||
|
{
|
||||||
|
if (properties == null) {
|
||||||
|
properties = new PropertiesFile("vminecraft.properties");
|
||||||
|
} else {
|
||||||
|
properties.load();
|
||||||
|
}
|
||||||
try{
|
try{
|
||||||
|
Scanner scanner = new Scanner(new File(file));
|
||||||
Scanner scanner = new Scanner(new File(file));
|
|
||||||
while (scanner.hasNextLine()) {
|
while (scanner.hasNextLine()) {
|
||||||
String line = scanner.nextLine();
|
String line = scanner.nextLine();
|
||||||
if( line.startsWith("#") || line.equals(""))
|
if( line.startsWith("#") || line.equals(""))
|
||||||
@ -103,7 +114,9 @@ public class settings {
|
|||||||
}
|
}
|
||||||
scanner.close();
|
scanner.close();
|
||||||
}
|
}
|
||||||
catch (Exception e) {log.log(Level.SEVERE, "Oh shi-: "+ e.getMessage() );}
|
catch (Exception e) {
|
||||||
|
log.log(Level.SEVERE, "Vminecraft: "+ e.getMessage() );
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -123,5 +136,9 @@ public class settings {
|
|||||||
|
|
||||||
return instance;
|
return instance;
|
||||||
}
|
}
|
||||||
|
//Will return the rules
|
||||||
|
public String[] getRules() {
|
||||||
|
return rules;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
@ -3,16 +3,13 @@ import java.util.Locale;
|
|||||||
import java.util.logging.Logger;
|
import java.util.logging.Logger;
|
||||||
import java.util.logging.Level;
|
import java.util.logging.Level;
|
||||||
public class vminecraft extends Plugin {
|
public class vminecraft extends Plugin {
|
||||||
//settings Settings;
|
|
||||||
@Override
|
@Override
|
||||||
public void disable() {
|
public void disable() {
|
||||||
//throw new UnsupportedOperationException("Not supported yet.");
|
|
||||||
//I have to include this to compile, not sure why.
|
//I have to include this to compile, not sure why.
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void enable() {
|
public void enable() {
|
||||||
//throw new UnsupportedOperationException("Not supported yet.");
|
|
||||||
//I have to include this to compile, not sure why.
|
//I have to include this to compile, not sure why.
|
||||||
}
|
}
|
||||||
static final Logger log = Logger.getLogger("Minecraft");
|
static final Logger log = Logger.getLogger("Minecraft");
|
||||||
@ -20,15 +17,15 @@ public class vminecraft extends Plugin {
|
|||||||
@Override
|
@Override
|
||||||
public void onLogin(Player player)
|
public void onLogin(Player player)
|
||||||
{
|
{
|
||||||
|
settings.getInstance().rules();
|
||||||
settings.getInstance().loadSettings();
|
settings.getInstance().loadSettings();
|
||||||
}
|
}
|
||||||
|
private String rules[];
|
||||||
public boolean onChat(Player player, String message){
|
public boolean onChat(Player player, String message){
|
||||||
//Settings.loadSettings();
|
settings.getInstance().rules();
|
||||||
settings.getInstance().loadSettings();
|
settings.getInstance().loadSettings(); //So you can disable/enable things in the txt files without having to reload the server
|
||||||
String playerb = player.getName(); //Used to get names from players, can't remember why I can't just use 'player'
|
String temp2 = "<" + player.getColor() + player.getName() + Colors.White +"> "; //Copies the formatting of id.java
|
||||||
String temp2 = "<" + player.getColor() + player.getName() + Colors.White +"> "; //Inserts a name before the message
|
String adminchat = Colors.DarkPurple + "{" + player.getColor() + player.getName() + Colors.DarkPurple +"}" + Colors.White + " "; //Special formatting for adminchat
|
||||||
String adminchat = Colors.DarkPurple + "{" + player.getColor() + player.getName() + Colors.DarkPurple +"}" + Colors.White + " "; //Inserts names admin chat style before the message
|
|
||||||
String message2 = ""; //Used for greentext and FFF
|
String message2 = ""; //Used for greentext and FFF
|
||||||
String check = temp2+message; //Calculates how long your message will be including your name in the equation, this prevents minecraft clients from crashing when a color code is inserted after a linebreak
|
String check = temp2+message; //Calculates how long your message will be including your name in the equation, this prevents minecraft clients from crashing when a color code is inserted after a linebreak
|
||||||
if (settings.getInstance().adminchat()&&message.startsWith("@") && (player.isInGroup("mods") || player.isInGroup("admins") || player.isInGroup("superadmins"))) {
|
if (settings.getInstance().adminchat()&&message.startsWith("@") && (player.isInGroup("mods") || player.isInGroup("admins") || player.isInGroup("superadmins"))) {
|
||||||
@ -44,11 +41,10 @@ public class vminecraft extends Plugin {
|
|||||||
p.sendMessage(adminchat+blaa);
|
p.sendMessage(adminchat+blaa);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
//where logs used to be
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
log.log(Level.INFO, "@"+adminchat+message);
|
log.log(Level.INFO, "@"+temp2+message); //So you can read adminchat from the server console
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
//Greentext
|
//Greentext
|
||||||
@ -96,7 +92,7 @@ public class vminecraft extends Plugin {
|
|||||||
if(!player.canUseCommand(split[0])) {
|
if(!player.canUseCommand(split[0])) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
//Replace id's /tp with my own so you can't tele to higher ranked players
|
//Replacement for /tp
|
||||||
if(split[0].equalsIgnoreCase("/tp")) {
|
if(split[0].equalsIgnoreCase("/tp")) {
|
||||||
{
|
{
|
||||||
if (split.length < 2) {
|
if (split.length < 2) {
|
||||||
@ -126,7 +122,7 @@ public class vminecraft extends Plugin {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
//Same thing as my changes to /tp
|
//Replacement for /tphere
|
||||||
if ((split[0].equalsIgnoreCase("/tphere") || split[0].equalsIgnoreCase("/s"))) {
|
if ((split[0].equalsIgnoreCase("/tphere") || split[0].equalsIgnoreCase("/s"))) {
|
||||||
if (split.length < 2) {
|
if (split.length < 2) {
|
||||||
player.sendMessage(Colors.Rose + "Correct usage is: /tphere [player]");
|
player.sendMessage(Colors.Rose + "Correct usage is: /tphere [player]");
|
||||||
@ -151,23 +147,23 @@ public class vminecraft extends Plugin {
|
|||||||
player.sendMessage(Colors.Rose + "Can't find user " + split[1] + ".");
|
player.sendMessage(Colors.Rose + "Can't find user " + split[1] + ".");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
//Temporary fix, this will still go off if you enter anything for split[1] I need to make it so split[1] is the same name as a real player
|
//Global messages that should only parse when a command can be successful
|
||||||
if(split[0].equalsIgnoreCase("/kick")) {
|
if(split[0].equalsIgnoreCase("/kick")) {
|
||||||
if (split[1] != null){
|
Player playerTarget = etc.getServer().matchPlayer(split[1]);
|
||||||
other.gmsg(player.getColor()+player.getName()+Colors.Blue+" used kick.");
|
if (playerTarget != null && !playerTarget.hasControlOver(player)) {
|
||||||
other.gmsg(Colors.Red+split[1]+" was the target.");
|
other.gmsg(player.getColor()+player.getName()+Colors.Blue+" has kicked "+Colors.Red+playerTarget.getColor()+playerTarget.getName());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if(split[0].equalsIgnoreCase("/ban")) {
|
if(split[0].equalsIgnoreCase("/ban")) {
|
||||||
if (split[1] != null){
|
Player playerTarget = etc.getServer().matchPlayer(split[1]);
|
||||||
other.gmsg(player.getColor()+player.getName()+Colors.Blue+" used ban.");
|
if (playerTarget != null && !playerTarget.hasControlOver(player)) {
|
||||||
other.gmsg(Colors.Red+split[1]+" was the target.");
|
other.gmsg(player.getColor()+player.getName()+Colors.Blue+" has banned "+Colors.Red+playerTarget.getColor()+playerTarget.getName());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if(split[0].equalsIgnoreCase("/ipban")) {
|
if(split[0].equalsIgnoreCase("/ipban")) {
|
||||||
if (split[1] != null){
|
Player playerTarget = etc.getServer().matchPlayer(split[1]);
|
||||||
other.gmsg(player.getColor()+player.getName()+Colors.Blue+" used IP ban.");
|
if (playerTarget != null && !playerTarget.hasControlOver(player)) {
|
||||||
other.gmsg(Colors.Red+split[1]+" was the target.");
|
other.gmsg(player.getColor()+player.getName()+Colors.Blue+" has IP banned "+Colors.Red+playerTarget.getColor()+playerTarget.getName());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if(split[0].equalsIgnoreCase("/time")) {
|
if(split[0].equalsIgnoreCase("/time")) {
|
||||||
@ -176,16 +172,11 @@ public class vminecraft extends Plugin {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//Rules
|
//Rules
|
||||||
if(split[0].equalsIgnoreCase("/rules")) {
|
if(split[0].equalsIgnoreCase("/rules")) {
|
||||||
etc.getInstance().addCommand("/rules", "Displays the rules");
|
for (String str : settings.getInstance().getRules()) {
|
||||||
player.sendMessage(Colors.Blue + "Rules");
|
player.sendMessage(Colors.Blue+str);
|
||||||
player.sendMessage(Colors.Blue+"#1:No griefing");
|
}
|
||||||
player.sendMessage(Colors.Blue+"#2:Don't spam night/day changes");
|
|
||||||
player.sendMessage(Colors.Blue+"#3:Don't beg for items that you could easily gather");
|
|
||||||
player.sendMessage(Colors.Blue+"#4:Don't steal from another players chest");
|
|
||||||
player.sendMessage(Colors.Blue+"#5:The admins word is final");
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
//Fabulous
|
//Fabulous
|
||||||
@ -193,7 +184,6 @@ public class vminecraft extends Plugin {
|
|||||||
if (split.length == 1) {return false;}
|
if (split.length == 1) {return false;}
|
||||||
String temp = "";
|
String temp = "";
|
||||||
String str = "";
|
String str = "";
|
||||||
//str = paramString.substring(paramString.indexOf(" ")).trim();
|
|
||||||
str = etc.combineSplit(1, split, " ");
|
str = etc.combineSplit(1, split, " ");
|
||||||
String temp2 = "<" + player.getName() + "> "+str;
|
String temp2 = "<" + player.getName() + "> "+str;
|
||||||
String[] rainbow = new String[] {Colors.Red, Colors.Rose, Colors.Yellow, Colors.Green, Colors.Blue, Colors.LightPurple, Colors.Purple};
|
String[] rainbow = new String[] {Colors.Red, Colors.Rose, Colors.Yellow, Colors.Green, Colors.Blue, Colors.LightPurple, Colors.Purple};
|
||||||
@ -321,11 +311,10 @@ public class vminecraft extends Plugin {
|
|||||||
log.log(Level.INFO, "Command used by " + player + " " + split[0] +" "+split[1]+" ");
|
log.log(Level.INFO, "Command used by " + player + " " + split[0] +" "+split[1]+" ");
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
//Whois will display info about a player
|
//Whois will display info about a player
|
||||||
if (settings.getInstance().cmdWhoIs()&&split[0].equalsIgnoreCase("/whois")) {
|
if (settings.getInstance().cmdWhoIs()&&split[0].equalsIgnoreCase("/whois")) {
|
||||||
if (split.length < 2) {
|
if (split.length < 2) {
|
||||||
player.sendMessage(Colors.Rose + "Usage is /whois [player]");
|
player.sendMessage(Colors.Rose + "Usage is /whois [player]");
|
||||||
//This part of the code might not be working right now
|
|
||||||
}
|
}
|
||||||
String admin ="";
|
String admin ="";
|
||||||
String group ="";
|
String group ="";
|
||||||
@ -363,46 +352,35 @@ public class vminecraft extends Plugin {
|
|||||||
}else{
|
}else{
|
||||||
group = "Default";
|
group = "Default";
|
||||||
}
|
}
|
||||||
//Main
|
//Displaying the information
|
||||||
player.sendMessage(Colors.Blue + "Whois results for "+split[1]+".");
|
player.sendMessage(Colors.Blue + "Whois results for "+split[1]+".");
|
||||||
//Info for group
|
//Group
|
||||||
player.sendMessage(Colors.Blue + "Group: "+group);
|
player.sendMessage(Colors.Blue + "Group: "+group);
|
||||||
//info for admin
|
//Admin
|
||||||
player.sendMessage(Colors.Blue+"Admin: "+admin);
|
player.sendMessage(Colors.Blue+"Admin: "+admin);
|
||||||
//Info for IP
|
//IP
|
||||||
player.sendMessage(Colors.Blue+"IP: "+IP);
|
player.sendMessage(Colors.Blue+"IP: "+IP);
|
||||||
//Info on restrictions
|
//Restrictions
|
||||||
player.sendMessage(Colors.Blue+"Can ignore restrictions: "+ignore);
|
player.sendMessage(Colors.Blue+"Can ignore restrictions: "+ignore);
|
||||||
return true;
|
return true;
|
||||||
} else {
|
} else {
|
||||||
player.sendMessage(Colors.Rose+"Player not found.");
|
player.sendMessage(Colors.Rose+"Player not found.");
|
||||||
}
|
}
|
||||||
|
}
|
||||||
} if (split[0].equalsIgnoreCase("/say")) {
|
//Say
|
||||||
|
if (split[0].equalsIgnoreCase("/say")) {
|
||||||
String sayan;
|
String sayan;
|
||||||
sayan = etc.combineSplit(1, split, " ");
|
sayan = etc.combineSplit(1, split, " ");
|
||||||
other.gmsg(Colors.Yellow+sayan);
|
other.gmsg(Colors.Yellow+sayan);
|
||||||
//Should make a global message to all players
|
|
||||||
}
|
}
|
||||||
else {
|
//Should this be included?
|
||||||
|
else {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
//Needs to be included
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void onKick(Player player, String reason)
|
|
||||||
{
|
|
||||||
//other.gmsg(Colors.Red+player.getColor()+player.getName()+Colors.Red+" was kicked.");
|
|
||||||
}
|
|
||||||
public void onIpBan(Player player, String reason)
|
|
||||||
{
|
|
||||||
//other.gmsg(Colors.Red+player.getColor()+player.getName()+Colors.Red+" was IP banned.");
|
|
||||||
}
|
|
||||||
public void onBan(Player player, String reason)
|
|
||||||
{
|
|
||||||
//other.gmsg(Colors.Red+player.getColor()+player.getName()+Colors.Red+" was banned.");
|
|
||||||
}
|
|
||||||
|
|
||||||
//Calculates how long the specified String is to prevent linebreaks when using scripts that insert color codes, designed to be used with playername included
|
//Calculates how long the specified String is to prevent linebreaks when using scripts that insert color codes, designed to be used with playername included
|
||||||
private boolean lengthCheck(String str)
|
private boolean lengthCheck(String str)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user