이해도 | 입문자(아무것도 몰라요) |
---|---|
게임버전 (JE) | 1.19, 1.19.1, 1.19.2 |
게임버전 (BE) | 1.19.x |
command /tpa [<player>]:
trigger:
if arg 1 is not set:
message "tp를 요청할 플레이어를 입력해주십시오."
else:
message "&f[ &6알림 &f] %arg 1%님께 텔레포트 요청을 보냈습니다."
message " &7해당 요청은 15초 후에 자동 거절 됩니다."
message "&f[ &6알림 &f] %player%님이 텔레포트 요청을 보내왔습니다." to arg 1
message " &7해당 요청은 15초 후에 자동 거절 됩니다." to arg 1
set {%arg 1%.tpa.accept} to 1
set {%player%.tpa.accept} to 1
set {%arg 1%.tpa.location} to location of player
wait 15 second
if {%arg 1%.tpa.accept} is set:
delete {%player%.tpa.accept}
delete {%player%.tpa.location}
delete {%player%.tpa.player}
message "&f[ &6알림 &f] 텔레포트요청이 만료되었습니다."
message "&f[ &6알림 &f] 텔레포트요청이 만료되었습니다." to arg 1
command /tpaccept:
trigger:
if {%player%.tpa.accept} is not set:
message "&f[ &6알림 &f] 플레이어님에게 온 텔레포트요청이 없습니다."
else:
if {%player%.tpa.accept}is set:
delete {player%.tpa.accept}
message "&f[ &6알림 &f] 텔레포트 요청이 수락되었습니다. 5초 후에 이동됩니다." to {%player%.tpa.player}
message "&f[ &6알림 &f] 텔레포트 요청을 수락하였습니다."
wait 5 second
teleport {%player%.tpa.player} to {%player%.tpa.location}
delete {%player%.tpa.location}
delete {%player%.tpa.player}
command /tpadeny:
trigger:
if {%player%.tpa.accept} is not set:
message "&f[ &6알림 &f] 플레이어님에게 온 텔레포트 요청이 없습니다."
else:
message "&f[ &6알림 &f] 텔레포트 요청을 거절하였습니다."
message "&f[ &6알림 &f] 텔레포트 요청이 거절되었습니다." to {%player.tpa.player}
delete {%player%.tpa.location}
delete {%player%.tpa.player}
delete {%player%.tpa.accept}
출처- https://www.youtube.com/watch?v=CKdc-I39b_Q
유튜브보고 따라 해봤는데 채팅창에 뭔가 뜨긴뜨는데 정작 tp가 작동을 안하는데 왜 이럴까요...............
qsef1256
2022.09.27프로그래밍 질문을 할 때는 코드 전문과 오류 내용, 없으면 로그, 거기도 특별한 게 없으면 최소한 오류 추정 위치 등을 필수로 올려주셔야 합니다.
코드는 있는데 오류 내용이 없으면 답변자는 어디서 오류가 벌어졌는지를 찾기 위해 직접 그 소스를 돌려봐야 합니다. 하지만 답변자 분들은 그렇게 한가한 사람들이 아닙니다.
질문 수정해서 올려주세요.
코코냐
2022.09.27그냥 에센셜 씁시다..