스크립트개발자초보
대표칭호 없음
이해도 | 입문자 |
---|---|
게임버전 (JE) | 1.17.1 |
게임버전 (BE) | 관련없음 |
스크립트 버전 | 2.8.2 |
on right click with paper:
if player has paper:
set {item} to player's tool
if display name of {item} is "&e마을 귀환 주문서":
# 특정 좌표로 이동
set {_destination} to location (211, 73, -72) # 좌표를 원하는 값으로 변경
teleport player to {_destination}
# 이동한 후 메시지 표시 (선택적)
broadcast "%player%님이 &e&l[마을 귀환 주문서]§f를 사용하였습니다."
remove 1 of {item} from player's tool
지상에서는 잘 사용이 되는데 지옥에서 쓰면 지옥좌표로 이동하는데 지옥에서 써도 지상으로 올 수 있게 못하나요? ㅠㅠㅠ
슈퍼레몬
2024.02.22execute console command "tp %player% 211 73 -72"
오버월드의 211 73 -72좌표로 이동합니다.
템미큐밍
2024.02.22오버월드에서 ( /설정이름 ) 하신후에 네더에서 ( /이름 ) 치시면 오버월드로 이동됩니다
```
command /이름:
trigger:
teleport player to {이름}
message "&e&l[이동] 이동됨"
play sound "entity.player.levelup" with volume 1 and pitch 1 at player
command /설정이름:
permission: op
permission message: &c&l[경고] &f&l권한이 없습니다
trigger:
set {이름} to location of player
message "&e&l[이동] 설정됨"
play sound "entity.player.levelup" with volume 1 and pitch 1 at player
```
스크립트개발자초보
2024.02.22해결됐습니다. 감사합니다 ^^