게임버전 (JE) | 기타 |
---|
현재 배포 중인 스크립트 하나를 적용시키려고 하는데 on jump 구문에서 오류가 뜹니다
확인해 보니 저희가 사용하는 스크립트 버전은 2.2, 마크는 1.12.2 인데,
jump 이벤트가 안 먹힌다는 말이 있어서요
해당 블록에서 점프 했을 때 이벤트를 먹이고 싶은데 방법이 없을까요?
<스크립트 구문>
on jump: //오류 구문
block under player is white stained glass:
set {_loc} to player's location
loop 265 - block under player's location's y-coordinate + 0.5 times:
add 1 to {_loc}'s y-coordinate
if block at {_loc} is white stained glass:
set {_loc.p} to player's location
set {_loc.p}'s y-coordinate to {_loc}'s y-coordinate + 1
teleport player to {_loc.p}
play sound "entity.enderdragon.flap" with volume 1 with pitch 5 to player
stop
on sneak toggle:
player is sneaking
block under player is white stained glass:
set {_loc} to block under player's location
loop 0 + block under player's location's y-coordinate + 0.5 times:
add -1 to {_loc}'s y-coordinate
if block at {_loc} is white stained glass:
set {_loc.p} to player's location
set {_loc.p}'s y-coordinate to {_loc}'s y-coordinate + 0.5
teleport player to {_loc.p}
play sound "entity.enderdragon.flap" with volume 1 with pitch 5 to player
stop
qsef1256
2022.02.28마크 스크립트는 JavaScript가 아니라 Skript 입니다.
마크에서는 애초에 JavaScript 쓸 일도 별로 없어요.