엑션바는 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%는 문자 배열을 지정한 문자로 합쳐주는 표현식 입니다.
스크립터브혼
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%
는 문자 배열을 지정한 문자로 합쳐주는 표현식 입니다.