feat: added basic tp command
This commit is contained in:
parent
8813dda003
commit
a71402637e
1 changed files with 60 additions and 0 deletions
60
src/main/java/ftbsc/bscv/commands/Teleport.java
Normal file
60
src/main/java/ftbsc/bscv/commands/Teleport.java
Normal file
|
@ -0,0 +1,60 @@
|
||||||
|
package ftbsc.bscv.commands;
|
||||||
|
|
||||||
|
import com.google.auto.service.AutoService;
|
||||||
|
import com.mojang.brigadier.arguments.DoubleArgumentType;
|
||||||
|
import com.mojang.brigadier.builder.LiteralArgumentBuilder;
|
||||||
|
|
||||||
|
import ftbsc.bscv.api.ILoadable;
|
||||||
|
import net.minecraft.command.CommandSource;
|
||||||
|
import net.minecraft.command.Commands;
|
||||||
|
|
||||||
|
import static ftbsc.bscv.Boscovicino.log;
|
||||||
|
|
||||||
|
@AutoService(ILoadable.class)
|
||||||
|
public class Teleport extends AbstractCommand {
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String getName() { return "tp"; }
|
||||||
|
|
||||||
|
public LiteralArgumentBuilder<CommandSource> register(LiteralArgumentBuilder<CommandSource> builder) {
|
||||||
|
return builder
|
||||||
|
.then(
|
||||||
|
Commands.literal("up")
|
||||||
|
.then(
|
||||||
|
Commands.argument("distance", DoubleArgumentType.doubleArg())
|
||||||
|
.executes( ctx -> {
|
||||||
|
double distance = ctx.getArgument("distance", Double.class);
|
||||||
|
MC.player.setPos(
|
||||||
|
MC.player.position().x,
|
||||||
|
MC.player.position().y + distance,
|
||||||
|
MC.player.position().z
|
||||||
|
);
|
||||||
|
log(String.format("blinked up %.1f blocks", distance));
|
||||||
|
return 1;
|
||||||
|
})
|
||||||
|
)
|
||||||
|
)
|
||||||
|
.then(
|
||||||
|
Commands.argument("x", DoubleArgumentType.doubleArg())
|
||||||
|
.then(
|
||||||
|
Commands.argument("y", DoubleArgumentType.doubleArg())
|
||||||
|
.then(
|
||||||
|
Commands.argument("z", DoubleArgumentType.doubleArg())
|
||||||
|
.executes( ctx -> {
|
||||||
|
double x = ctx.getArgument("x", Double.class);
|
||||||
|
double y = ctx.getArgument("y", Double.class);
|
||||||
|
double z = ctx.getArgument("z", Double.class);
|
||||||
|
MC.player.setPos(x, y, z);
|
||||||
|
log(String.format("blinked to X%.0f | Z%.0f", x, z));
|
||||||
|
return 1;
|
||||||
|
})
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
.executes(ctx -> {
|
||||||
|
log("no args specified");
|
||||||
|
return 0;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in a new issue