Added Admin Speed Command (not implemented rn)
This commit is contained in:
@@ -1074,6 +1074,24 @@ namespace reallife_gamemode.Server.Commands
|
|||||||
player.SendChatMessage("IP von " + NAPI.Player.GetPlayerName(target) + ": " + target.Address);
|
player.SendChatMessage("IP von " + NAPI.Player.GetPlayerName(target) + ": " + target.Address);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[Command("aspeed", "~m~Benutzung: ~s~/aspeed [Modifier]")]
|
||||||
|
public void CmdAdminAspeed(Client player, float modifier)
|
||||||
|
{
|
||||||
|
if (!player.GetUser()?.IsAdmin(AdminLevel.ADMIN) ?? true)
|
||||||
|
{
|
||||||
|
ChatService.NotAuthorized(player);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!player.IsInVehicle)
|
||||||
|
{
|
||||||
|
player.SendChatMessage("~r~[FEHLER]~s~ Du sitzt momentan nicht in einem Fahrzeug.");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
player.Vehicle.EnginePowerMultiplier = modifier;
|
||||||
|
}
|
||||||
|
|
||||||
//TEST COMMAND
|
//TEST COMMAND
|
||||||
[Command("myvehicles")]
|
[Command("myvehicles")]
|
||||||
public void CmdAdminMyVehicles(Client player)
|
public void CmdAdminMyVehicles(Client player)
|
||||||
|
|||||||
Reference in New Issue
Block a user