Archiviert
13
0

Add SpeedCommand

Dieser Commit ist enthalten in:
yoyosource 2021-08-01 12:15:16 +02:00
Ursprung 38428ef7a2
Commit e48f05635f
4 geänderte Dateien mit 90 neuen und 0 gelöschten Zeilen

Datei anzeigen

@ -1,6 +1,26 @@
/*
* This file is a part of the SteamWar software.
*
* Copyright (C) 2021 SteamWar.de-Serverteam
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package de.steamwar;
import de.steamwar.command.GamemodeCommand;
import de.steamwar.command.SpeedCommand;
import de.steamwar.listener.WorldChange;
import lombok.Getter;
import org.bukkit.Bukkit;
@ -17,6 +37,7 @@ public final class Teamserver extends JavaPlugin {
instance = this;
new GamemodeCommand();
new SpeedCommand();
Bukkit.getPluginManager().registerEvents(new WorldChange(), this);
}

Datei anzeigen

@ -16,6 +16,7 @@
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package de.steamwar.command;
import org.bukkit.GameMode;

Datei anzeigen

@ -0,0 +1,49 @@
/*
* This file is a part of the SteamWar software.
*
* Copyright (C) 2021 SteamWar.de-Serverteam
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package de.steamwar.command;
import org.bukkit.entity.Player;
public class SpeedCommand extends SWCommand {
public SpeedCommand() {
super("speed");
}
@Register(help = true)
public void genericHelp(Player p, String... args) {
p.sendMessage("§8/§espeed §8[§e1§8-§e10§8] - §7Setzte deine Flug- und Laufgeschindigkeit.");
p.sendMessage("Aktuelle geschwindigkeit: §e" + p.getFlySpeed() * 10F);
}
@Register
public void speedCommand(Player p, float speed) {
speed = speed / 10F;
if (speed < -1F) {
p.sendMessage("§c" + speed + " ist zu klein");
} else if (speed > 1F) {
p.sendMessage("§c" + speed + " ist zu hoch");
} else {
p.setFlySpeed(speed);
p.setWalkSpeed(speed);
p.sendMessage("§7Aktuelle geschwindigkeit: §e" + p.getFlySpeed() * 10F);
}
}
}

Datei anzeigen

@ -1,3 +1,22 @@
/*
* This file is a part of the SteamWar software.
*
* Copyright (C) 2021 SteamWar.de-Serverteam
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package de.steamwar.listener;
import de.steamwar.Teamserver;