Skip to content
View IamTheDefender's full-sized avatar

Block or report IamTheDefender

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Bedwars-Cosmetics Bedwars-Cosmetics Public

    An plugin that adds various sets of cosmetics to enhance the gameplay of bedwars

    Java 35 26

  2. BedWars1058-ItemRotation BedWars1058-ItemRotation Public

    Item Rotation addon for BedWars1058

    Java 3 2

  3. A class to get the target of a playe... A class to get the target of a player or entity
    1
    import org.bukkit.entity.Entity;
    2
    import org.bukkit.entity.Player;
    3
    import org.bukkit.util.Vector;
    4
    
                  
    5
    public class TargetingUtil {
  4. YamlApi.java YamlApi.java
    1
    import java.io.*;
    2
    import java.util.HashMap;
    3
    import java.util.Map;
    4
    
                  
    5
    /**
  5. Get near by blocks for a location Get near by blocks for a location
    1
    public static List<Block> getNearbyBlocks(Location location, int radius) {
    2
            List<Block> blocks = new ArrayList<Block>();
    3
            for(int x = location.getBlockX() - radius; x <= location.getBlockX() + radius; x++) {
    4
                for(int y = location.getBlockY() - radius; y <= location.getBlockY() + radius; y++) {
    5
                    for(int z = location.getBlockZ() - radius; z <= location.getBlockZ() + radius; z++) {
  6. toxicity188/BetterModel toxicity188/BetterModel Public

    Modern Bedrock model engine for Minecraft Java Edition

    Kotlin 284 61