|
@@ -58,6 +58,7 @@ command.register("games", "Teleports to games-spawn");
|
|
|
command.register("giveup", "Giveup a quest");
|
|
|
command.register("grow", "Grow seeds");
|
|
|
command.register("hat", "Be fame with a new hat");
|
|
|
+command.register("hawkeye", "Rollback griefings");
|
|
|
command.register("head", "Gives you a player's head");
|
|
|
command.register("heal", "Heals, fills hunger bar and remove effects");
|
|
|
command.register("home", "Manage your homes");
|
|
@@ -137,6 +138,7 @@ command.register("world", "World-Commands");
|
|
|
|
|
|
command.registerAlias("afklo", "afk");
|
|
|
command.registerAlias("itemdb", "iteminfo");
|
|
|
+command.registerAlias("ha", "hawkeye");
|
|
|
command.registerAlias("skull", "head");
|
|
|
command.registerAlias("skick", "silentkick");
|
|
|
command.registerAlias("sban", "silentban");
|
|
@@ -171,6 +173,7 @@ serverspawn = world.getServerSpawn();
|
|
|
prefix_clan = "§2Clan";
|
|
|
prefix_tips = "§eTips";
|
|
|
prefix_lock = "§eLock";
|
|
|
+prefix_hawkeye = "§cHawkeye";
|
|
|
prefix_commands = "§6Commands";
|
|
|
prefix_friends = "§5Friends";
|
|
|
prefix_world = "§bWorld";
|
|
@@ -246,6 +249,8 @@ if(afk_map == null) {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+setScriptVar("hawkeye_lists", map.new());
|
|
|
+
|
|
|
sgoto(10, "coordsloop");
|
|
|
|
|
|
clan_invitations = list.new();
|
|
@@ -422,6 +427,8 @@ inv.setItem(skip_night_inv, 1, read.item("km:gem_stone", 1, "§fI don't care"));
|
|
|
inv.setItem(skip_night_inv, 2, read.item("km:cross_red", 1, "§fNo"));
|
|
|
skip_night_inv_id = inv.getId(skip_night_inv);
|
|
|
|
|
|
+ha_tool = read.item("km:guild_block", 1, "§cHawkeye Tool", "Hawkeye Tool");
|
|
|
+
|
|
|
consoleCommands = set.new();
|
|
|
set.add(consoleCommands, "ban");
|
|
|
set.add(consoleCommands, "tempfly");
|
|
@@ -464,8 +471,6 @@ event.load("function_key");
|
|
|
event.load("missing_perm");
|
|
|
event.load("missing_command");
|
|
|
event.load("custom_command");
|
|
|
-event.load("block_place");
|
|
|
-event.load("block_break");
|
|
|
event.load("block_click");
|
|
|
event.load("player_logout");
|
|
|
event.load("player_data_tick");
|
|
@@ -1750,6 +1755,98 @@ entity.setEquip(player, "head", item);
|
|
|
entity.setEquip(player, "hand", read.item("minecraft:air"));
|
|
|
goto("wait");
|
|
|
|
|
|
+@hawkeye
|
|
|
+if(size == 0) {
|
|
|
+ @partyhelp
|
|
|
+ msg.prefix(player, prefix_party, "§r/hawkeye ...");
|
|
|
+ msg(player, "§5 - search <parameters> §rSearch for griefs");
|
|
|
+ msg(player, "§5 - rollback §rRollback last search");
|
|
|
+ msg(player, "§5 - tool §rGives you the Hawkeye Tool");
|
|
|
+ msg(player, "");
|
|
|
+ msg(player, "§5 - Parameters:");
|
|
|
+ msg(player, "§5 - e:<event>");
|
|
|
+ msg(player, "§5 - p:<player>");
|
|
|
+ msg(player, "§5 - r:<radius>");
|
|
|
+ msg(player, "§5 - t:<timespan> e.g. \"5d,4h,20m\"");
|
|
|
+ goto("wait");
|
|
|
+}
|
|
|
+arg0 = text.toLowerCase(list.getIndex(args, 0));
|
|
|
+if(arg0 == "tool") {
|
|
|
+ player.giveItem(player, ha_tool);
|
|
|
+ goto("wait");
|
|
|
+}
|
|
|
+if(arg0 == "print") {
|
|
|
+ side = list.getIndex(args, 1);
|
|
|
+ if(!isDouble(side)) {
|
|
|
+ msg.prefix(player, prefix_commands, "Zahl erwartet.");
|
|
|
+ goto("wait");
|
|
|
+ }
|
|
|
+ if(side < 1) {
|
|
|
+ msg.prefix(player, prefix_commands, "Zahl größer 0 erwartet.");
|
|
|
+ goto("wait");
|
|
|
+ }
|
|
|
+ list = hawkeye.getPlayerList(player);
|
|
|
+ if(list == null) {
|
|
|
+ goto("wait");
|
|
|
+ }
|
|
|
+ if(side > list.getSize(list)) {
|
|
|
+ msg.prefix(player, prefix_commands, "Ungültige Zahl.");
|
|
|
+ goto("wait");
|
|
|
+ }
|
|
|
+ hawkeye.print(player, list, side);
|
|
|
+ goto("wait");
|
|
|
+}
|
|
|
+if(arg0 == "search") {
|
|
|
+ if(size < 2) {
|
|
|
+ msg.prefix(player, prefix_commands, "/hawkeye search <parameters>");
|
|
|
+ goto("wait");
|
|
|
+ }
|
|
|
+ a = hawkeye.processInput(args, player);
|
|
|
+ if(text.class(a) == "String") {
|
|
|
+ msg.prefix(player, prefix_hawkeye, a);
|
|
|
+ goto("wait");
|
|
|
+ }
|
|
|
+ timeFrom = a[0];
|
|
|
+ timeTo = a[1];
|
|
|
+ player_loc = a[2];
|
|
|
+ radius = a[3];
|
|
|
+ events = a[4];
|
|
|
+ players = a[5];
|
|
|
+ l = hawkeye.getData(timeFrom, timeTo, player_loc, radius, events, players, "DESC");
|
|
|
+ if(text.class(l) == "String") {
|
|
|
+ msg.prefix(player, prefix_hawkeye, l);
|
|
|
+ hawkeye.setPlayerList(player, list.new());
|
|
|
+ goto("wait");
|
|
|
+ }
|
|
|
+ if(list.getSize(l) == 0) {
|
|
|
+ msg.prefix(player, prefix_hawkeye, "No results found.");
|
|
|
+ hawkeye.setPlayerList(player, list.new());
|
|
|
+ goto("wait");
|
|
|
+ }
|
|
|
+ hawkeye.setPlayerList(player, l);
|
|
|
+ hawkeye.print(player, l, 1);
|
|
|
+ goto("wait");
|
|
|
+}
|
|
|
+if(arg0 == "rollback") {
|
|
|
+ l = hawkeye.getPlayerList(player);
|
|
|
+ if(l == null) {
|
|
|
+ msg.prefix(player, prefix_hawkeye, "No results to rollback.");
|
|
|
+ goto("wait");
|
|
|
+ }
|
|
|
+ if(list.getSize(l) == 0) {
|
|
|
+ msg.prefix(player, prefix_hawkeye, "No results to rollback.");
|
|
|
+ goto("wait");
|
|
|
+ }
|
|
|
+ if(list.getSize(l) >= 1000) {
|
|
|
+ msg.prefix(player, prefix_hawkeye, "Limit (1000) reached. Edit search parameters.");
|
|
|
+ goto("wait");
|
|
|
+ }
|
|
|
+ counter = hawkeye.rollback(l);
|
|
|
+ msg.prefix(player, prefix_hawkeye, concat(text.number(counter), " blocks rollbacked."));
|
|
|
+ goto("wait");
|
|
|
+}
|
|
|
+goto("wait");
|
|
|
+
|
|
|
@news
|
|
|
if(size < 1) {
|
|
|
msg.prefix(player, prefix_commands, "/news <text>");
|
|
@@ -2689,6 +2786,7 @@ if(size != 1) {
|
|
|
msg(sender, " - friends");
|
|
|
msg(sender, " - games");
|
|
|
msg(sender, " - harvest");
|
|
|
+ msg(sender, " - hawkeye");
|
|
|
msg(sender, " - herobrine");
|
|
|
msg(sender, " - mails");
|
|
|
msg(sender, " - perms");
|
|
@@ -2762,6 +2860,13 @@ elseif(arg0 == "harvest") {
|
|
|
}
|
|
|
script.startNamed("Harvest", "system/harvest", "utils/u_general");
|
|
|
}
|
|
|
+elseif(arg0 == "hawkeye") {
|
|
|
+ script = script.get("Hawkeye");
|
|
|
+ if(script != null) {
|
|
|
+ script.term(script);
|
|
|
+ }
|
|
|
+ script.startNamed("Hawkeye", "system/hawkeye", "utils/u_general");
|
|
|
+}
|
|
|
elseif(arg0 == "herobrine") {
|
|
|
script = script.get("Herobrine");
|
|
|
if(script != null) {
|
|
@@ -7653,53 +7758,53 @@ function setCommandHelps() {
|
|
|
command.addIgnored("kill");
|
|
|
command.addIgnored("gamemode");
|
|
|
|
|
|
- addCommandHelp("silentjoin");
|
|
|
- addCommandHelp("nowb");
|
|
|
- addCommandHelp("coords");
|
|
|
- addCommandHelp("ping");
|
|
|
- addCommandHelp("rank");
|
|
|
- addCommandHelp("back");
|
|
|
- addCommandHelp("boost");
|
|
|
- addCommandHelp("bug");
|
|
|
- addCommandHelp("report");
|
|
|
- addCommandHelp("skills");
|
|
|
- addCommandHelp("startgame");
|
|
|
- addCommandHelp("top");
|
|
|
- addCommandHelp("ride");
|
|
|
- addCommandHelp("repair");
|
|
|
- addCommandHelp("live");
|
|
|
- addCommandHelp("hack");
|
|
|
+ commandhelp.add("silentjoin");
|
|
|
+ commandhelp.add("nowb");
|
|
|
+ commandhelp.add("coords");
|
|
|
+ commandhelp.add("ping");
|
|
|
+ commandhelp.add("rank");
|
|
|
+ commandhelp.add("back");
|
|
|
+ commandhelp.add("boost");
|
|
|
+ commandhelp.add("bug");
|
|
|
+ commandhelp.add("report");
|
|
|
+ commandhelp.add("skills");
|
|
|
+ commandhelp.add("startgame");
|
|
|
+ commandhelp.add("top");
|
|
|
+ commandhelp.add("ride");
|
|
|
+ commandhelp.add("repair");
|
|
|
+ commandhelp.add("live");
|
|
|
+ commandhelp.add("hack");
|
|
|
|
|
|
- addCommandHelpChildPlayer("mute");
|
|
|
- addCommandHelpChildPlayer("unmute");
|
|
|
- addCommandHelpChildPlayer("tpa");
|
|
|
- addCommandHelpChildPlayer("tpaccept");
|
|
|
- addCommandHelpChildPlayer("tpahere");
|
|
|
- addCommandHelpChildPlayer("tpaccepthere");
|
|
|
- addCommandHelpChildPlayer("head");
|
|
|
- addCommandHelpChildPlayer("seen");
|
|
|
- addCommandHelpChildPlayer("heal");
|
|
|
- addCommandHelpChildPlayer("feed");
|
|
|
+ commandhelp.addChildPlayer("mute");
|
|
|
+ commandhelp.addChildPlayer("unmute");
|
|
|
+ commandhelp.addChildPlayer("tpa");
|
|
|
+ commandhelp.addChildPlayer("tpaccept");
|
|
|
+ commandhelp.addChildPlayer("tpahere");
|
|
|
+ commandhelp.addChildPlayer("tpaccepthere");
|
|
|
+ commandhelp.addChildPlayer("head");
|
|
|
+ commandhelp.addChildPlayer("seen");
|
|
|
+ commandhelp.addChildPlayer("heal");
|
|
|
+ commandhelp.addChildPlayer("feed");
|
|
|
|
|
|
- help = addCommandHelp("lightning");
|
|
|
- addCommandAlias(help, "thor", "lightning");
|
|
|
- help = addCommandHelp("color");
|
|
|
- addCommandAlias(help, "colour", "color");
|
|
|
- help = addCommandHelp("iteminfo");
|
|
|
- addCommandAlias(help, "itemdb", "iteminfo");
|
|
|
- help = addCommandHelp("head");
|
|
|
- addCommandAlias(help, "skull", "head");
|
|
|
- help = addCommandHelp("memory");
|
|
|
- addCommandAlias(help, "ram", "memory");
|
|
|
- help = addCommandHelp("afk");
|
|
|
- addCommandAlias(help, "afklo", "afk");
|
|
|
+ help = commandhelp.add("lightning");
|
|
|
+ commandhelp.addAlias(help, "thor", "lightning");
|
|
|
+ help = commandhelp.add("color");
|
|
|
+ commandhelp.addAlias(help, "colour", "color");
|
|
|
+ help = commandhelp.add("iteminfo");
|
|
|
+ commandhelp.addAlias(help, "itemdb", "iteminfo");
|
|
|
+ help = commandhelp.add("head");
|
|
|
+ commandhelp.addAlias(help, "skull", "head");
|
|
|
+ help = commandhelp.add("memory");
|
|
|
+ commandhelp.addAlias(help, "ram", "memory");
|
|
|
+ help = commandhelp.add("afk");
|
|
|
+ commandhelp.addAlias(help, "afklo", "afk");
|
|
|
|
|
|
- help = addCommandHelp("leave");
|
|
|
- addCommandAlias(help, "l", "leave");
|
|
|
- addCommandAlias(help, "hub", "leave");
|
|
|
+ help = commandhelp.add("leave");
|
|
|
+ commandhelp.addAlias(help, "l", "leave");
|
|
|
+ commandhelp.addAlias(help, "hub", "leave");
|
|
|
|
|
|
- help = addCommandHelp("giveup");
|
|
|
- addCommandAlias(help, "fuckit", "giveup");
|
|
|
+ help = commandhelp.add("giveup");
|
|
|
+ commandhelp.addAlias(help, "fuckit", "giveup");
|
|
|
|
|
|
help = command.newHelp("vanish", "vanish");
|
|
|
//vanish [on] [player]
|
|
@@ -7711,7 +7816,7 @@ function setCommandHelps() {
|
|
|
command.addHelpChild(helpArg0, command.newHelpSpecial("Player", "player"));
|
|
|
command.addHelpChild(help, helpArg0);
|
|
|
command.addHelp(help);
|
|
|
- addCommandAlias(help, "v", "vanish");
|
|
|
+ commandhelp.addAlias(help, "v", "vanish");
|
|
|
|
|
|
help = command.newHelp("start", "start");
|
|
|
command.addHelpChild(help, command.newHelpLiteral("ai"));
|
|
@@ -7721,6 +7826,7 @@ function setCommandHelps() {
|
|
|
command.addHelpChild(help, command.newHelpLiteral("damage"));
|
|
|
command.addHelpChild(help, command.newHelpLiteral("doors"));
|
|
|
command.addHelpChild(help, command.newHelpLiteral("harvest"));
|
|
|
+ command.addHelpChild(help, command.newHelpLiteral("hawkeye"));
|
|
|
command.addHelpChild(help, command.newHelpLiteral("herobrine"));
|
|
|
command.addHelpChild(help, command.newHelpLiteral("games"));
|
|
|
command.addHelpChild(help, command.newHelpLiteral("mails"));
|
|
@@ -7754,7 +7860,7 @@ function setCommandHelps() {
|
|
|
command.addHelpChild(helpArg0, command.newHelpSpecial("Player", "player", "gamemode.other"));
|
|
|
command.addHelpChild(help, helpArg0);
|
|
|
command.addHelp(help);
|
|
|
- addCommandAlias(help, "gm", "gamemode");
|
|
|
+ commandhelp.addAlias(help, "gm", "gamemode");
|
|
|
|
|
|
help = command.newHelp("databank", "databank");
|
|
|
//databank showtables
|
|
@@ -7907,7 +8013,22 @@ function setCommandHelps() {
|
|
|
command.addHelpChild(helpArg0, helpArg1);
|
|
|
command.addHelpChild(help, helpArg0);
|
|
|
command.addHelp(help);
|
|
|
- addCommandAlias(help, "dt", "datatools");
|
|
|
+ commandhelp.addAlias(help, "dt", "datatools");
|
|
|
+
|
|
|
+ help = command.newHelp("hawkeye", "hawkeye");
|
|
|
+ //hawkeye search <parameters>
|
|
|
+ helpArg0 = command.newHelpLiteral("search");
|
|
|
+ command.addHelpChild(helpArg0, command.newHelpString("name", true));
|
|
|
+ command.addHelpChild(help, helpArg0);
|
|
|
+ //hawkeye rollback
|
|
|
+ command.addHelpChild(help, command.newHelpLiteral("rollback"));
|
|
|
+ //hawkeye tool
|
|
|
+ command.addHelpChild(help, command.newHelpLiteral("tool"));
|
|
|
+ commandhelp.addAlias(help, "ha", "hawkeye");
|
|
|
+
|
|
|
+ command.addHelpChild(help, command.newHelpInt("radius", 1, 5));
|
|
|
+ command.addHelpChild(help, command.newHelpLiteral("block"));
|
|
|
+ command.addHelp(help);
|
|
|
|
|
|
help = command.newHelp("voxel", "voxel");
|
|
|
command.addHelpChild(help, command.newHelpInt("radius", 1, 5));
|
|
@@ -7917,7 +8038,7 @@ function setCommandHelps() {
|
|
|
help = command.newHelp("help", "help");
|
|
|
command.addHelpChild(help, command.newHelpInt("page", 1, 100));
|
|
|
command.addHelp(help);
|
|
|
- addCommandAlias(help, "mimimi", "help");
|
|
|
+ commandhelp.addAlias(help, "mimimi", "help");
|
|
|
|
|
|
help = command.newHelp("suicide", "suicide");
|
|
|
command.addHelpChild(help, command.newHelpSpecial("Player", "player", "kill.other"));
|
|
@@ -8056,7 +8177,7 @@ function setCommandHelps() {
|
|
|
command.addHelpChild(helpArg0, command.newHelpInt("id", 0, 1000000));
|
|
|
command.addHelpChild(help, helpArg0);
|
|
|
command.addHelp(help);
|
|
|
- addCommandAlias(help, "s", "script");
|
|
|
+ commandhelp.addAlias(help, "s", "script");
|
|
|
|
|
|
help = command.newHelp("home", "home");
|
|
|
//home set
|
|
@@ -8151,7 +8272,7 @@ function setCommandHelps() {
|
|
|
command.addHelpChild(helpArg0, helpArg1);
|
|
|
command.addHelpChild(help, helpArg0);
|
|
|
command.addHelp(help);
|
|
|
- addCommandAlias(help, "p", "plot");
|
|
|
+ commandhelp.addAlias(help, "p", "plot");
|
|
|
|
|
|
help = command.newHelp("warp", "warp");
|
|
|
//warp set [group] <name>
|
|
@@ -8187,7 +8308,7 @@ function setCommandHelps() {
|
|
|
command.addHelpChild(helpArg0, command.newHelpSpecial("Player", "to-player", "teleport.other"));
|
|
|
command.addHelpChild(help, helpArg0);
|
|
|
command.addHelp(help);
|
|
|
- addCommandAlias(help, "tp", "teleport");
|
|
|
+ commandhelp.addAlias(help, "tp", "teleport");
|
|
|
|
|
|
help = command.newHelp("lastseen", "lastseen");
|
|
|
command.addHelpChild(help, command.newHelpInt("amount", 1, 100));
|
|
@@ -8329,7 +8450,7 @@ function setCommandHelps() {
|
|
|
//friend list
|
|
|
command.addHelpChild(help, command.newHelpLiteral("list"));
|
|
|
command.addHelp(help);
|
|
|
- addCommandAlias(help, "f", "friend");
|
|
|
+ commandhelp.addAlias(help, "f", "friend");
|
|
|
|
|
|
help = command.newHelp("sign", "sign");
|
|
|
helpArg0 = command.newHelpInt("1-4", 1, 4);
|
|
@@ -8618,31 +8739,31 @@ function setCommandHelps() {
|
|
|
command.sendHelp();
|
|
|
}
|
|
|
|
|
|
-function addCommandHelp(command) {
|
|
|
+function commandhelp.add(command) {
|
|
|
help = command.newHelp(command, command);
|
|
|
command.addHelp(help);
|
|
|
return help;
|
|
|
}
|
|
|
|
|
|
-function addCommandHelpChildString(command, arg0, bool) {
|
|
|
+function commandhelp.addChildString(command, arg0, bool) {
|
|
|
help = command.newHelp(command, command);
|
|
|
command.addHelpChild(help, command.newHelpString(arg0, bool));
|
|
|
command.addHelp(help);
|
|
|
}
|
|
|
|
|
|
-function addCommandHelpChildPlayer(command) {
|
|
|
+function commandhelp.addChildPlayer(command) {
|
|
|
help = command.newHelp(command, command);
|
|
|
command.addHelpChild(help, command.newHelpSpecial("Player", "player"));
|
|
|
command.addHelp(help);
|
|
|
}
|
|
|
|
|
|
-function addCommandHelpChildBool(command, arg0) {
|
|
|
+function commandhelp.addChildBool(command, arg0) {
|
|
|
help = command.newHelp(command, command);
|
|
|
command.addHelpChild(help, command.newHelpBool(arg0));
|
|
|
command.addHelp(help);
|
|
|
}
|
|
|
|
|
|
-function addCommandAlias(help, alias, command) {
|
|
|
+function commandhelp.addAlias(help, alias, command) {
|
|
|
helpAlias = command.newHelp(alias, command);
|
|
|
command.addHelpAlias(helpAlias, help);
|
|
|
command.addHelp(helpAlias);
|
|
@@ -9075,4 +9196,134 @@ function tpBottom(player) {
|
|
|
}
|
|
|
loc.addY(player_loc, 1);
|
|
|
entity.teleport(player, player_loc);
|
|
|
+}
|
|
|
+
|
|
|
+function hawkeye.getStartIndices(string) {
|
|
|
+ a = array.new(5);
|
|
|
+ a[0] = text.indexOf(string, "e:", 0);
|
|
|
+ a[1] = text.indexOf(string, "p:", 0);
|
|
|
+ a[2] = text.indexOf(string, "r:", 0);
|
|
|
+ a[3] = text.indexOf(string, "t:", 0);
|
|
|
+ a[4] = text.length(string);
|
|
|
+ a = array.sort(a, true);
|
|
|
+ return a;
|
|
|
+}
|
|
|
+
|
|
|
+function hawkeye.getParStrings(string, indices) {
|
|
|
+ index = 0;
|
|
|
+ while(indices[index] == -1) {
|
|
|
+ index++;
|
|
|
+ }
|
|
|
+ start_index = indices[index];
|
|
|
+ if(start_index != 0) {
|
|
|
+ return null;
|
|
|
+ }
|
|
|
+ l = list.new();
|
|
|
+ while(++index < 5) {
|
|
|
+ next_index = indices[index];
|
|
|
+ if(index == 4) {
|
|
|
+ next_index++;
|
|
|
+ }
|
|
|
+ par_str = text.trim(text.subString(string, start_index, next_index - 1));
|
|
|
+ if(text.length(par_str) < 3) {
|
|
|
+ return null;
|
|
|
+ }
|
|
|
+ list.add(l, par_str);
|
|
|
+ start_index = next_index;
|
|
|
+ }
|
|
|
+ return l;
|
|
|
+}
|
|
|
+
|
|
|
+function hawkeye.processInput(args, player) {
|
|
|
+ string = text.concatList(args, " ", 1, list.getSize(args) - 1);
|
|
|
+ indices = hawkeye.getStartIndices(string);
|
|
|
+ par_strings = hawkeye.getParStrings(string, indices);
|
|
|
+ if(par_strings == null) {
|
|
|
+ return "False input parameters";
|
|
|
+ }
|
|
|
+ first_letters = set.new();
|
|
|
+ iter = list.iterator(par_strings);
|
|
|
+ while(hasNext(iter)) {
|
|
|
+ par_str = next(iter);
|
|
|
+ first_letter = text.subString(par_str, 0, 1);
|
|
|
+ if(set.contains(first_letters, first_letter)) {
|
|
|
+ return "Twice input parameters";
|
|
|
+ }
|
|
|
+ set.add(first_letters, first_letter);
|
|
|
+ par_str = text.subString(par_str, 2, text.length(par_str));
|
|
|
+ args_par_str = text.split(",", par_str);
|
|
|
+
|
|
|
+ if(first_letter == "e") {
|
|
|
+ events = list.new();
|
|
|
+ iter_args = list.iterator(args_par_str);
|
|
|
+ while(hasNext(iter_args)) {
|
|
|
+ list.add(events, next(iter_args));
|
|
|
+ }
|
|
|
+ }
|
|
|
+ elseif(first_letter == "p") {
|
|
|
+ players = list.new();
|
|
|
+ iter_args = list.iterator(args_par_str);
|
|
|
+ while(hasNext(iter_args)) {
|
|
|
+ list.add(players, next(iter_args));
|
|
|
+ }
|
|
|
+ }
|
|
|
+ elseif(first_letter == "r") {
|
|
|
+ if(list.getSize(args_par_str) > 1) {
|
|
|
+ return "False input at r:";
|
|
|
+ }
|
|
|
+ radius = list.getIndex(args_par_str, 0);
|
|
|
+ if(!isDouble(radius)) {
|
|
|
+ return "False input at r:";
|
|
|
+ }
|
|
|
+ }
|
|
|
+ elseif(first_letter == "t") {
|
|
|
+ if(list.getSize(args_par_str) > 3) {
|
|
|
+ return "False input at t:";
|
|
|
+ }
|
|
|
+ if(text.contains(par_str, "d")) {
|
|
|
+ d = true;
|
|
|
+ } else {
|
|
|
+ d = false;
|
|
|
+ }
|
|
|
+ time_span = 0;
|
|
|
+ iter_args = list.iterator(args_par_str);
|
|
|
+ while(hasNext(iter_args)) {
|
|
|
+ arg = next(iter_args);
|
|
|
+ if(text.contains(arg, "m")) {
|
|
|
+ minutes = text.convert(text.replace(arg, "m", ""));
|
|
|
+ if(!isDouble(minutes)) {
|
|
|
+ return "False input at t:";
|
|
|
+ }
|
|
|
+ time_span += minutes * 60;
|
|
|
+ }
|
|
|
+ elseif(text.contains(arg, "h")) {
|
|
|
+ hours = text.convert(text.replace(arg, "h", ""));
|
|
|
+ if(!isDouble(hours)) {
|
|
|
+ return "False input at t:";
|
|
|
+ }
|
|
|
+ time_span += hours * 60 * 60;
|
|
|
+ } else {
|
|
|
+ if(d) {
|
|
|
+ days = arg;
|
|
|
+ if(!isDouble(days)) {
|
|
|
+ return "False input at t:";
|
|
|
+ }
|
|
|
+ time_span += days * 24 * 60 * 60;
|
|
|
+ } else {
|
|
|
+ return "False input at t:";
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ timeTo = time.getMillis();
|
|
|
+ timeFrom = timeTo - time_span * 1000;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ a = array.new(6);
|
|
|
+ a[0] = timeFrom;
|
|
|
+ a[1] = timeTo;
|
|
|
+ a[2] = entity.getLocation(player);
|
|
|
+ a[3] = radius;
|
|
|
+ a[4] = events;
|
|
|
+ a[5] = players;
|
|
|
+ return a;
|
|
|
}
|