이해도 | 입문자(아무것도 몰라요) |
---|---|
게임버전 (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
유튜브에서 배운 tpa 스트립트인데 여기에 쿨타임을 추가 하고싶습니다.. 다른 영상들 참고해서 제 나름대로 해본다고 해봤는데 뭐가 문제인지도 모르겠고 너무 어려워서 이렇게 질문 남깁니다..
작은거인
2022.09.25무엇을 시도했는지 알려주세요
점오
2022.09.27유튜브에서 본대로 제 나름 섞어봤었는데 작동을 안해요,,,
qsef1256
2022.09.27유튜브로 공부한다고 하는 것들은 실제로는 배우는 게 아닙니다. 따라하는 겁니다
그래서 제대로 이해가 안되고 작동을 안 할 수밖에 없는겁니다.
qsef1256
2022.09.25https://skripthub.net/tutorials/10
Skript 에는 기본 제공되는 명령어 쿨타임 시스템이 있어요, 위 링크 참고해서 설정해보세요.
점오
2022.09.27감사합니다!