이해도 | 초보자(스크립트 구성요소나 기본문법은 알아요) |
---|---|
게임버전 (JE) | 1.18.1 |
게임버전 (BE) | 관련없음 |
스크립트 버전 | 2.6.1 |
command /코인 [<text>]:
trigger:
if arg-1 is not set:
message "&6/코인 <인출금액>"
else:
set {_금액} to arg-1 parsed as number
if {_금액} is not set:
message "&6/코인 <인출금액>"
else:
give 1 gold ingot named "&e&l[ &f&l코인 &e&l] &f: %{_금액}%" with lore " " and "&f우클릭시 %{_금액}%&f코인을 받습니다." to player
on rightclick:
if name of player's tool contains "코인":
set {_금액} to uncolored name of player's tool
replace all "[ 코인 ] : " with "" in {_금액}
set {_금액} to {_금액} parsed as integer
add {_금액} to {코인.%uuid of player%}
remove 1 gold ingot from player's tool
message "&a코인을 사용해 &e%{_금액}%&e코인을 지급받았습니다." to player
이렇게 했을때 코인을 우클릭하면 서버가 꺼지는데 원인과 해결법 아시는 분?
lanthanide
2022.03.10원인: 로그를 주셔야 분석하고 알 수 있습니다. 서버 실행 배치파일에 pause를 추가하면 아무 키나 누르기 전까진 콘솔 꺼지지 않으니 그거 복사해서 보내주세요.
해결법: 원인을 모르면 해결법도 모릅니다.