개인 자료란 (JE)

  서버 커뮤니티

Profile YaKiSa 대표칭호 없음
Profile

질문하기 스크립트

감옥권 스크립트를 제작중입니다. 작동을 하지 않습니다. 도와주세요..

22 일 전 조회 수 69 추천 수 0
이해도 입문자 
게임버전 (JE) 1.16.5 
게임버전 (BE) 1.16.x 
스크립트 버전
스크립트 애드온

# Created by 이름


command /감옥권: # 

    permission: report.player.op # 

    trigger:

        give 1 of book named "<red>감옥권" with lore "클릭한 사람을 감옥으로 보낸다." to player #


on right click on entity: # 

    if entity's type is player: #

        if name of player's tool is "<red>감옥권": #

            set {_-1255 6 -243.%event-location%} to clicked player #

            teleport to the "-1255 6 -243" by clicked player #

            wait "60" "seconds" # 

            teleport to the {_-1255 6 -243.%event-location%} by clicked player #

작동이 되지 않습니다.. 고수분들 왜 작동이 되지 않았는지랑 수정 가능하시면 부탁드립니다..

2개의 댓글

windy_wind
22 일 전

set {_loc} to location of player

teleport player to location(x좌표,y좌표,z좌표,world "월드명")

wait 60 seconds

teleport player to {_loc}

YaKiSa
22 일 전
@windy_wind

답글 달아주셔서 감사합니다!!

이렇게 수정하면 될까요?

 

 

# Created by 이름


command /감옥권: 

    permission: report.player.op 

    trigger:

        give 1 of book named "<red>감옥권" with lore "클릭한 사람을 감옥으로 보낸다." to player 


on right click on entity: 

    if entity is player: 

        if name of player's tool is "<red>감옥권": 

            set {_loc} to location of clicked player # 원래 위치 저장

            teleport clicked player to location(-1255, 6, -243, world "world") # 감옥으로 텔레포트

            wait 60 seconds # 60초 대기

            teleport clicked player to {_loc} # 원래 위치로 돌아가기