Fix Input and Equal and Global and Unglobal and Unvar and Var
Dieser Commit ist enthalten in:
Ursprung
a6bbe47f18
Commit
9b39252235
@ -29,7 +29,7 @@ public class Input implements SpecialCommand {
|
|||||||
@Override
|
@Override
|
||||||
public boolean execute(String[] command, ScriptExecutor scriptExecutor) {
|
public boolean execute(String[] command, ScriptExecutor scriptExecutor) {
|
||||||
if (command.length <= 1) {
|
if (command.length <= 1) {
|
||||||
scriptExecutor.getPlayer().sendMessage(BauSystem.PREFIX + "§cDas erste Argument fehlt und sollte ein Name sein");
|
scriptExecutor.getPlayer().sendMessage(BauSystem.PREFIX + "§cDas erste Argument fehlt und sollte eine Variable sein");
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
StringBuilder st = new StringBuilder();
|
StringBuilder st = new StringBuilder();
|
||||||
|
@ -28,11 +28,11 @@ public class Equal implements SpecialCommand {
|
|||||||
@Override
|
@Override
|
||||||
public boolean execute(String[] command, ScriptExecutor scriptExecutor) {
|
public boolean execute(String[] command, ScriptExecutor scriptExecutor) {
|
||||||
if (command.length <= 1) {
|
if (command.length <= 1) {
|
||||||
scriptExecutor.getPlayer().sendMessage(BauSystem.PREFIX + "§cDas erste Argument fehlt und sollte ein Name sein");
|
scriptExecutor.getPlayer().sendMessage(BauSystem.PREFIX + "§cDas erste Argument fehlt und sollte eine Variable sein");
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
if (command.length <= 2) {
|
if (command.length <= 2) {
|
||||||
scriptExecutor.getPlayer().sendMessage(BauSystem.PREFIX + "§cDas zweite Argument fehlt und sollte ein Name sein");
|
scriptExecutor.getPlayer().sendMessage(BauSystem.PREFIX + "§cDas zweite Argument fehlt und sollte eine Variable sein");
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -13,7 +13,7 @@ public class Global implements SpecialCommand {
|
|||||||
@Override
|
@Override
|
||||||
public String[] description() {
|
public String[] description() {
|
||||||
return new String[]{
|
return new String[]{
|
||||||
"§eglobal §8<§7Name§8> §8[§7Value§8(§7s§8)§8]",
|
"§eglobal §8<§7Variable§8> §8[§7Value§8(§7s§8)§8]",
|
||||||
"",
|
"",
|
||||||
"Schreibt in eine Variable einen Wert rein, welcher eine Zahl sein kann, ein Boolscher Wert oder ein Text."
|
"Schreibt in eine Variable einen Wert rein, welcher eine Zahl sein kann, ein Boolscher Wert oder ein Text."
|
||||||
};
|
};
|
||||||
@ -27,7 +27,7 @@ public class Global implements SpecialCommand {
|
|||||||
@Override
|
@Override
|
||||||
public boolean execute(String[] command, ScriptExecutor scriptExecutor) {
|
public boolean execute(String[] command, ScriptExecutor scriptExecutor) {
|
||||||
if (command.length <= 1) {
|
if (command.length <= 1) {
|
||||||
scriptExecutor.getPlayer().sendMessage(BauSystem.PREFIX + "§cDas erste Argument fehlt und sollte ein Name sein");
|
scriptExecutor.getPlayer().sendMessage(BauSystem.PREFIX + "§cDas erste Argument fehlt und sollte eine Variable sein");
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
if (command.length <= 2) {
|
if (command.length <= 2) {
|
||||||
|
@ -12,7 +12,7 @@ public class Unglobal implements SpecialCommand {
|
|||||||
@Override
|
@Override
|
||||||
public String[] description() {
|
public String[] description() {
|
||||||
return new String[]{
|
return new String[]{
|
||||||
"§eunglobal §8<§7Name§8>",
|
"§eunglobal §8<§7Variable§8>",
|
||||||
"",
|
"",
|
||||||
"§7Lösche eine Globale variable."
|
"§7Lösche eine Globale variable."
|
||||||
};
|
};
|
||||||
@ -26,7 +26,7 @@ public class Unglobal implements SpecialCommand {
|
|||||||
@Override
|
@Override
|
||||||
public boolean execute(String[] command, ScriptExecutor scriptExecutor) {
|
public boolean execute(String[] command, ScriptExecutor scriptExecutor) {
|
||||||
if (command.length <= 1) {
|
if (command.length <= 1) {
|
||||||
scriptExecutor.getPlayer().sendMessage(BauSystem.PREFIX + "§cDas erste Argument fehlt und sollte ein Name sein");
|
scriptExecutor.getPlayer().sendMessage(BauSystem.PREFIX + "§cDas erste Argument fehlt und sollte eine Variable sein");
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
scriptExecutor.getGlobalVariables().removeValue(command[1]);
|
scriptExecutor.getGlobalVariables().removeValue(command[1]);
|
||||||
|
@ -12,7 +12,7 @@ public class Unvar implements SpecialCommand {
|
|||||||
@Override
|
@Override
|
||||||
public String[] description() {
|
public String[] description() {
|
||||||
return new String[]{
|
return new String[]{
|
||||||
"§eunvar §8<§7Name§8>",
|
"§eunvar §8<§7Variable§8>",
|
||||||
"",
|
"",
|
||||||
"§7Lösche eine Locale variable."
|
"§7Lösche eine Locale variable."
|
||||||
};
|
};
|
||||||
@ -26,7 +26,7 @@ public class Unvar implements SpecialCommand {
|
|||||||
@Override
|
@Override
|
||||||
public boolean execute(String[] command, ScriptExecutor scriptExecutor) {
|
public boolean execute(String[] command, ScriptExecutor scriptExecutor) {
|
||||||
if (command.length <= 1) {
|
if (command.length <= 1) {
|
||||||
scriptExecutor.getPlayer().sendMessage(BauSystem.PREFIX + "§cDas erste Argument fehlt und sollte ein Name sein");
|
scriptExecutor.getPlayer().sendMessage(BauSystem.PREFIX + "§cDas erste Argument fehlt und sollte eine Variable sein");
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
scriptExecutor.getLocalVariables().removeValue(command[1]);
|
scriptExecutor.getLocalVariables().removeValue(command[1]);
|
||||||
|
@ -13,7 +13,7 @@ public class Var implements SpecialCommand {
|
|||||||
@Override
|
@Override
|
||||||
public String[] description() {
|
public String[] description() {
|
||||||
return new String[]{
|
return new String[]{
|
||||||
"§evar §8<§7Name§8> §8[§7Value§8(§7s§8)§8]",
|
"§evar §8<§7Variable§8> §8[§7Value§8(§7s§8)§8]",
|
||||||
"",
|
"",
|
||||||
"Schreibt in eine Variable einen Wert rein, welcher eine Zahl sein kann, ein Boolscher Wert oder ein Text."
|
"Schreibt in eine Variable einen Wert rein, welcher eine Zahl sein kann, ein Boolscher Wert oder ein Text."
|
||||||
};
|
};
|
||||||
@ -27,7 +27,7 @@ public class Var implements SpecialCommand {
|
|||||||
@Override
|
@Override
|
||||||
public boolean execute(String[] command, ScriptExecutor scriptExecutor) {
|
public boolean execute(String[] command, ScriptExecutor scriptExecutor) {
|
||||||
if (command.length <= 1) {
|
if (command.length <= 1) {
|
||||||
scriptExecutor.getPlayer().sendMessage(BauSystem.PREFIX + "§cDas erste Argument fehlt und sollte ein Name sein");
|
scriptExecutor.getPlayer().sendMessage(BauSystem.PREFIX + "§cDas erste Argument fehlt und sollte eine Variable sein");
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
if (command.length <= 2) {
|
if (command.length <= 2) {
|
||||||
|
In neuem Issue referenzieren
Einen Benutzer sperren