first commit
This commit is contained in:
29
NitroxServer/ConsoleCommands/TeleportCommand.cs
Normal file
29
NitroxServer/ConsoleCommands/TeleportCommand.cs
Normal file
@@ -0,0 +1,29 @@
|
||||
using System.Collections.Generic;
|
||||
using NitroxModel.DataStructures.GameLogic;
|
||||
using NitroxModel.DataStructures.Unity;
|
||||
using NitroxModel.DataStructures.Util;
|
||||
using NitroxServer.ConsoleCommands.Abstract;
|
||||
using NitroxServer.ConsoleCommands.Abstract.Type;
|
||||
|
||||
namespace NitroxServer.ConsoleCommands
|
||||
{
|
||||
internal class TeleportCommand : Command
|
||||
{
|
||||
public override IEnumerable<string> Aliases { get; } = new[] { "tp" };
|
||||
|
||||
public TeleportCommand() : base("teleport", Perms.MODERATOR, PermsFlag.NO_CONSOLE, "Teleports you on a specific location")
|
||||
{
|
||||
AddParameter(new TypeInt("x", true, "x coordinate"));
|
||||
AddParameter(new TypeInt("y", true, "y coordinate"));
|
||||
AddParameter(new TypeInt("z", true, "z coordinate"));
|
||||
}
|
||||
|
||||
protected override void Execute(CallArgs args)
|
||||
{
|
||||
NitroxVector3 position = new(args.Get<int>(0), args.Get<int>(1), args.Get<int>(2));
|
||||
args.Sender.Value.Teleport(position, Optional.Empty);
|
||||
|
||||
SendMessage(args.Sender, $"Teleported to {position}");
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user