개인 자료란 (JE)

  서버 커뮤니티

Profile 비너스 대표칭호 없음
Profile

질문하기 스크립트

실시간 좌표값

2020.05.16 조회 수 4094 추천 수 1
이해도 1.15 

액션바에 자신의 x, y, z 실시간 좌표값을 뜨게 하고싶은데 어떻게 짜야할지를 모르겠네요 ㅠㅠ

단 좌표값이 소수값은 표시가 안되게 하고싶습니다...

1개의 댓글

스크립터브혼
2020.05.16

엑션바는 send acction bar %texts% [to %players%]
플레이어의 좌표는 location of player
좌표의 성분은 [x|y|z]-coord of %location%
소수점 버림은 roaund [up|down] 입니다.


이것들을 조합하면 아래와 같습니다.

set {_l} to location of player
set {_msg::x} to "x:%round x-coord of {_l}%"
set {_msg::y} to "y:%round y-coord of {_l}%"
set {_msg::z} to "z:%round z-coord of {_l}%"
send action bar join {_msg::*} with " " to player

join %texts% with %text%는 문자 배열을 지정한 문자로 합쳐주는 표현식 입니다.