taek1210
대표칭호 없음
taek1210 5f3f20eb652a499a855d945c6b3e6c3d
이해도 | 초보자(스크립트 구성요소나 기본문법은 알아요) |
---|---|
게임버전 (JE) | 1.16.5 |
게임버전 (BE) | 관련없음 |
스크립트 버전 | 2.6.0 |
스크립트로 겜모 치는게 귀찮아서 스크립트로 g 0 g 1 g 2 이런식으로 쓰면 겜모로 바꿀 수 있게 만들었는데 채팅 창에 이렇게 남는데 어떻게 지우죠? 구문은 이렇습니다
command /g [<string>]:
trigger:
if player is op:
if arg 1 is "1":
execute console command "/gamemode creative %player%"
if arg 1 is "0":
execute console command "/gamemode survival %player%"
if arg 1 is "2":
execute console command "/gamemode spectator %player%"
else:
message "&4당신은 이 명령어를 사용할 권한이 없습니다."
if arg 1 is not "0" or "1" or "2":
message "명령어 사용법 : /g 0 또는 1 또는 2"
message "0 : 서바이벌, 1 : 크리에이티브, 2 : 관전자"
거너아나
2022.01.28set player's gamemode to adventure
taek1210
2022.01.28오오 감사합니다~!