G0Gl
대표칭호 없음
이해도 | 입문자 |
---|---|
게임버전 (JE) | 1.20.1 |
게임버전 (BE) | 관련없음 |
스크립트 버전 | Skript 2.8.2 |
command /랜덤티피:
trigger:
set {_x} to random integer between 1000 and 1000
set {_z} to random integer between 1000 and 1000
set {_y} to 255
set {_loc} to location at {_x}, {_y}, {_z} of the world
loop 255 times:
if block at {_loc} is not air:
add 1 to {_y}
set {_loc} to location at {_x}, {_y}, {_z} of the world
teleport player to {_loc}
stop
else:
subtract 1 from {_y}
set {_loc} to location at {_x}, {_y}, {_z} of the world
teleport player to {_loc}
유튜브에 있는것을 복붙했는데 인게임 적용시 6, 10, 15라인 (빨간색 부분)이
There's no location in a command event (명령 이벤트에 위치가 없습니다 ) 라고 뜨는데 어떻게 위치를 넣나요?
windy_wind
2024.02.05location(x좌표,y좌표,z좌표,월드)를 사용하세요
예시:
G0Gl
2024.02.05어 그냥 set {_loc} to location at {_x}, {_y}, {_z} of the world 에서 뒤에 of the world를 제거하니 됐는데요 잔디블럭에 소환 안되게 하려면 is not air or grass_block이라고 하면되나요?
windy_wind
2024.02.06네. 대신 while 쓰셈