package com.example.vehiclesplusplugin; import org.bukkit.plugin.java.JavaPlugin; import com.github.vehiclesplus.vehicles.api.VehiclesPlusAPI; public class VehiclesPlusPlugin extends JavaPlugin { @Override public void onEnable() { // Plugin startup logic getLogger().info("VehiclesPlusPlugin has been enabled!"); // Example of using the VehiclesPlus API VehiclesPlusAPI vehiclesPlusAPI = VehiclesPlusAPI.getInstance(); if (vehiclesPlusAPI != null) { getLogger().info("Successfully hooked into VehiclesPlus API!"); } else { getLogger().severe("Failed to hook into VehiclesPlus API!"); } // Register command this.getCommand("spawndrill").setExecutor(new SpawnDrillCommand()); } @Override public void onDisable() { // Plugin shutdown logic getLogger().info("VehiclesPlusPlugin has been disabled!"); } } This ^^^ is Vehiclesplusplugin.java package com.example.vehiclesplusplugin; import com.github.vehiclesplus.vehicles.api.VehiclesPlusAPI; import com.github.vehiclesplus.vehicles.api.vehicle.VehicleType; import org.bukkit.command.Command; import org.bukkit.command.CommandExecutor; import org.bukkit.command.CommandSender; import org.bukkit.entity.Player; public class SpawnDrillCommand implements CommandExecutor { @Override public boolean onCommand(CommandSender sender, Command command, String label, String[] args) { if (!(sender instanceof Player)) { sender.sendMessage("This command can only be used by players."); return true; } Player player = (Player) sender; VehiclesPlusAPI vehiclesPlusAPI = VehiclesPlusAPI.getInstance(); if (vehiclesPlusAPI == null) { player.sendMessage("VehiclesPlus API is not available."); return true; } // Example: Spawn a custom drill vehicle VehicleType vehicleType = VehicleType.CAR; // Use an existing type as a base DrillVehicle drillVehicle = new DrillVehicle(vehicleType, player.getLocation()); if (drillVehicle != null) { vehiclesPlusAPI.getVehicleManager().registerVehicle(drillVehicle); player.sendMessage("Drill vehicle spawned successfully!"); } else { player.sendMessage("Failed to spawn drill vehicle."); } return true; } } this ^^^ is Spawndrillcommand.java package com.example.vehiclesplusplugin; import com.github.vehiclesplus.vehicles.api.vehicle.Vehicle; import com.github.vehiclesplus.vehicles.api.vehicle.VehicleType; import org.bukkit.Location; import org.bukkit.Material; import org.bukkit.block.Block; import org.bukkit.entity.Player; public class DrillVehicle extends Vehicle { public DrillVehicle(VehicleType type, Location location) { super(type, location); } @Override public void onMove(Player driver) { super.onMove(driver); // Get the direction the vehicle is facing Location frontLocation = getLocation().clone().add(getLocation().getDirection().multiply(2)); // Mine a 3x3 area in front of the vehicle for (int x = -1; x <= 1; x++) { for (int y = -1; y <= 1; y++) { Location blockLocation = frontLocation.clone().add(x, y, 0); Block block = blockLocation.getBlock(); if (block.getType() != Material.AIR) { block.breakNaturally(); } } } } } and this is ^^^^ Drillvehicle.java