개인 자료란 (JE)

  서버 커뮤니티

Profile build1006 대표칭호 없음
Profile

질문하기 스크립트

추락 감지 스크립트/플러그인 질문

2022.12.27 조회 수 45 추천 수 0
이해도 초보자 
게임버전 (JE) 1.19.3 
게임버전 (BE) 관련없음 

혹시 스크립트나 플러그인으로 플레이어가 떨어지는 걸 감지하고 아래에 무슨 블록이 있는지 감지할 수 있을까요?

1개의 댓글

0reo
2022.12.28
@EventHandler
public void onMove(PlayerVelocityEvent e) {
    if (e.getVelocity().getY() < 0) {
        e.getPlayer().sendMessage(getBlock(e.getPlayer()).toString());
    }
}

public Block getBlock(Player player) {
    Location loc = player.getLocation();
    for (int h = player.getLocation().getBlockY(); h >= -64; h--) {
        loc.setY(h);
        if (loc.getBlock().getType() != Material.AIR) {
            return loc.getBlock();
        }
    }
    return null;
}

테스트 안해봤습니다

뉴스 및 창작물
/files/thumbnails/761/908/003/262x150.crop.jpg?20241025153749

건축

서울 숭례문(崇禮門) 4

KHC

2024-10-25

2

/files/thumbnails/578/899/003/262x150.crop.jpg?20241010142350

건축

경주 월정교 1

KHC

2024-10-10

2

/files/thumbnails/219/899/003/262x150.crop.jpg?20241009200950

건축

송전탑+도시 2

dbasd12

2024-10-09

2

/files/thumbnails/246/898/003/262x150.crop.jpg?20241008102328

레드스톤

단다단 - 오토노케(オトノケ) | 마인크래프트 노트블럭 커버

노트블럭전문가

2024-10-08

1

/files/thumbnails/348/896/003/262x150.crop.jpg?20241006103035

디도스/봇테러등등을 낚는 방법 4

물귀신

2024-10-06

3